1. UI - 조이스틱 UIManager에 추가 및 Scene에서 호출 방식 변경 2. UI - 경험치 바 앞에 레벨 아이콘 추가 3. 몬스터 죽었을때 경험치로 변경 4. 경험치 바와 레벨 아이콘 연동 Todo 1. 투사체 공격 만들기 2. 몬스터가 플레이어 쫓아오게 만들기 3. 몬스터를 카메라 외각에서 다량으로 생성하는 기능 추가하기 4. 몬스터가 캐릭터 공격시 체력 닳게 하기 5. 메뉴 UI 만들기 6. 레벨업시 획득 스킬 UI 만들기 7. 체력바 UI 만들기 8. 공격시 데미지 띄우는 UI 만들기
30631 lines
1.7 MiB
30631 lines
1.7 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct VirtualFuncInvoker3
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct VirtualFuncInvoker4
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
|
|
struct Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514;
|
|
struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53;
|
|
struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6;
|
|
struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01;
|
|
struct Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5;
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3;
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88;
|
|
struct Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC;
|
|
struct Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189;
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
struct Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907;
|
|
struct Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_tBCCCFBCAC02A3C03E3C84D75696D4860D7444A35;
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00;
|
|
struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8;
|
|
struct EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9;
|
|
struct EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F;
|
|
struct EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07;
|
|
struct EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403;
|
|
struct EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA;
|
|
struct EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690;
|
|
struct EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E;
|
|
struct EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733;
|
|
struct EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C;
|
|
struct EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD;
|
|
struct EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013;
|
|
struct EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E;
|
|
struct EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117;
|
|
struct EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9;
|
|
struct EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916;
|
|
struct EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06;
|
|
struct EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8;
|
|
struct EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65;
|
|
struct EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA;
|
|
struct EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F;
|
|
struct EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678;
|
|
struct EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927;
|
|
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457;
|
|
struct Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768;
|
|
struct HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153;
|
|
struct HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885;
|
|
struct IComparer_1_t4029032A6ED22A873F128CBE44DE2F52D471C18F;
|
|
struct IEqualityComparer_1_t4262E3F8FF54BF3DD6D2CF05FD8F071473CB9F0C;
|
|
struct IEqualityComparer_1_tDBFC8496F14612776AF930DBF84AFE7D06D1F0E9;
|
|
struct IList_1_tA40FD5BA18CF72298BFDB4414A2F78F841DC2859;
|
|
struct KeyCollection_tFDBAB8F8F33ACFAA619508BB23BE82939B3B7673;
|
|
struct KeyCollection_t358D9D86EA73609D5A330DEAD2AFC492CC3882BA;
|
|
struct List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F;
|
|
struct List_1_t02E640552264E3DEAE676267B620815D33BCD0DF;
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3;
|
|
struct List_1_t592DF2E59D6E244DA0041698383484A07C7E0480;
|
|
struct List_1_t3517D52AE25CA3B19051E691E9C06ED03A3AB9B8;
|
|
struct List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3;
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B;
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA;
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_tD130F81C131F978A1BA5800264499CDDD4394830;
|
|
struct List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE;
|
|
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446;
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F;
|
|
struct List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D;
|
|
struct List_1_t74EC90C5F42E1A99F29BC6A7FF27FD27FCF98344;
|
|
struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A;
|
|
struct List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B;
|
|
struct List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317;
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95;
|
|
struct List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6;
|
|
struct List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440;
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66;
|
|
struct List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3;
|
|
struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9;
|
|
struct ObjectPool_1_t2BAC247346D1A30E6F98C5C633CA4A8A94FC170A;
|
|
struct ObjectPool_1_t10DF1D7B915FABBA839F55B1C8F8A53EF636E395;
|
|
struct ObjectPool_1_t37080504ECCFF986BCF1E7D4C1D26BB929DEC7E9;
|
|
struct ObjectPool_1_t1E06F490DDD84FA5A692D737BD9F030BF209D3E2;
|
|
struct ObjectPool_1_t4CCB307C788F662AC27F4884CC938F63B3E4836C;
|
|
struct ObjectPool_1_t197544EA692A3B4CA53A6C415A61333162073672;
|
|
struct ObjectPool_1_t2E11CDAC72859A812629F64CB88669487FD5F0B5;
|
|
struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6;
|
|
struct ObjectPool_1_tDF51BF8B537DAD012AFE10CFC541363835B64992;
|
|
struct ObjectPool_1_tD9D36AAF97C27AAA8F8C10396B70EE8016C3DB39;
|
|
struct ObjectPool_1_t8AFFCB7DAAEE40E4043E3A85360B759A778B3F5B;
|
|
struct ObjectPool_1_tEA9E5136DCE87BF5FDC7E117132869969F52A700;
|
|
struct ObjectPool_1_t625CC081156CCA83AF28F9AC872DA35BC4C19D8B;
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F;
|
|
struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7;
|
|
struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9;
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496;
|
|
struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68;
|
|
struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44;
|
|
struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1;
|
|
struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD;
|
|
struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D;
|
|
struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9;
|
|
struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A;
|
|
struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C;
|
|
struct TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4;
|
|
struct UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F;
|
|
struct UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90;
|
|
struct UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7;
|
|
struct UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9;
|
|
struct UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205;
|
|
struct UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4;
|
|
struct UnityEvent_1_t8ABE5544759145B8D7A09F1C54FFCB6907EDD56E;
|
|
struct ValueCollection_tBC8522E6D831C62FCFF0FFE135DE7049147C3F01;
|
|
struct ValueCollection_t65BBB6F728D41FD4760F6D6C59CC030CF237785F;
|
|
struct ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41;
|
|
struct EntryU5BU5D_tD3ED16BE90ACB00382A0B434F16048B54CA75D95;
|
|
struct EntryU5BU5D_t9F389575B9AE1F230AC15DBCA6E6007A112E6440;
|
|
struct SlotU5BU5D_tE3EF03DF60EEEAE9563D08E2CEDF101702B5EE5E;
|
|
struct BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074;
|
|
struct BaseInputModuleU5BU5D_t13666B4E8696F293BE82C23D29B7FAE0C4D1FE90;
|
|
struct BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799;
|
|
struct BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F;
|
|
struct EventSystemU5BU5D_tC56681ED65D83E744C4504A1D94048F29AFA499B;
|
|
struct GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF;
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PointerEventDataU5BU5D_t1348B5A6E4F92DEF683F2061EA0A52D2B218D8C7;
|
|
struct PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB;
|
|
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8;
|
|
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7;
|
|
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TransformU5BU5D_tBB9C5F5686CAE82E3D97D43DF0F3D68ABF75EC24;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct EntryU5BU5D_t7F80FE101EBB042094267D264CEABEFCFE6AA556;
|
|
struct ButtonStateU5BU5D_t9D11140D1CF07380D16777C9FA1870ABD5AC17F9;
|
|
struct AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC;
|
|
struct AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938;
|
|
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F;
|
|
struct BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622;
|
|
struct BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1;
|
|
struct BaseMeshEffect_t87C453D6DAE52C072B2E613F65A5FE45C9B3990D;
|
|
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832;
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4;
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303;
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302;
|
|
struct BoxCollider_tFA5D239388334D6DE0B8FFDAD6825C5B03786E23;
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4;
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26;
|
|
struct CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860;
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31;
|
|
struct Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76;
|
|
struct Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52;
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
struct DataBindingManager_tE7B33E64EBBDCAB0A89B6A8421529F9BA0D066E1;
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
struct DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1;
|
|
struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904;
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB;
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C;
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85;
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398;
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707;
|
|
struct EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B;
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF;
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A;
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F;
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638;
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931;
|
|
struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB;
|
|
struct ICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244;
|
|
struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B;
|
|
struct IDebugPanelChangeReceiver_t8300985E86E68D6E973C22F5CF9104AA45C9E3F2;
|
|
struct IDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661;
|
|
struct IDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D;
|
|
struct IDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35;
|
|
struct IEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9;
|
|
struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3;
|
|
struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78;
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
struct IInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E;
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26;
|
|
struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E;
|
|
struct IMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB;
|
|
struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5;
|
|
struct IPanelRenderer_tEB4A39BEC71B3B49302393D8DAFF7599E7F9ED9E;
|
|
struct IPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8;
|
|
struct IPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573;
|
|
struct IPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F;
|
|
struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7;
|
|
struct IPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE;
|
|
struct IPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85;
|
|
struct IPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210;
|
|
struct IScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F;
|
|
struct ISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D;
|
|
struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2;
|
|
struct ISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75;
|
|
struct IUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC;
|
|
struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165;
|
|
struct InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382;
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C;
|
|
struct KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394;
|
|
struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850;
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4;
|
|
struct MethodInfo_t;
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
|
|
struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E;
|
|
struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF;
|
|
struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1;
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9;
|
|
struct PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09;
|
|
struct PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B;
|
|
struct PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D;
|
|
struct PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC;
|
|
struct PathRef_t76F7677792A14AF9D6A6EAB7F08C1A3DC2B27A55;
|
|
struct PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25;
|
|
struct Physics2DRaycaster_t8E0FE5BD8DC96C60EE4BA334B0607B63A69761A7;
|
|
struct PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D;
|
|
struct PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD;
|
|
struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51;
|
|
struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A;
|
|
struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51;
|
|
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB;
|
|
struct PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556;
|
|
struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3;
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9;
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5;
|
|
struct ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5;
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
|
|
struct RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2;
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
|
|
struct Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF;
|
|
struct RepaintData_t90534752135661579EC254884F550545D001B5EA;
|
|
struct ResolvedStyleAccess_t226CC840EBACEE31CE1139ED5F717532AFFAEB45;
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346;
|
|
struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716;
|
|
struct ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223;
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
struct Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95;
|
|
struct SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759;
|
|
struct StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530;
|
|
struct String_t;
|
|
struct StringBuilder_t;
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527;
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0;
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B;
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862;
|
|
struct TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C;
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
|
|
struct Type_t;
|
|
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D;
|
|
struct UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77;
|
|
struct UIDocumentList_tA2A8305DE916298E4C586EC8235085560914E7C3;
|
|
struct UIDocumentRootElement_t4BF84EDFF075AB09BDCCE2D6E401D2EF1B4AB328;
|
|
struct UIElementsBridge_tC28FCEDF493CD746D1973AB27BA2CBA393EB4BA8;
|
|
struct UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD;
|
|
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
|
|
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE;
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115;
|
|
struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3;
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB;
|
|
struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E;
|
|
struct WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4;
|
|
struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
|
|
struct ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E;
|
|
struct DisplaysUpdatedDelegate_t1BAACED9BE72131FD59213A3186F5D7AB9E1FD68;
|
|
struct Entry_t9B34433095405244EBB2447BBED208AF12286913;
|
|
struct TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C;
|
|
struct FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC;
|
|
struct Data_t43E3238277579E631EA4E8016E61966D79F5B62E;
|
|
struct PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB;
|
|
struct RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1;
|
|
struct ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503;
|
|
struct MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154;
|
|
struct MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09;
|
|
struct GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C;
|
|
struct GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980;
|
|
struct GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC;
|
|
struct Raycast2DCallback_tC7E4C51859884370CFA01C0DD124F214F46E08E0;
|
|
struct Raycast3DCallback_t6D90FA1FB092312B3B52812191581F209A9C2B4A;
|
|
struct RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A;
|
|
struct U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0;
|
|
struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1;
|
|
struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CollectionPool_2_t2F20718512775923B19818C2622FA4F11715D698_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tE791D3D97E67566E2D6F93E0626CB84C78DB7E9E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t02E640552264E3DEAE676267B620815D33BCD0DF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t8292C421BBB00D7661DC07462822936152BAB446_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SpriteRenderer_t1DD7FE258F072E1FA87D6577BA27225892B8047B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SpriteShapeRenderer_tE998BB73CF661079736CCC23617E597AB230A4AC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TilemapRenderer_t1A45FD335E86172CFBB77D657E1D6705A477A6CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral06A17D93E6D67BEA37EBBF3A9D7FC06B40689CD1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0F310FF3EBC19D65A536D81F5D8C7093E972DCA0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral12BA26D2F44E032136B3146CB230F4F45C5D45DE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1EC5A90CC65C8BDA58643C956BA4E6F8E4436A5A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2409165FB90CD4A8B916FCA75790766B82C91748;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral267CC871678BDBD934CBEA872CCB8F0C72D94E44;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2A98949D28301C3B04EAD557512780C8D89A9607;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B2D9FCF87BC5B281C797365D6EE6332266A0B63;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E8BE7BC315CC297C7A3C2864B3A2ED1BD553384;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral30A589687C1FFF9D1706D115A0C664F2A49D9CEF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral32CD35E27C7A609DEDFC112CE9A03B4A284C7CAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3F3FD3EFA55E39E450A9A4CE66CD7B259403D44E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3FDE48D43FDFF79D70DE4C76757AC588B51AF1F2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral495D4C60218BAD5538C974C04D9CD4FB8B7EC251;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4B1F6E5C644F13999A134C243088737884A6B5D2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral55489C2AE4CD8276F5514C1F5C0FC0E6C828316F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral62105F6FE34556E3D1EE1FB639ABDA34F249420F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6EA31552D906EA35DDC05080B9B364EBBCF14261;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral709C1BE385364BF7215290F6C80B9E13ED6C07AB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral70F1769C72FCAF144F53009F7DA60ED467C29635;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral75B536F4B16F980DC1BE8BFB67378A32681C6F79;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral83952F2F926B6CE09028A693CFFB24D4EAD71048;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D6BCFE5E06B641A8978CC87B7FDAA9629C09C19;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D7966737D63EC88E3F1482299F5E3DA9C325467;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral94A94F7BD0F52C17BB06F5A6BB4E316DC4B69DF8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9778C320E07EB86C3995D33DDB63310A2DC91762;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9C5CA5F3D440697E7CE47F45B0AE3B6DB74C2054;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9D2B27E9061DE91A9190184698F3F04E23827CA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAAD329BEE4AA4299DC498EF86EE4D802F5F77951;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB0737AF70A35D88FED509B12B8D70C6A63CC1764;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB16AA06B63763841322A0E82B3DFC991782A196D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB4610CC39459DAF86ACCA195657A89E174A44377;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB4705CCB6B015DADE9B7063D15E59D6BAE057C37;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB481E1177ABCEDA2138821AE6FDCB1DE23CE4F7A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBBA0B8A8F3B59A3EF510E986771C90FB46273A00;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBC250738CF6553169DE970EACBEDFB060B58A41B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC10E23F5AEEE6BB98CA98C5F6720ED7A4B1DE089;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB944CF13C6D7A748C94693FCC0D72CC49F506A6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD0109970118495EB328C4BDC2E4B01CAF6261504;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDB1334B07CE2A0153E77054CF8FA3829A2097735;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDBD8760F0E4E49A1C274D51CE66C3AF4D4F6DD1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE06F03979CE317849E31F0F481193E60F4E121C8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE719647F3D6AE731B77236BB9CEAE35C140505FD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralED54BEFF73D847631728E4B5FD6F62359E25783C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralED650AB7FFD78DC7116CF9662F8B7B237319848D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralED69593F1852661D74AD04003C30B937EE7310BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralED729CE3E8E8DA20DAF15510CF4F4A1A17CA6379;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF21660E57007B57EE52B4DC95B3B2B0C99E3E153;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_m3D1FF7EACB159A3EE4AB8B938F542823AC3F1566_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_mB6BEC6CAB9FBEE05C80B283B9DBFE6F6FFE8A8DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_mB949A7FBA4C69BB93448ACDCD45AC8C1DBC3A8F0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_m9E81BF1DC2166F05AECC012446B1446B37A88422_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionPool_2_Get_mF172EABFC8C0790442FC9E97247EDE52148F13EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionPool_2_Release_m8EFACCF3EB10B4D6ED9988CB24999AFFF8FE3553_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisEventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_mC0057F51AC54461AE48825268F70602D751EC73E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentsInParent_TisBaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832_mA869CA05E07609C8F435F1D779B138F3F2425F8C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponents_TisBaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1_m861F588C20A9C5F4587028C0423B36D39726E4C5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponents_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m848C2D9953D650A43288700EC75E98A9D9ACDC64_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m305891EF95C72E701559AF35E8FEC63AB6F60FE3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mBB95A511CAA4D6BCF1D6EC54722BCA4DA4B37CF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m0F563590CD7E2B91C7AC405B31C0C514C03EFB27_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m63D3F42B71E15B4CF2B108D3B3A8B462F62595BD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mCB659CC4F3197065FE376188D414B1985C1F02EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m1D9661C57D08A16BB4A93388888AA1FFAB621320_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6AB6D558AE10F5CF8EF8F00E6CC412419B46CE48_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m3B581D1E2D9D47BCC3513DC77CC6C6F8718F13DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mBEC1B7D2BFC2805707A8FB6E9373333E6BFAF344_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m3643ACA7C03387304EFABDD34699EA2D44722C71_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m9FC32AA198E53E701EEAF271527A221A8F363A86_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB6E33132F5D0676786F67B988DB108FF7F1B222D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA040B5E48F4FE0BFCE09DAED1C1FC3A7107607D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA415C7B94AC3728AFA7791318E9210FC5EEFAB58_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA6180D596DC7A7426F498A740F22BFA2EBF98E03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m171CEB2C6F8B5AAD9B25CC5768D090A42ED70A0C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m8515E9D5662F47A89C296550439BBD4DA548AE6A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9B2A28B6083DEBB62BF0A0D90CF32F5D985E1234_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventSystem_RaycastComparer_mBF2582FBEDA9A1B604EE4281C61CB5E3DF676795_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m764A9EE16005FFF9BB7A28EF762E6EB9CFDDA7B9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m1543843C77436B385445DCDE0E472112C8E40F87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m6BCE3E1FAE7620DC9F22722FA5CCE5AB35BAA5B0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_mF5887E085CDF21C7E46BCDEDDFAE8DAB8D6B2308_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_mAE71323F63A667FE0A4F8B9B0E27C6012B28FFE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m77205DFCC4110B95CC241F556BE89F612EFFD2CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m5FD94CEC31E280672B5C9C6095BD3B6235B9C70D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m3F0363F6627EF6ECECB5439840122565E3A3086B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_mA153EBDD6059AC5FF4C3ADD0A0628D816CD112CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m8AFB13536731ABE80F6AE964DA907EE6B27F055E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m070554B8CD391A49E8A51A4FC10C8CB8827E5627_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m08AB6D464ED66E7D539C957D84076F79D8ED5563_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m1A35D0185316601E2CE063420F4953C8D3D62D3A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m30F76D861B01F5DE4671B93C23B57989889EC8AC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m316D0EE5A1936BFFD9999F4C145722DC6C121FF7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m36FF8B992CDB75A825077B7A52AA7BE72318B37F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m3DD6C7687A440E55EEF8B7D115DEF950728295B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m3F3FEE80AD62CF4207EDA55D6998B98DFF8FFB64_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m512ACDD06180A73819570FED3C2BEE0F0E2DA3F2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m554281680E2DBC534055073ECCE46230E488A3E6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m6CE7DBF76F4858C3014295BB2EBBAD768EF5992E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_m6DD01624C34CF22057ECF1B0C7E561006DA6D2F3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mBC94A654B65C6B14834E3CD0FF0472DB5445E2F2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mBDDBAF4DEB956C013CD19E514088B6AC086783B2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mBEB42D218E11F4B9834CAC70894631C305E6AF18_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mCD88FE48772FC6DA5E9FE9CAF910402F63090C35_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mD0811E5B0A4F7D5A88E7ACF0A845CA107485F579_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_Execute_mF1F3202132B706B56AE43B19577758BCA4EAEB88_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m3BFE4214B6075DAE2F291E508DC912DC72262D2E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m52B7AEEF7C492E4D682E977FFEC06325F230EE50_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisAxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_m80BB1F8ADE71FB047EC89D250431CE4090A8C37B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m806BCC6ECD5CDF3BFD70F97C11B2B60215D82C2F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponentInParent_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m33A2601C5D3E027755778845E48FC5851FF1AEF8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m96F8E3A7752C3E8D7D05BB9998F71D144A39E60C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisRenderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF_m026EB44DB6238F13E2AFBECF1FBBE924CB1B040A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_mE9606F47EA36C4BB72F4446C792859EE96D2CA30_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_mE24BB1D4CFC489B6826BCE96C254947995223650_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m7AE9EF5905778DA5ADE989958F9B0BB519E0D15D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_ToString_m5F8161F26E20B830F794E3C0B87C0570D011D4AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mB0B90B98092517427782C4EE347F7B8C1D24D0D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0BDDD3FAAF7827914A1A2A6A7D24CFA755C8E1E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0F2953840C66949A6A45D89F9F41A47E323D4234_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m82AF5EAB1EA13F21CE5250B008E4EBCFEDAB6D53_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEE8E752136ACB05A54F2783E0FC3BA219B3D3537_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m58CFABB5C7A40BB3B14B3B347F6FB292CB937953_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mAD32901DADB25DE2B9BD8BA69DBC5CD2BF396465_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_mD395CBA5E8CAB522E8F3E3061877AAE555E0A21F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m959EF5351B9F819545562751FCC8227B11E22AD8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m23DAE9F6384DC4628548353457630B4F80EDDE55_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mEA22AF56005A449E102C00710F3307753D35D1F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m4097EB41B6DA7B55D588365541B34406A0C1A7B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m585A9E471D1C60EE46BA224A58947647F1E2B83B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m91D8F452D34DDF91A3A4DD18784AD6E48934F2AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4E26266DF028F44B765A8CB0C5DA32AA2C04B209_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m53B48CB7A08406A33847E0C3D9D7511DE8FB0D41_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5B55006732F050E7E309F89B7D8CF4420DBD61D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5D05D99F085C71FEEE22BD4A1C168E4EBE86ECE3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6A7DBF9210C6D1591760F3FD77E2B765747817B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7A9119D875AEFEC730410862ACAA4BA3A6EEC5FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAB2DFCA15E16B709BBB33F98CB44C37E6E880973_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4A71C17E55302D2FAE1A3E68F9B2131829FA80DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mBD9E514AE38BF6A31BE2054355A0ACC6003F6FFE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF7BDF732F24313E73AD5BD2E4A32C7ECD657F7E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m709A412335F9ACB6D852EE8D7B26AFE787895DCB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m73B6BE2E5D532A5B54C1CFD22C6ED462A13C9DBA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mC6D8545B680879430E005FFA6A71DCAD4902E1C1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1_GetPooled_m1AA5FA03C126B545E68FBCD06A0FF14DA35B4DFD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1_GetPooled_mB1CE016F257FE0B9381D2C85C9DE76026038E061_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_UpdatePointerEventTarget_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4F89A7634336F44ACF0EAB83D5A37E54243702D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_UpdatePointerEventTarget_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mCAFF63BFF505A4C37A141B756EB051616AD7C95A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_UpdatePointerEventTarget_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m01B9C5332EAD486A6293066474A554A18B70EE77_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelEventHandler_UpdatePointerEventTarget_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m199E8DC26E1B4E2C9D0F4FF3F56931E335AFDA65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m1273AE51A40AC6C68E59D3D2AA5BF1E057A0AD1D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m505D01FFFB287E4FA5650DEDE746B6DAC77194E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m9B995C8015B9E44E3A91A42953EF592D22E329DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mFCA2D5D977296034C8EE0A2E61CBA38250C3D928_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pressedButtons_mBC45047294FB78F490183380DD544683C6CB5A2E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass37_0_U3CCreatePanelGameObjectU3Eb__0_m98882BD2DDDDAC603522A0C4CAF9BC912C57AE69_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_m2F130A58B680EA53FDE956184090404B10BF647C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mB475FD6BA1C41D56BD02E661756F1A8FBC703BA7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m0124B7611A2B03F480EB52872F7A1B24F0CA6EDC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com;
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke;
|
|
|
|
struct BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074;
|
|
struct BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799;
|
|
struct CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B;
|
|
struct DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8;
|
|
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7;
|
|
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tD3ED16BE90ACB00382A0B434F16048B54CA75D95* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tFDBAB8F8F33ACFAA619508BB23BE82939B3B7673* ____keys;
|
|
ValueCollection_tBC8522E6D831C62FCFF0FFE135DE7049147C3F01* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t9F389575B9AE1F230AC15DBCA6E6007A112E6440* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t358D9D86EA73609D5A330DEAD2AFC492CC3882BA* ____keys;
|
|
ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
SlotU5BU5D_tE3EF03DF60EEEAE9563D08E2CEDF101702B5EE5E* ____slots;
|
|
int32_t ____count;
|
|
int32_t ____lastIndex;
|
|
int32_t ____freeList;
|
|
RuntimeObject* ____comparer;
|
|
int32_t ____version;
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo;
|
|
};
|
|
struct List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F : public RuntimeObject
|
|
{
|
|
BaseInputModuleU5BU5D_t13666B4E8696F293BE82C23D29B7FAE0C4D1FE90* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t02E640552264E3DEAE676267B620815D33BCD0DF : public RuntimeObject
|
|
{
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3 : public RuntimeObject
|
|
{
|
|
BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3 : public RuntimeObject
|
|
{
|
|
EventSystemU5BU5D_tC56681ED65D83E744C4504A1D94048F29AFA499B* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B : public RuntimeObject
|
|
{
|
|
GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE : public RuntimeObject
|
|
{
|
|
PointerEventDataU5BU5D_t1348B5A6E4F92DEF683F2061EA0A52D2B218D8C7* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446 : public RuntimeObject
|
|
{
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D : public RuntimeObject
|
|
{
|
|
TransformU5BU5D_tBB9C5F5686CAE82E3D97D43DF0F3D68ABF75EC24* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A : public RuntimeObject
|
|
{
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440 : public RuntimeObject
|
|
{
|
|
EntryU5BU5D_t7F80FE101EBB042094267D264CEABEFCFE6AA556* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3 : public RuntimeObject
|
|
{
|
|
ButtonStateU5BU5D_t9D11140D1CF07380D16777C9FA1870ABD5AC17F9* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* ____dictionary;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t3A51899FBAA581553000230A6A0F92898553245F : public RuntimeObject
|
|
{
|
|
};
|
|
struct AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7 : public RuntimeObject
|
|
{
|
|
bool ___m_Used;
|
|
};
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject
|
|
{
|
|
bool ___isIMGUIContainer;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry;
|
|
};
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31 : public RuntimeObject
|
|
{
|
|
List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6* ___m_ClickStatus;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
bool ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
bool ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
String_t* ___m_name;
|
|
String_t* ___englishname;
|
|
String_t* ___nativename;
|
|
String_t* ___iso3lang;
|
|
String_t* ___iso2lang;
|
|
String_t* ___win3lang;
|
|
String_t* ___territory;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture;
|
|
bool ___constructed;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData;
|
|
bool ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
char* ___m_name;
|
|
char* ___englishname;
|
|
char* ___nativename;
|
|
char* ___iso3lang;
|
|
char* ___iso2lang;
|
|
char* ___win3lang;
|
|
char* ___territory;
|
|
char** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly;
|
|
int32_t ___cultureID;
|
|
int32_t ___parent_lcid;
|
|
int32_t ___datetime_index;
|
|
int32_t ___number_index;
|
|
int32_t ___default_calendar_type;
|
|
int32_t ___m_useUserOverride;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo;
|
|
Il2CppChar* ___m_name;
|
|
Il2CppChar* ___englishname;
|
|
Il2CppChar* ___nativename;
|
|
Il2CppChar* ___iso3lang;
|
|
Il2CppChar* ___iso2lang;
|
|
Il2CppChar* ___win3lang;
|
|
Il2CppChar* ___territory;
|
|
Il2CppChar** ___native_calendar_names;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo;
|
|
void* ___textinfo_data;
|
|
int32_t ___m_dataItem;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture;
|
|
int32_t ___constructed;
|
|
Il2CppSafeArray* ___cached_serialized_form;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData;
|
|
int32_t ___m_isInherited;
|
|
};
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398 : public RuntimeObject
|
|
{
|
|
ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* ___m_ClickDetector;
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* ___U3CpointerStateU3Ek__BackingField;
|
|
uint32_t ___m_GateCount;
|
|
uint32_t ___m_GateDepth;
|
|
int32_t ___m_DispatchStackFrame;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_CurrentEvent;
|
|
Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* ___m_DispatchContexts;
|
|
bool ___m_Immediate;
|
|
bool ___U3CprocessingEventsU3Ek__BackingField;
|
|
};
|
|
struct ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59 : public RuntimeObject
|
|
{
|
|
};
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___U3CfocusRingU3Ek__BackingField;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* ___m_SelectedTextElement;
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement;
|
|
int32_t ___m_PendingFocusCount;
|
|
int32_t ___U3CimguiKeyboardControlU3Ek__BackingField;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes;
|
|
String_t* ___positiveSign;
|
|
String_t* ___negativeSign;
|
|
String_t* ___numberDecimalSeparator;
|
|
String_t* ___numberGroupSeparator;
|
|
String_t* ___currencyGroupSeparator;
|
|
String_t* ___currencyDecimalSeparator;
|
|
String_t* ___currencySymbol;
|
|
String_t* ___ansiCurrencySymbol;
|
|
String_t* ___nanSymbol;
|
|
String_t* ___positiveInfinitySymbol;
|
|
String_t* ___negativeInfinitySymbol;
|
|
String_t* ___percentDecimalSeparator;
|
|
String_t* ___percentGroupSeparator;
|
|
String_t* ___percentSymbol;
|
|
String_t* ___perMilleSymbol;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits;
|
|
int32_t ___m_dataItem;
|
|
int32_t ___numberDecimalDigits;
|
|
int32_t ___currencyDecimalDigits;
|
|
int32_t ___currencyPositivePattern;
|
|
int32_t ___currencyNegativePattern;
|
|
int32_t ___numberNegativePattern;
|
|
int32_t ___percentPositivePattern;
|
|
int32_t ___percentNegativePattern;
|
|
int32_t ___percentDecimalDigits;
|
|
int32_t ___digitSubstitution;
|
|
bool ___isReadOnly;
|
|
bool ___m_useUserOverride;
|
|
bool ___m_isInvariant;
|
|
bool ___validForParseAsNumber;
|
|
bool ___validForParseAsCurrency;
|
|
};
|
|
struct PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D : public RuntimeObject
|
|
{
|
|
};
|
|
struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A : public RuntimeObject
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PendingPointerCapture;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PointerCapture;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_ShouldSendCompatibilityMouseEvents;
|
|
};
|
|
struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C : public RuntimeObject
|
|
{
|
|
};
|
|
struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4 : public RuntimeObject
|
|
{
|
|
};
|
|
struct RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5 : public RuntimeObject
|
|
{
|
|
Raycast3DCallback_t6D90FA1FB092312B3B52812191581F209A9C2B4A* ___raycast3D;
|
|
RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A* ___raycast3DAll;
|
|
GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC* ___getRaycastNonAlloc;
|
|
Raycast2DCallback_tC7E4C51859884370CFA01C0DD124F214F46E08E0* ___raycast2D;
|
|
GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C* ___getRayIntersectionAll;
|
|
GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980* ___getRayIntersectionAllNonAlloc;
|
|
};
|
|
struct ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223 : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
|
|
StringBuilder_t* ___m_ChunkPrevious;
|
|
int32_t ___m_ChunkLength;
|
|
int32_t ___m_ChunkOffset;
|
|
int32_t ___m_MaxCapacity;
|
|
};
|
|
struct UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F : public RuntimeObject
|
|
{
|
|
};
|
|
struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8 : public RuntimeObject
|
|
{
|
|
InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382* ___m_Calls;
|
|
PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25* ___m_PersistentCalls;
|
|
bool ___m_CallsDirty;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE : public RuntimeObject
|
|
{
|
|
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___m_Positions;
|
|
List_1_t3517D52AE25CA3B19051E691E9C06ED03A3AB9B8* ___m_Colors;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_Uv0S;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_Uv1S;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_Uv2S;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_Uv3S;
|
|
List_1_t77B94703E05C519A9010DD0614F757F974E1CD8B* ___m_Normals;
|
|
List_1_tF42FEB6C3B18B7E7C8F2DE1FEBA00D2491736317* ___m_Tangents;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_Indices;
|
|
bool ___m_ListsInitalized;
|
|
};
|
|
struct RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09 : public RuntimeObject
|
|
{
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* ___m_TrackedButtons;
|
|
};
|
|
struct U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0 : public RuntimeObject
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___go;
|
|
};
|
|
struct Enumerator_t0AC7335576037404D05612342AE775F7212209AE
|
|
{
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* ____set;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ____current;
|
|
};
|
|
struct Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092
|
|
{
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ____current;
|
|
};
|
|
struct Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8
|
|
{
|
|
HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* ____set;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
struct Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5
|
|
{
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ____current;
|
|
};
|
|
struct Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D
|
|
{
|
|
Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* ____dictionary;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____currentValue;
|
|
};
|
|
struct Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294
|
|
{
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* ____dictionary;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ____currentValue;
|
|
};
|
|
struct KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3
|
|
{
|
|
int32_t ___key;
|
|
RuntimeObject* ___value;
|
|
};
|
|
struct KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296
|
|
{
|
|
int32_t ___key;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___value;
|
|
};
|
|
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
|
|
{
|
|
bool ___hasValue;
|
|
bool ___value;
|
|
};
|
|
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
struct StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA
|
|
{
|
|
RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4
|
|
{
|
|
RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3
|
|
{
|
|
RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3
|
|
{
|
|
RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E
|
|
{
|
|
RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9* ___m_Ref;
|
|
};
|
|
struct StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC
|
|
{
|
|
RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A* ___m_Ref;
|
|
};
|
|
struct UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray;
|
|
};
|
|
struct UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray;
|
|
};
|
|
struct UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray;
|
|
};
|
|
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F : public AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___rgba;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___rgba_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint8_t ___r;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___r_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding[1];
|
|
uint8_t ___g;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___g_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding[2];
|
|
uint8_t ___b;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___b_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding[3];
|
|
uint8_t ___a;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___a_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8
|
|
{
|
|
bool ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
bool ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField;
|
|
};
|
|
struct FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A
|
|
{
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* ___m_Target;
|
|
float ___m_StartValue;
|
|
float ___m_TargetValue;
|
|
float ___m_Duration;
|
|
bool ___m_IgnoreTimeScale;
|
|
};
|
|
struct FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_pinvoke
|
|
{
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* ___m_Target;
|
|
float ___m_StartValue;
|
|
float ___m_TargetValue;
|
|
float ___m_Duration;
|
|
int32_t ___m_IgnoreTimeScale;
|
|
};
|
|
struct FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_com
|
|
{
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* ___m_Target;
|
|
float ___m_StartValue;
|
|
float ___m_TargetValue;
|
|
float ___m_Duration;
|
|
int32_t ___m_IgnoreTimeScale;
|
|
};
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0 : public CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4
|
|
{
|
|
bool ___m_Focusable;
|
|
int32_t ___m_TabIndex;
|
|
bool ___m_DelegatesFocus;
|
|
bool ___m_ExcludeFromFocusRing;
|
|
bool ___U3CisEligibleToReceiveFocusFromDisabledChildU3Ek__BackingField;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB
|
|
{
|
|
int32_t ___m_Mask;
|
|
};
|
|
struct LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6
|
|
{
|
|
int32_t ___Index;
|
|
int32_t ___Version;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
|
|
{
|
|
float ___m00;
|
|
float ___m10;
|
|
float ___m20;
|
|
float ___m30;
|
|
float ___m01;
|
|
float ___m11;
|
|
float ___m21;
|
|
float ___m31;
|
|
float ___m02;
|
|
float ___m12;
|
|
float ___m22;
|
|
float ___m32;
|
|
float ___m03;
|
|
float ___m13;
|
|
float ___m23;
|
|
float ___m33;
|
|
};
|
|
struct PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2
|
|
{
|
|
int32_t ___id;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D12_tE6E9A5118C80D71EA1E9325D404FAB06593F00C3
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D12_tE6E9A5118C80D71EA1E9325D404FAB06593F00C3__padding[12];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D5639_tE606AD466DEF7A7C4093744AC1D6AD7666027CE0
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D5639_tE606AD466DEF7A7C4093744AC1D6AD7666027CE0__padding[5639];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D8348_t46198045B697732313A28585B397764D6FB136D1
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D8348_t46198045B697732313A28585B397764D6FB136D1__padding[8348];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem;
|
|
bool ___sendEvents;
|
|
bool ___createPanelGameObjectsOnStart;
|
|
};
|
|
struct UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_pinvoke
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem;
|
|
int32_t ___sendEvents;
|
|
int32_t ___createPanelGameObjectsOnStart;
|
|
};
|
|
struct UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_com
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem;
|
|
int32_t ___sendEvents;
|
|
int32_t ___createPanelGameObjectsOnStart;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner;
|
|
};
|
|
struct Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3
|
|
{
|
|
Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* ____dictionary;
|
|
int32_t ____version;
|
|
int32_t ____index;
|
|
KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3 ____current;
|
|
int32_t ____getEnumeratorRetType;
|
|
};
|
|
struct Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E
|
|
{
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* ____dictionary;
|
|
int32_t ____version;
|
|
int32_t ____index;
|
|
KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 ____current;
|
|
int32_t ____getEnumeratorRetType;
|
|
};
|
|
struct Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4
|
|
{
|
|
bool ___hasValue;
|
|
UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 ___value;
|
|
};
|
|
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82* ___computedTransitions;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_pinvoke
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke* ___computedTransitions;
|
|
};
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_com
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties;
|
|
int64_t ___matchingRulesHash;
|
|
float ___dpiScaling;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com* ___computedTransitions;
|
|
};
|
|
struct ContextType_t50FAC10DB1D4E29B37E532DED9CAA804FC4E59A0
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CursorLockMode_tB70C7D1B9208B821C1C8A614BE904500B92C47D2
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct DispatchMode_t19462FC6D47F5BF63B55FBDEB5C7D498D50DB3DC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1 : public RuntimeObject
|
|
{
|
|
intptr_t ___nativeDisplay;
|
|
};
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB : public RuntimeObject
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct EventHandle_t9C4AEF917738D8067DBF62365062124D1481C46C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventModifiers_t48244B043FBB42CDD555C6AC43279EC7158777AC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventTriggerType_t2AE8CECAD1ABCAD206C826163940BE16C6EAABBA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventType_tC62F0D77DB08D7326B58B2D8CF43BD45CFD3203E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct IMECompositionMode_t91425E64935387F2A2686BDE3FA67E047794FCD0
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct KeyCode_t75B9ECCC26D858F55040DDFF9523681E996D17E9
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LanguageDirection_t30A3B6BBCEE6A6F57641E4E008E0DCC40603558C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MoveDirection_t0981B415CB2BEB70F14E647EDE5DE29F52DEC5E6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NavigationDeviceType_t17680F61311430F13D3294F9B3688E31413D4758
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NavigationDeviceType_t848E9C4AEC98044C60FBD9CCF9A460289562D90C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7
|
|
{
|
|
bool ___clearDepthStencil;
|
|
bool ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_pinvoke
|
|
{
|
|
int32_t ___clearDepthStencil;
|
|
int32_t ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_com
|
|
{
|
|
int32_t ___clearDepthStencil;
|
|
int32_t ___clearColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
};
|
|
struct PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PickingMode_t5699BF9E5F2587E0D297984D5BF5B63B768E66AC
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Pivot_tF14573E766DEDB25EF6CC6B166FF7C4E740FBB03
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PivotReferenceSize_t5EE12AEFE62358CF28649383651D9D4C9A205183
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Position_t066B59B8657DAFCFBEDDAE8CBCE96E88796E1319
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct PropagationPhase_tF3BE8BF5ED45FC52A828B7B6F078B64F01FAE6D6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PropertyPathPartKind_t82152825D88A0E450DDCE8503272A10595047F87
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PseudoStates_tF4AB056E8743741BCE464A0983A060A53AAB7E4D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Origin;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Direction;
|
|
};
|
|
struct RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Point;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Normal;
|
|
uint32_t ___m_FaceID;
|
|
float ___m_Distance;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_UV;
|
|
int32_t ___m_Collider;
|
|
};
|
|
struct RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Centroid;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Point;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Normal;
|
|
float ___m_Distance;
|
|
float ___m_Fraction;
|
|
int32_t ___m_Collider;
|
|
};
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module;
|
|
float ___distance;
|
|
float ___index;
|
|
int32_t ___depth;
|
|
int32_t ___sortingGroupID;
|
|
int32_t ___sortingGroupOrder;
|
|
int32_t ___sortingLayer;
|
|
int32_t ___sortingOrder;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___origin;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___document;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element;
|
|
};
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module;
|
|
float ___distance;
|
|
float ___index;
|
|
int32_t ___depth;
|
|
int32_t ___sortingGroupID;
|
|
int32_t ___sortingGroupOrder;
|
|
int32_t ___sortingLayer;
|
|
int32_t ___sortingOrder;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___origin;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___document;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element;
|
|
};
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module;
|
|
float ___distance;
|
|
float ___index;
|
|
int32_t ___depth;
|
|
int32_t ___sortingGroupID;
|
|
int32_t ___sortingGroupOrder;
|
|
int32_t ___sortingLayer;
|
|
int32_t ___sortingOrder;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___origin;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___document;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element;
|
|
};
|
|
struct RenderHints_t4032FC4AB3FD946FD2A484865B8861730D9035E7
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimePlatform_t9A8AAF204603076FCAAECCCC05DA386AEE7BF66E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct TouchPhase_t54E0A1AF80465997849420A72317B733E1D49A9E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TouchType_t84F82C73BC1A6012141735AD84DA67AA7F7AB43F
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TrickleDown_t862EABE449B6C94F79F2B1D713990C35ABADDF38
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___normal;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___tangent;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv0;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv1;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv2;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___uv3;
|
|
};
|
|
struct VisualElementFlags_t4D1066E11400967A1A2DA7331391ACDC4AA14409
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E : public UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9
|
|
{
|
|
};
|
|
struct ColorTweenMode_t8A612404D746B1FDD36D22C97D87E7C839C3D7A8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventPropagation_t024AF56F7A787C03AA21B065B624553EF52E7B83
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct LifeCycleStatus_tEE500629F5431B574B8047EB70864747D348D38C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C : public UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7
|
|
{
|
|
};
|
|
struct FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC : public UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4
|
|
{
|
|
};
|
|
struct Direction_t7783E528E50FAB7F36720CD0F263B96ED3DE80F8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PointerEventType_t946A8A95B7318B06EFE9E9AD1F533A20CA28D312
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct PanelInputRedirection_t9EDB69F4B26629FC05FFA757FC6D94CE2E1F40D6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FramePressState_t1C7FDAE5827219BC328972DD7E496343581BDF95
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InputButton_t7F40241CC7C406EBD574D426F736CB744DE86CDA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InputMode_tEF03AE26DCD4F01309831EAF155B063E39EAFA9E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct WorldSpaceSizeMode_tEAFB471192BA8299D41F2B55667983F031144E11
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EventHandlerTypes_tC49219B144BB969FFE00B440819F976BD894BF16
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938 : public BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveVectorU3Ek__BackingField;
|
|
int32_t ___U3CmoveDirU3Ek__BackingField;
|
|
};
|
|
struct ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7
|
|
{
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* ___m_Target;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_StartColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_TargetColor;
|
|
int32_t ___m_TweenMode;
|
|
float ___m_Duration;
|
|
bool ___m_IgnoreTimeScale;
|
|
};
|
|
struct ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_pinvoke
|
|
{
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* ___m_Target;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_StartColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_TargetColor;
|
|
int32_t ___m_TweenMode;
|
|
float ___m_Duration;
|
|
int32_t ___m_IgnoreTimeScale;
|
|
};
|
|
struct ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_com
|
|
{
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* ___m_Target;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_StartColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_TargetColor;
|
|
int32_t ___m_TweenMode;
|
|
float ___m_Duration;
|
|
int32_t ___m_IgnoreTimeScale;
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C : public RuntimeObject
|
|
{
|
|
int32_t ___U3CeventCategoriesU3Ek__BackingField;
|
|
int64_t ___U3CtimestampU3Ek__BackingField;
|
|
uint64_t ___U3CeventIdU3Ek__BackingField;
|
|
uint64_t ___U3CtriggerEventIdU3Ek__BackingField;
|
|
int32_t ___U3CpropagationU3Ek__BackingField;
|
|
int32_t ___U3ClifeCycleStatusU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CelementTargetU3Ek__BackingField;
|
|
int32_t ___U3CpropagationPhaseU3Ek__BackingField;
|
|
RuntimeObject* ___m_CurrentTarget;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_ImguiEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CoriginalMousePositionU3Ek__BackingField;
|
|
};
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364
|
|
{
|
|
int32_t ___m_Allocator;
|
|
Data_t43E3238277579E631EA4E8016E61966D79F5B62E* ___m_Data;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB : public BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerEnterU3Ek__BackingField;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_PointerPress;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3ClastPressU3Ek__BackingField;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CrawPointerPressU3Ek__BackingField;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerDragU3Ek__BackingField;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerClickU3Ek__BackingField;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerCurrentRaycastU3Ek__BackingField;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerPressRaycastU3Ek__BackingField;
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___hovered;
|
|
bool ___U3CeligibleForClickU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldNormalU3Ek__BackingField;
|
|
float ___U3CclickTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscrollDeltaU3Ek__BackingField;
|
|
bool ___U3CuseDragThresholdU3Ek__BackingField;
|
|
bool ___U3CdraggingU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CaltitudeAngleU3Ek__BackingField;
|
|
float ___U3CazimuthAngleU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CtiltU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
bool ___U3CfullyExitedU3Ek__BackingField;
|
|
bool ___U3CreenteredU3Ek__BackingField;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF
|
|
{
|
|
int32_t ___m_Kind;
|
|
String_t* ___m_Name;
|
|
int32_t ___m_Index;
|
|
RuntimeObject* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Kind;
|
|
char* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com
|
|
{
|
|
int32_t ___m_Kind;
|
|
Il2CppChar* ___m_Name;
|
|
int32_t ___m_Index;
|
|
Il2CppIUnknown* ___m_Key;
|
|
};
|
|
struct Touch_t03E51455ED508492B3F278903A0114FA0E87B417
|
|
{
|
|
int32_t ___m_FingerId;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_RawPosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PositionDelta;
|
|
float ___m_TimeDelta;
|
|
int32_t ___m_TapCount;
|
|
int32_t ___m_Phase;
|
|
int32_t ___m_Type;
|
|
float ___m_Pressure;
|
|
float ___m_maximumPossiblePressure;
|
|
float ___m_Radius;
|
|
float ___m_RadiusVariance;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct Entry_t9B34433095405244EBB2447BBED208AF12286913 : public RuntimeObject
|
|
{
|
|
int32_t ___eventID;
|
|
TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* ___callback;
|
|
};
|
|
struct PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB : public RuntimeObject
|
|
{
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CaltitudeAngleU3Ek__BackingField;
|
|
float ___U3CazimuthAngleU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CtiltU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CscreenPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CscreenDeltaU3Ek__BackingField;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___U3CworldRayU3Ek__BackingField;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___U3CdocumentU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CelementTargetU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CelementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1
|
|
{
|
|
bool ___m_ProcessWorldSpaceInput;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_InteractionLayers;
|
|
float ___m_MaxInteractionDistance;
|
|
bool ___m_DefaultEventCameraIsMainCamera;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* ___m_EventCameras;
|
|
int32_t ___m_PanelInputRedirection;
|
|
bool ___m_AutoCreatePanelComponents;
|
|
};
|
|
struct Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_ProcessWorldSpaceInput;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_InteractionLayers;
|
|
float ___m_MaxInteractionDistance;
|
|
int32_t ___m_DefaultEventCameraIsMainCamera;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* ___m_EventCameras;
|
|
int32_t ___m_PanelInputRedirection;
|
|
int32_t ___m_AutoCreatePanelComponents;
|
|
};
|
|
struct Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_marshaled_com
|
|
{
|
|
int32_t ___m_ProcessWorldSpaceInput;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_InteractionLayers;
|
|
float ___m_MaxInteractionDistance;
|
|
int32_t ___m_DefaultEventCameraIsMainCamera;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* ___m_EventCameras;
|
|
int32_t ___m_PanelInputRedirection;
|
|
int32_t ___m_AutoCreatePanelComponents;
|
|
};
|
|
struct ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503 : public RuntimeObject
|
|
{
|
|
int32_t ___m_Button;
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___m_EventData;
|
|
};
|
|
struct MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154 : public RuntimeObject
|
|
{
|
|
int32_t ___buttonState;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___buttonData;
|
|
};
|
|
struct Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t056EE42AB4A3D8793585737CC6974771FF692BED : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
int32_t ___m_RefCount;
|
|
};
|
|
struct EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA
|
|
{
|
|
int32_t ___m_Manager;
|
|
LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364 ___m_Nodes;
|
|
LayoutDataStore_tE59A593CD73517DDC7C117B293E7C2C6F17DC364 ___m_Configs;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF ___m_Part3;
|
|
PropertyPathPartU5BU5D_t7994D542F14DDDDEABB1792C335C20149399AEBB* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_pinvoke* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com
|
|
{
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part0;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part1;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part2;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com ___m_Part3;
|
|
PropertyPathPart_tFB308743948D2298957DC1898D90AF2ACFED9DFF_marshaled_com* ___m_AdditionalParts;
|
|
int32_t ___U3CLengthU3Ek__BackingField;
|
|
};
|
|
struct Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD : public RuntimeObject
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem;
|
|
bool ___m_OverrideUIToolkitEvents;
|
|
int32_t ___m_HandlerTypes;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_WorldPickingLayers;
|
|
float ___m_WorldPickingMaxDistance;
|
|
bool ___m_CreateDefaultPanelComponents;
|
|
bool ___m_Started;
|
|
bool ___m_Enabled;
|
|
bool ___m_IsTrackingPanels;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_WorldSpaceGo;
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* ___trackedPanels;
|
|
Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* ___destroyedActions;
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 ___m_InputSettings;
|
|
bool ___m_OldOverrideUIToolkitEvents;
|
|
int32_t ___m_OldHandlerTypes;
|
|
bool ___m_OldCreateDefaultPanelComponents;
|
|
bool ___m_OldDefaultEventCameraIsMainCamera;
|
|
int64_t ___m_OldEventCamerasHash;
|
|
};
|
|
struct GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94 : public EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField;
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField;
|
|
};
|
|
struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A : public EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField;
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField;
|
|
};
|
|
struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA : public EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField;
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField;
|
|
};
|
|
struct KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD : public EventBase_1_t056EE42AB4A3D8793585737CC6974771FF692BED
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField;
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField;
|
|
};
|
|
struct MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8 : public EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
RuntimeObject* ___U3CsourcePointerEventU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderMouseU3Ek__BackingField;
|
|
};
|
|
struct NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022 : public EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
int32_t ___U3CdeviceTypeU3Ek__BackingField;
|
|
};
|
|
struct NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31 : public EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
int32_t ___U3CdeviceTypeU3Ek__BackingField;
|
|
};
|
|
struct NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87 : public EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37
|
|
{
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
int32_t ___U3CdeviceTypeU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7 : public EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9 : public EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B : public EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496 : public EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E
|
|
{
|
|
bool ___m_AltitudeNeedsConversion;
|
|
bool ___m_AzimuthNeedsConversion;
|
|
float ___m_AltitudeAngle;
|
|
float ___m_AzimuthAngle;
|
|
bool ___m_TiltNeeded;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Tilt;
|
|
int32_t ___U3CpointerIdU3Ek__BackingField;
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField;
|
|
bool ___U3CisPrimaryU3Ek__BackingField;
|
|
int32_t ___U3CbuttonU3Ek__BackingField;
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField;
|
|
float ___U3CdeltaTimeU3Ek__BackingField;
|
|
int32_t ___U3CclickCountU3Ek__BackingField;
|
|
float ___U3CpressureU3Ek__BackingField;
|
|
float ___U3CtangentialPressureU3Ek__BackingField;
|
|
float ___U3CtwistU3Ek__BackingField;
|
|
int32_t ___U3CpenStatusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField;
|
|
int32_t ___U3CmodifiersU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcompatibilityMouseEventU3Ek__BackingField;
|
|
int32_t ___U3CdisplayIndexU3Ek__BackingField;
|
|
bool ___U3CrecomputeTopElementUnderPointerU3Ek__BackingField;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79 ___m_PropertyPath;
|
|
String_t* ___m_Path;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_pinvoke
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_pinvoke ___m_PropertyPath;
|
|
char* ___m_Path;
|
|
};
|
|
struct BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E_marshaled_com
|
|
{
|
|
PropertyPath_tA523CA2740853534DF6C009C588464B45A6D0A79_marshaled_com ___m_PropertyPath;
|
|
Il2CppChar* ___m_Path;
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
uint32_t ___m_NonSerializedVersion;
|
|
};
|
|
struct Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
};
|
|
struct LayoutConfig_tD448909812F1AA8DE14EAC340688D6FF41B52C87
|
|
{
|
|
LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA ___m_Access;
|
|
LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6 ___m_Handle;
|
|
};
|
|
struct LayoutNode_tADF081B0F16F76B66459DE38F3AD8EC098F22CBE
|
|
{
|
|
LayoutDataAccess_t99AA56349D0BC76F3742B927F4F0DDB21511FBBA ___m_Access;
|
|
LayoutHandle_tCFE060947B4EDC8F11BF5B480181493FB578BEB6 ___m_Handle;
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
};
|
|
struct SpriteRenderer_t1DD7FE258F072E1FA87D6577BA27225892B8047B : public Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF
|
|
{
|
|
UnityEvent_1_t8ABE5544759145B8D7A09F1C54FFCB6907EDD56E* ___m_SpriteChangeEvent;
|
|
};
|
|
struct SpriteShapeRenderer_tE998BB73CF661079736CCC23617E597AB230A4AC : public Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF
|
|
{
|
|
};
|
|
struct TilemapRenderer_t1A45FD335E86172CFBB77D657E1D6705A477A6CB : public Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF
|
|
{
|
|
};
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303 : public RuntimeObject
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelDisposed;
|
|
UIElementsBridge_tC28FCEDF493CD746D1973AB27BA2CBA393EB4BA8* ___m_UIElementsBridge;
|
|
float ___m_Scale;
|
|
LayoutConfig_tD448909812F1AA8DE14EAC340688D6FF41B52C87 ___layoutConfig;
|
|
float ___m_PixelsPerPoint;
|
|
float ___U3CreferenceSpritePixelsPerUnitU3Ek__BackingField;
|
|
PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7 ___U3CclearSettingsU3Ek__BackingField;
|
|
RuntimeObject* ___panelRenderer;
|
|
bool ___U3CduringLayoutPhaseU3Ek__BackingField;
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* ___U3CrepaintDataU3Ek__BackingField;
|
|
RuntimeObject* ___U3CcursorManagerU3Ek__BackingField;
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* ___U3CcontextualMenuManagerU3Ek__BackingField;
|
|
DataBindingManager_tE7B33E64EBBDCAB0A89B6A8421529F9BA0D066E1* ___U3CdataBindingManagerU3Ek__BackingField;
|
|
bool ___U3CdisposedU3Ek__BackingField;
|
|
ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* ___m_TopElementUnderPointers;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___isFlatChanged;
|
|
bool ___m_IsFlat;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___atlasChanged;
|
|
HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705* ___hierarchyChanged;
|
|
Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6* ___beforeUpdate;
|
|
};
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302 : public FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94
|
|
{
|
|
};
|
|
struct EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* ___m_Delegates;
|
|
};
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F : public FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A
|
|
{
|
|
};
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C : public KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA
|
|
{
|
|
};
|
|
struct KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394 : public KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD
|
|
{
|
|
};
|
|
struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E : public NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022
|
|
{
|
|
};
|
|
struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF : public NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31
|
|
{
|
|
int32_t ___U3CdirectionU3Ek__BackingField;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveU3Ek__BackingField;
|
|
};
|
|
struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1 : public NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87
|
|
{
|
|
};
|
|
struct PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 ___m_Settings;
|
|
};
|
|
struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51 : public PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7
|
|
{
|
|
};
|
|
struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51 : public PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9
|
|
{
|
|
};
|
|
struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3 : public PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B
|
|
{
|
|
bool ___U3CisHandledByDraggableU3Ek__BackingField;
|
|
};
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9 : public PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496
|
|
{
|
|
};
|
|
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
};
|
|
struct UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
int32_t ___m_UIDocumentCreationIndex;
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* ___m_PanelSettings;
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* ___m_PreviousPanelSettings;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___m_ParentUI;
|
|
UIDocumentList_tA2A8305DE916298E4C586EC8235085560914E7C3* ___m_ChildrenContent;
|
|
List_1_t74EC90C5F42E1A99F29BC6A7FF27FD27FCF98344* ___m_ChildrenContentCopy;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___sourceAsset;
|
|
UIDocumentRootElement_t4BF84EDFF075AB09BDCCE2D6E401D2EF1B4AB328* ___m_RootVisualElement;
|
|
VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* ___U3CfocusRingU3Ek__BackingField;
|
|
int32_t ___softPointerCaptures;
|
|
int32_t ___m_FirstChildInsertIndex;
|
|
float ___m_SortingOrder;
|
|
int32_t ___m_Position;
|
|
int32_t ___m_WorldSpaceSizeMode;
|
|
float ___m_WorldSpaceWidth;
|
|
float ___m_WorldSpaceHeight;
|
|
int32_t ___m_PivotReferenceSize;
|
|
int32_t ___m_Pivot;
|
|
BoxCollider_tFA5D239388334D6DE0B8FFDAD6825C5B03786E23* ___m_WorldSpaceCollider;
|
|
bool ___m_RootHasWorldTransform;
|
|
};
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115 : public Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0
|
|
{
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_runningAnimationCountU3Ek__BackingField;
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_completedAnimationCountU3Ek__BackingField;
|
|
String_t* ___m_Name;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_ClassList;
|
|
Dictionary_2_tBCCCFBCAC02A3C03E3C84D75696D4860D7444A35* ___m_PropertyBag;
|
|
int32_t ___m_Flags;
|
|
String_t* ___m_ViewDataKey;
|
|
int32_t ___m_RenderHints;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastLayout;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastPseudoPadding;
|
|
RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2* ___renderData;
|
|
RenderData_t1ABE116B2B5E0409AC699E195922516606531DC2* ___nestedRenderData;
|
|
int32_t ___hierarchyDepth;
|
|
int32_t ___insertionIndex;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_Layout;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_BoundingBox;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldBoundingBox;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformCache;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformInverseCache;
|
|
int32_t ___triggerPseudoMask;
|
|
int32_t ___dependencyPseudoMask;
|
|
int32_t ___m_PseudoStates;
|
|
int32_t ___U3CcontainedPointerIdsU3Ek__BackingField;
|
|
int32_t ___m_PickingMode;
|
|
LayoutNode_tADF081B0F16F76B66459DE38F3AD8EC098F22CBE ___m_LayoutNode;
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C ___m_Style;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___variableContext;
|
|
int32_t ___inheritedStylesHash;
|
|
uint32_t ___controlid;
|
|
int32_t ___imguiContainerDescendantCount;
|
|
bool ___m_EnabledSelf;
|
|
int32_t ___m_LanguageDirection;
|
|
int32_t ___m_LocalLanguageDirection;
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___U3CgenerateVisualContentU3Ek__BackingField;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_defaultMaterial;
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___m_RunningAnimations;
|
|
RuntimeObject* ___m_DataSource;
|
|
PathRef_t76F7677792A14AF9D6A6EAB7F08C1A3DC2B27A55* ___m_DataSourcePath;
|
|
List_1_t592DF2E59D6E244DA0041698383484A07C7E0480* ___m_Bindings;
|
|
Type_t* ___U3CdataSourceTypeU3Ek__BackingField;
|
|
int32_t ___m_TrickleDownHandleEventCategories;
|
|
int32_t ___m_BubbleUpHandleEventCategories;
|
|
int32_t ___m_BubbleUpEventCallbackCategories;
|
|
int32_t ___m_TrickleDownEventCallbackCategories;
|
|
int32_t ___m_EventInterestSelfCategories;
|
|
int32_t ___m_CachedEventInterestParentCategories;
|
|
uint32_t ___m_NextParentCachedVersion;
|
|
uint32_t ___m_NextParentRequiredVersion;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CachedNextParentWithEventInterests;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 ___U3ChierarchyU3Ek__BackingField;
|
|
bool ___U3CisRootVisualContainerU3Ek__BackingField;
|
|
bool ___U3CcacheAsBitmapU3Ek__BackingField;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PhysicalParent;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_LogicalParent;
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___elementAdded;
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* ___elementRemoved;
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___m_Children;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___U3CelementPanelU3Ek__BackingField;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___m_VisualTreeAssetSource;
|
|
InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165* ___inlineStyleAccess;
|
|
ResolvedStyleAccess_t226CC840EBACEE31CE1139ED5F717532AFFAEB45* ___resolvedStyleAccess;
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___styleSheetList;
|
|
TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* ___m_TypeData;
|
|
};
|
|
struct WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E : public MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaU3Ek__BackingField;
|
|
};
|
|
struct BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
};
|
|
struct BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___m_RaycastResultCache;
|
|
bool ___m_SendPointerHoverToParent;
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___m_AxisEventData;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___m_BaseEventData;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* ___m_InputOverride;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* ___m_DefaultInput;
|
|
};
|
|
struct BaseMeshEffect_t87C453D6DAE52C072B2E613F65A5FE45C9B3990D : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___m_Graphic;
|
|
};
|
|
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___m_RootRaycaster;
|
|
};
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* ___m_SystemInputModules;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* ___m_CurrentInputModule;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_FirstSelected;
|
|
bool ___m_sendNavigationEvents;
|
|
int32_t ___m_DragThreshold;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CurrentSelected;
|
|
bool ___m_HasFocus;
|
|
bool ___m_SelectionGuard;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___m_DummyData;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* ___m_UIToolkitInterop;
|
|
};
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_Color;
|
|
bool ___m_SkipLayoutUpdate;
|
|
bool ___m_SkipMaterialUpdate;
|
|
bool ___m_RaycastTarget;
|
|
bool ___m_RaycastTargetCache;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_RaycastPadding;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_RectTransform;
|
|
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* ___m_CanvasRenderer;
|
|
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___m_Canvas;
|
|
bool ___m_VertsDirty;
|
|
bool ___m_MaterialDirty;
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyLayoutCallback;
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyVertsCallback;
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyMaterialCallback;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_CachedMesh;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_CachedUvs;
|
|
TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4* ___m_ColorTweenRunner;
|
|
bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField;
|
|
};
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9 : public BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_RootContainer;
|
|
VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* ___m_VisualTreeUpdater;
|
|
RuntimeObject* ___m_StylePropertyAnimationSystem;
|
|
String_t* ___m_PanelName;
|
|
uint32_t ___m_Version;
|
|
uint32_t ___m_RepaintVersion;
|
|
uint32_t ___m_HierarchyVersion;
|
|
uint32_t ___m_LastTickedHierarchyVersion;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerPrepareRepaint;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerRender;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerValidateLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActions;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActionsPreLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerTickScheduledActionsPostLayout;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerPanelChangeReceiver;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___U3CdispatcherU3Ek__BackingField;
|
|
TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* ___m_Scheduler;
|
|
ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* ___U3CownerObjectU3Ek__BackingField;
|
|
int32_t ___U3CcontextTypeU3Ek__BackingField;
|
|
SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716* ___U3CsaveViewDataU3Ek__BackingField;
|
|
GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638* ___U3CgetViewDataDictionaryU3Ek__BackingField;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField;
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 ___U3CIMGUIEventInterestsU3Ek__BackingField;
|
|
bool ___m_JustReceivedFocus;
|
|
RuntimeObject* ___m_PanelChangeReceiver;
|
|
int32_t ___U3CIMGUIContainersCountU3Ek__BackingField;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___U3CrootIMGUIContainerU3Ek__BackingField;
|
|
AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC* ___m_Atlas;
|
|
bool ___m_ValidatingLayout;
|
|
};
|
|
struct PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___m_Panel;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___m_PointerEvent;
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* ___m_ContainedPointers;
|
|
float ___m_LastClickTime;
|
|
bool ___m_Selecting;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_Event;
|
|
};
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4 : public Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_SelectableGameObject;
|
|
int32_t ___m_RuntimePanelCreationIndex;
|
|
float ___m_SortingPriority;
|
|
int32_t ___resolvedSortingIndex;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___destroyed;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___drawsInCamerasChanged;
|
|
bool ___m_DrawsInCameras;
|
|
float ___m_PixelsPerUnit;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___targetTexture;
|
|
int32_t ___U3CtargetDisplayU3Ek__BackingField;
|
|
Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768* ___m_ScreenToPanelSpace;
|
|
};
|
|
struct PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D : public BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___m_Panel;
|
|
};
|
|
struct PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD : public BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___m_EventCamera;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___m_EventMask;
|
|
int32_t ___m_MaxRayIntersections;
|
|
int32_t ___m_LastMaxRayIntersections;
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___m_Hits;
|
|
};
|
|
struct PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556 : public BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1
|
|
{
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* ___m_PointerData;
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* ___m_MouseState;
|
|
};
|
|
struct Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95 : public BaseMeshEffect_t87C453D6DAE52C072B2E613F65A5FE45C9B3990D
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_EffectColor;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_EffectDistance;
|
|
bool ___m_UseGraphicAlpha;
|
|
};
|
|
struct WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4 : public BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___m_EventCamera;
|
|
};
|
|
struct Physics2DRaycaster_t8E0FE5BD8DC96C60EE4BA334B0607B63A69761A7 : public PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD
|
|
{
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___m_Hits;
|
|
};
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346 : public BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4
|
|
{
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* ___m_PanelSettings;
|
|
};
|
|
struct StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530 : public PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556
|
|
{
|
|
float ___m_PrevActionTime;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LastMoveVector;
|
|
int32_t ___m_ConsecutiveMoveCount;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LastMousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_MousePosition;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CurrentFocusedGameObject;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___m_InputPointerEvent;
|
|
String_t* ___m_HorizontalAxis;
|
|
String_t* ___m_VerticalAxis;
|
|
String_t* ___m_SubmitButton;
|
|
String_t* ___m_CancelButton;
|
|
float ___m_InputActionsPerSecond;
|
|
float ___m_RepeatDelay;
|
|
bool ___m_ForceModuleActive;
|
|
};
|
|
struct TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C : public PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LastMousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_MousePosition;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___m_InputPointerEvent;
|
|
bool ___m_ForceModuleActive;
|
|
};
|
|
struct List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F_StaticFields
|
|
{
|
|
BaseInputModuleU5BU5D_t13666B4E8696F293BE82C23D29B7FAE0C4D1FE90* ___s_emptyArray;
|
|
};
|
|
struct List_1_t02E640552264E3DEAE676267B620815D33BCD0DF_StaticFields
|
|
{
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* ___s_emptyArray;
|
|
};
|
|
struct List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3_StaticFields
|
|
{
|
|
BaseRuntimePanelU5BU5D_t5616E94AA01876C9DB770DB16A05F5BCA7FEA346* ___s_emptyArray;
|
|
};
|
|
struct List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3_StaticFields
|
|
{
|
|
EventSystemU5BU5D_tC56681ED65D83E744C4504A1D94048F29AFA499B* ___s_emptyArray;
|
|
};
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_StaticFields
|
|
{
|
|
GameObjectU5BU5D_tFF67550DFCE87096D7A3734EA15B75896B2722CF* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE_StaticFields
|
|
{
|
|
PointerEventDataU5BU5D_t1348B5A6E4F92DEF683F2061EA0A52D2B218D8C7* ___s_emptyArray;
|
|
};
|
|
struct List_1_t8292C421BBB00D7661DC07462822936152BAB446_StaticFields
|
|
{
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* ___s_emptyArray;
|
|
};
|
|
struct List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D_StaticFields
|
|
{
|
|
TransformU5BU5D_tBB9C5F5686CAE82E3D97D43DF0F3D68ABF75EC24* ___s_emptyArray;
|
|
};
|
|
struct List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A_StaticFields
|
|
{
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440_StaticFields
|
|
{
|
|
EntryU5BU5D_t7F80FE101EBB042094267D264CEABEFCFE6AA556* ___s_emptyArray;
|
|
};
|
|
struct List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3_StaticFields
|
|
{
|
|
ButtonStateU5BU5D_t9D11140D1CF07380D16777C9FA1870ABD5AC17F9* ___s_emptyArray;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t3A51899FBAA581553000230A6A0F92898553245F_StaticFields
|
|
{
|
|
__StaticArrayInitTypeSizeU3D12_tE6E9A5118C80D71EA1E9325D404FAB06593F00C3 ___1C3635C112D556F4C11A4FE6BDE6ED3F126C4B2B546811BDB64DE7BDED3A05CB;
|
|
__StaticArrayInitTypeSizeU3D8348_t46198045B697732313A28585B397764D6FB136D1 ___80298548109F863ACD2D17A679B582C75AB2549AB89B27DB687F740828BE37CE;
|
|
__StaticArrayInitTypeSizeU3D5639_tE606AD466DEF7A7C4093744AC1D6AD7666027CE0 ___C1CBBE080DE2B9351B3BCDB305A0FD9051C35B55C4DC2746CDFCE336A68AF82C;
|
|
};
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_StaticFields
|
|
{
|
|
int32_t ___U3Cs_DoubleClickTimeU3Ek__BackingField;
|
|
};
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info;
|
|
RuntimeObject* ___shared_table_lock;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture;
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number;
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX;
|
|
bool ___IsTaiwanSku;
|
|
};
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields
|
|
{
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* ___k_EventQueuePool;
|
|
};
|
|
struct ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields
|
|
{
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ___s_PointerMoveHandler;
|
|
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ___s_PointerEnterHandler;
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ___s_PointerExitHandler;
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ___s_PointerDownHandler;
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ___s_PointerUpHandler;
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ___s_PointerClickHandler;
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ___s_InitializePotentialDragHandler;
|
|
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ___s_BeginDragHandler;
|
|
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ___s_DragHandler;
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ___s_EndDragHandler;
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ___s_DropHandler;
|
|
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ___s_ScrollHandler;
|
|
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ___s_UpdateSelectedHandler;
|
|
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ___s_SelectHandler;
|
|
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ___s_DeselectHandler;
|
|
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ___s_MoveHandler;
|
|
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ___s_SubmitHandler;
|
|
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ___s_CancelHandler;
|
|
List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D* ___s_InternalTransformList;
|
|
};
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
|
|
{
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo;
|
|
};
|
|
struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields
|
|
{
|
|
int32_t ___maxPointers;
|
|
int32_t ___invalidPointerId;
|
|
int32_t ___mousePointerId;
|
|
int32_t ___touchPointerIdBase;
|
|
int32_t ___touchPointerCount;
|
|
int32_t ___penPointerIdBase;
|
|
int32_t ___penPointerCount;
|
|
int32_t ___trackedPointerIdBase;
|
|
int32_t ___trackedPointerCount;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___screenHoveringPointers;
|
|
};
|
|
struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields
|
|
{
|
|
String_t* ___mouse;
|
|
String_t* ___touch;
|
|
String_t* ___pen;
|
|
String_t* ___tracked;
|
|
String_t* ___unknown;
|
|
};
|
|
struct RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields
|
|
{
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* ___s_Raycasters;
|
|
};
|
|
struct ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5_StaticFields
|
|
{
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* ___s_ReflectionMethodsCache;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_StaticFields
|
|
{
|
|
Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* ___onCreatePanel;
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___IsEditingPrefab;
|
|
bool ___s_RegisteredPlayerloopCallback;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* ___s_SortedScreenOverlayPanels;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* ___s_CachedWorldSpacePanels;
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* ___s_SortedPlayerPanels;
|
|
bool ___s_PanelOrderingOrDrawInCameraDirty;
|
|
int32_t ___s_ResolvedSortingIndexMax;
|
|
int32_t ___currentOverlayIndex;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___U3CactiveEventSystemU3Ek__BackingField;
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___U3CoverrideUseDefaultEventSystemU3Ek__BackingField;
|
|
bool ___U3CautoUpdateEventSystemU3Ek__BackingField;
|
|
DefaultEventSystem_t264BDF66772AC091E74E08415FB9C70FAE619F98* ___s_DefaultEventSystem;
|
|
List_1_tD130F81C131F978A1BA5800264499CDDD4394830* ___s_PotentiallyEmptyPanelSettings;
|
|
};
|
|
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE_StaticFields
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___s_DefaultTangent;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___s_DefaultNormal;
|
|
};
|
|
struct RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_StaticFields
|
|
{
|
|
RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* ___instance;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray;
|
|
};
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_StaticFields
|
|
{
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___focusableProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___tabIndexProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___delegatesFocusProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___canGrabFocusProperty;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
float ___Epsilon;
|
|
};
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields
|
|
{
|
|
DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* ___displays;
|
|
Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* ____mainDisplay;
|
|
int32_t ___m_ActiveEditorGameViewTarget;
|
|
DisplaysUpdatedDelegate_t1BAACED9BE72131FD59213A3186F5D7AB9E1FD68* ___onDisplaysUpdated;
|
|
};
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_StaticFields
|
|
{
|
|
bool ___ignoreGuiDepth;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_Current;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_MasterEvent;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
|
|
};
|
|
struct UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___s_DefaultColor;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___s_DefaultTangent;
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___simpleVert;
|
|
};
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields
|
|
{
|
|
int64_t ___s_LastTypeId;
|
|
uint64_t ___s_NextEventId;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_StaticFields
|
|
{
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 ___s_Default;
|
|
};
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
|
|
{
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender;
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender;
|
|
};
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___s_OutsidePanelCoordinates;
|
|
};
|
|
struct PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields
|
|
{
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* ___U3CcurrentU3Ek__BackingField;
|
|
int32_t ___s_ActiveInstances;
|
|
Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* ___onApply;
|
|
};
|
|
struct UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77_StaticFields
|
|
{
|
|
int32_t ___s_CurrentUIDocumentCounter;
|
|
int32_t ___EnabledDocumentCount;
|
|
};
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_StaticFields
|
|
{
|
|
uint32_t ___s_NextId;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___s_EmptyClassList;
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___userDataPropertyKey;
|
|
String_t* ___disabledUssClassName;
|
|
int32_t ___s_FinalizerCount;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateVisualContentMarker;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_runtimeMaterial;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___childCountProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___contentRectProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___dataSourcePathProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___dataSourceProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___disablePlayModeTintProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___enabledInHierarchyProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___enabledSelfProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___layoutProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___languageDirectionProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___localBoundProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___nameProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___panelProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___pickingModeProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___styleSheetsProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___tooltipProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___usageHintsProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___userDataProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___viewDataKeyProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___visibleProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___visualTreeAssetSourceProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___worldBoundProperty;
|
|
BindingId_t8BBB6188CD126EACCA07816C78760E92DC16620E ___worldTransformProperty;
|
|
uint32_t ___s_NextParentVersion;
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___s_EmptyList;
|
|
CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1* ___s_CustomStyleAccess;
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___s_InternalStyleSheetPath;
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___tooltipPropertyKey;
|
|
Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8* ___s_TypeData;
|
|
};
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields
|
|
{
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* ___m_EventSystems;
|
|
Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* ___s_RaycastComparer;
|
|
Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4 ___s_UIToolkitOverrideConfigOld;
|
|
};
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931_StaticFields
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_DefaultUI;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___s_WhiteTexture;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___s_Mesh;
|
|
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* ___s_VertexHelper;
|
|
};
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_MarkerPickAll;
|
|
LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850* ___U3CloadResourceFuncU3Ek__BackingField;
|
|
TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B* ___U3CTimeSinceStartupU3Ek__BackingField;
|
|
Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01* ___beforeAnyRepaint;
|
|
};
|
|
struct PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields
|
|
{
|
|
int32_t ___s_Modifiers;
|
|
};
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_StaticFields
|
|
{
|
|
int32_t ___s_CurrentRuntimePanelCounter;
|
|
Func_2_tECC97CAACCC7CB873184FEF49E8343711EEF4768* ___DefaultScreenToPanelSpace;
|
|
};
|
|
struct PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_StaticFields
|
|
{
|
|
ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* ___panelPicker;
|
|
};
|
|
struct WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_StaticFields
|
|
{
|
|
PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* ___worldPicker;
|
|
};
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_StaticFields
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___s_EventDispatcher;
|
|
List_1_t74EC90C5F42E1A99F29BC6A7FF27FD27FCF98344* ___s_EmptyDocumentList;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* m_Items[1];
|
|
|
|
inline Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Type_t* m_Items[1];
|
|
|
|
inline Type_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* m_Items[1];
|
|
|
|
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* m_Items[1];
|
|
|
|
inline BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* m_Items[1];
|
|
|
|
inline BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA m_Items[1];
|
|
|
|
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 m_Items[1];
|
|
|
|
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 m_Items[1];
|
|
|
|
inline UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 m_Items[1];
|
|
|
|
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___element), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___element), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_gshared_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_gshared_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_index, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionPool_2_Get_m411EB4FF2E2641FDE11B243AC15FA290A8165AEE_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionPool_2_Release_m7F9169CA8ED500338A224EDA6EEEFC4AA4ECFD5F_gshared (RuntimeObject* ___0_toRelease, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D_gshared (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE_gshared (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* ___0_call, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D_gshared (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_gshared (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, float ___0_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_gshared (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* ___0_call, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_gshared (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared (EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_UpdatePointerEventTarget_TisRuntimeObject_mF15CFDFB36A777E63B83AC5C5BEE9873EDB3CC7D_gshared (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, RuntimeObject* ___0_e, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___1_eventData, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NavigationEventBase_1_GetPooled_m11B6522FAE989256AFD36F82DF9C698DDA6D397D_gshared (int32_t ___0_deviceType, int32_t ___1_modifiers, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m2CD7657B3459B61DD4BBA47024AC71F7D319658B_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8 HashSet_1_GetEnumerator_m143B98FEED7E9CABA2C494AB2F04DAD60A504635_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFB582AEAA2E73F3128B5571197BEDE256A83F657_gshared (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m27565F5ACCCC75C3DD34CC4CAE3E6AEFEB9144A6_gshared (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_Clear_m75A6528F0B47448EB3B3A05EC379260E9BDFC2DD_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m1E94C680E4B769A90F89B234D8FFF451D3230746_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m9132EE1422BAA45E44B7FFF495F378790D36D90E_gshared (HashSet_1_t2F33BEB06EEA4A872E2FAF464382422AA39AE885* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m378F61BA812B79DEE58D86FE8AA9F20E3FC7D85F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, RuntimeObject* ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Component_GetComponents_TisRuntimeObject_m2CD12FB45EFC625510F7E12FE2EB7D0EC2BA4421_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_results, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927* ___2_functor, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC_gshared (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* ___0_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC_gshared (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_gshared_inline (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_gshared (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mB0FAEA6338392B1FCA83DB09FCA47090BA250E0F_gshared (Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_Invoke_m6CDC8B0639CE8935E2E13D10B2C8E500968130B6_gshared (UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205* __this, RuntimeObject* ___0_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared (UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExecuteEvents_ValidateEventData_TisRuntimeObject_m040536F76D700E5860C5D98D6E18BFF2C412ADCB_gshared (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_data, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared (EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Component_GetComponents_TisRuntimeObject_m35447B0B07F9C06A1AF846E482EC6FEB09D2436F_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_gshared (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_GetComponentInParent_TisRuntimeObject_mDD9FD68B12361AC472D4A83310CAD793C02C6654_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B_gshared (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m7316301B8CF47FB538886B229B2749EC160B9D5C_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mAF1EF7DA16BD70E252EA5C4B0F74DE519A02CBCD_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m12BAB2F82E34CAA21A7245AB61E48F106340C1A4_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t65BBB6F728D41FD4760F6D6C59CC030CF237785F* Dictionary_2_get_Values_mC5B06C3C3FA89D62D6035C5B4C5E64A08FCF4DB9_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D ValueCollection_GetEnumerator_mDC2BD0AFDA087B7E7C23A8077E612664DFA8A152_gshared (ValueCollection_t65BBB6F728D41FD4760F6D6C59CC030CF237785F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0647C4F434347E47D544621901E49835DF51F22B_gshared (Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m1412A508E37D95E08FB60E8976FB75714BE934C1_gshared_inline (Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mF45CB0E0D7475963B61017A024634F60CF48548A_gshared (Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mE1EFF7C68491EE07D21EE9924475A559BF0A4773_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3 Dictionary_2_GetEnumerator_m3F1620145BA0815B7C7CD648EF054558AA26556A_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAECCBE12C0427D7ACF88F82FA266F1AE37402565_gshared (Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3 Enumerator_get_Current_m90160D324DA0D9F5624A345F47D8E226A118911A_gshared_inline (Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_m8508BCECB0654E2E93B1A141382E2688ADE7EE7C_gshared_inline (KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mF0E6A8A455FA71BC8EA94E39C8848FB35A836841_gshared_inline (KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m4DC143BC57F14EDD85AB13B6D6F3B5D0E319B30E_gshared (Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisRuntimeObject_m86588AD6FDDC9670CE26E5111D23F49B821330C5_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m92E9AB321FBD7147CA109C822D99C8B0610C27B7_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m47C22A77611C31042CA566EE345A4A1017A40A65_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t297B5C47242D1B98BEC955E2804FA142B43E7927* ___2_callbackFunction, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyValuePair_2_ToString_mCCDA8E0F389BAA2675BC9C032158839E073A7A37_gshared (KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Component_GetComponentsInParent_TisRuntimeObject_m161F08219ECBE099E346F616990662F0117D4C8E_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB_gshared (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mF091C3389B6DBF0F71F3A9FF11377F0019784849_gshared (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m6B403207DC8AC640C29234B59D769B244BA3666C_gshared (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_item, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseMeshEffect__ctor_mFFF23FD89B32150DAC512C556A1CCF563D062427 (BaseMeshEffect_t87C453D6DAE52C072B2E613F65A5FE45C9B3990D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04 (BaseMeshEffect_t87C453D6DAE52C072B2E613F65A5FE45C9B3990D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, const RuntimeMethod*))List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, const RuntimeMethod*))List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96_gshared)(__this, method);
|
|
}
|
|
inline void List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, int32_t, const RuntimeMethod*))List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, int32_t, const RuntimeMethod*))List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207, const RuntimeMethod*))List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, int32_t ___0_index, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, int32_t, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207, const RuntimeMethod*))List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_ApplyShadowZeroAlloc_m010AE345D731FC53595A62CF8D0B401C2D6F4B58 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_verts, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_color, int32_t ___2_start, int32_t ___3_end, float ___4_x, float ___5_y, const RuntimeMethod* method) ;
|
|
inline List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* CollectionPool_2_Get_mF172EABFC8C0790442FC9E97247EDE52148F13EB (const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* (*) (const RuntimeMethod*))CollectionPool_2_Get_m411EB4FF2E2641FDE11B243AC15FA290A8165AEE_gshared)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VertexHelper_GetUIVertexStream_m87D56EB5559CCCA150F68B1DD660FF4154CACBCE (VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_stream, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Shadow_get_effectColor_m6E7751BB8792C85BE9DAD0D133D787317D9CF59B_inline (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B Color32_op_Implicit_m79AF5E0BDE9CE041CAC4D89CBFA66E71C6DD1B70_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Shadow_get_effectDistance_mA87EB50066AFEBC13C69D27376E50033930FA58F_inline (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_ApplyShadow_mB615BBD368431C63B1407CAFD7DD32BE023E543E (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_verts, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_color, int32_t ___2_start, int32_t ___3_end, float ___4_x, float ___5_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VertexHelper_Clear_mB19E51AD5AF1C04CB2C6E6A272D032D651EC40F5 (VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VertexHelper_AddUIVertexTriangleStream_m29A217271BF2B3D3D60B7CBDA4114C7BB40C2841 (VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_verts, const RuntimeMethod* method) ;
|
|
inline void CollectionPool_2_Release_m8EFACCF3EB10B4D6ED9988CB24999AFFF8FE3553 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, const RuntimeMethod*))CollectionPool_2_Release_m7F9169CA8ED500338A224EDA6EEEFC4AA4ECFD5F_gshared)(___0_toRelease, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_startColor_m9E33FB5C5F76BCF49A3B20201CD8006DBFB46012_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mD22349343421BD44F0C31E537718ED53BE4850DA_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_targetColor_m240A7018BDC3B44AB44BA674AA16C39960BC23FF_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_m7D8E74B32AC3A9C17C3192096003B12A1500D749_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m06B83FB6E45A807F83FDD762A8241D478FD13F8B_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m105EEB49F6632D6D105C63DA9919385233A5D4DE_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ColorTween_get_duration_m40D8F08C13FF2FE7583746934C6A017A93398548_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_duration_m1C278AB5A90B5C108CEB4870CAC90A9A9EAC19CB_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mEDB15A4ADE3A0B9487D240964A7571247F974708_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m060FF3CED06F73EA1F555A37999D61DC58F99927_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_ValidTarget_m1D7A682CE00048FAF1A3BDD55EB76F44C9122B4D (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_Lerp_mE79F87889843ECDC188E4CB5B5E1F1B2256E5EBE_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9*, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F, const RuntimeMethod*))UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D_gshared)(__this, ___0_arg0, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_mF5CBA9BDE7F73E47F9CF26DC4EC2419694049860 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, float ___0_floatPercentage, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTweenCallback__ctor_mFEB49A6A1ABACFE2351A63060F786B762E2DC6B9 (ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* ___0_call, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9*, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F*, const RuntimeMethod*))UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE_gshared)(__this, ___0_call, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_AddOnChangedCallback_mAC2856A154604B4B6721DAC185B819A98D6F7438 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* ___0_callback, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m679C83012235779A37DCCD0AA75CD6B0DAE5BCFA_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mC40D6776769FDB79C7ADC42D59F059A2A9AE2F66_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tF4BE0B078FD22C6D76548861637E94AB782888C9*, const RuntimeMethod*))UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_startValue_mCA121483CCF4C8F10991BB3306E3F2769EBB3A3C_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m43B55D74B7B34D9C32439D6004F306BFA18E4A1A_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_m6EFBD9EAB206F145959832269DC24C4B68FEE6B1_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m4AE44CE862797E898CDE00A1B7D6A33CE0AFDCFB_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_duration_mB1496D38A618FF8282205FD3AA14CA9C6D76454D_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_duration_m40E10A7B796B4B54FFB8DA3889B09557BEC98456_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m6F6BDCBD59C19E68572370F9FE3D7373B4212B3B_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_m09041A4110040F9C86D24E1B4DED6E6B7FB206A8_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_ValidTarget_m36EABC84C8FEFF79EBAC8E9C3C7A394F1377E311 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805 (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, float ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4*, float, const RuntimeMethod*))UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_gshared)(__this, ___0_arg0, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_mE51344369BDDA58E9C3AEC62E1B1C1AC0349278E (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_floatPercentage, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTweenCallback__ctor_m3BD06E1999E88B4BAC7627A04B37300331CA210A (FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* ___0_call, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4*, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90*, const RuntimeMethod*))UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_gshared)(__this, ___0_call, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_AddOnChangedCallback_m13B1FFCAD78C7E690E70704311B20D5BB67D8224 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* ___0_callback, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_mA2463285D4524B70A46776FC60C4F939B3BCD045_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m3E981D91F15C36ED6F241117665E703F2BD2A6D4_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422 (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4*, const RuntimeMethod*))UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_UnregisterCallbacks_m93894C7D3D238507B771066CC0025C98816D309C (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_RegisterCallbacks_mDA52FF8A14161DC03A7B09826079F60AEDBAC565 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PanelEventHandler_get_selectableGameObject_m327CAA6DDDE5191CF001B5FED18EC8857E6915FC (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_add_destroyed_m7191C21A4B5662F3855824E4C516E0232A1C5C81 (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
inline void EventCallback_1__ctor_m0D38C77E31A784ACCFD4322569B7751EF13BF9EC (EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void CallbackEventHandler_RegisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_mB6BEC6CAB9FBEE05C80B283B9DBFE6F6FFE8A8DC (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
inline void EventCallback_1__ctor_mEF94DB10A3D6378C9D6E81C478DE9B918C92CEF9 (EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void CallbackEventHandler_RegisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_m3D1FF7EACB159A3EE4AB8B938F542823AC3F1566 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_remove_destroyed_mF4555F874EDE8F3ED9783051C3666C8B0E6CA2DC (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
inline void CallbackEventHandler_UnregisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_m9E81BF1DC2166F05AECC012446B1446B37A88422 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
inline void CallbackEventHandler_UnregisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_mB949A7FBA4C69BB93448ACDCD45AC8C1DBC3A8F0 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_set_panel_m30302AED739E083827B25651029CB2F1563D2988 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m91382EAC4D552C672CC07BE7EB1481F156045280 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_selected, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Panel_Focus_mDAE57837E8C771D868C150D37EB07E828281B9BC (Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Panel_Blur_m8A06EE8F304D327193143A8C9AA42386468DFD7F (Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___0_pe, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_eventData, int32_t ___2_eventType, const RuntimeMethod* method) ;
|
|
inline PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* PointerEventBase_1_GetPooled_m505D01FFFB287E4FA5650DEDE746B6DAC77194E0 (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* (*) (RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared)(___0_triggerEvent, method);
|
|
}
|
|
inline void PanelEventHandler_UpdatePointerEventTarget_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m01B9C5332EAD486A6293066474A554A18B70EE77 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_e, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09*, PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3*, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB*, const RuntimeMethod*))PanelEventHandler_UpdatePointerEventTarget_TisRuntimeObject_mF15CFDFB36A777E63B83AC5C5BEE9873EDB3CC7D_gshared)(__this, ___0_e, ___1_eventData, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_sourceEventData, const RuntimeMethod* method) ;
|
|
inline PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* PointerEventBase_1_GetPooled_m9B995C8015B9E44E3A91A42953EF592D22E329DB (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* (*) (RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared)(___0_triggerEvent, method);
|
|
}
|
|
inline void PanelEventHandler_UpdatePointerEventTarget_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m199E8DC26E1B4E2C9D0F4FF3F56931E335AFDA65 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_e, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09*, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB*, const RuntimeMethod*))PanelEventHandler_UpdatePointerEventTarget_TisRuntimeObject_mF15CFDFB36A777E63B83AC5C5BEE9873EDB3CC7D_gshared)(__this, ___0_e, ___1_eventData, method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C (int32_t ___0_pointerId, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_element, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___2_camera, const RuntimeMethod* method) ;
|
|
inline PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* PointerEventBase_1_GetPooled_mFCA2D5D977296034C8EE0A2E61CBA38250C3D928 (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* (*) (RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared)(___0_triggerEvent, method);
|
|
}
|
|
inline void PanelEventHandler_UpdatePointerEventTarget_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mCAFF63BFF505A4C37A141B756EB051616AD7C95A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* ___0_e, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09*, PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51*, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB*, const RuntimeMethod*))PanelEventHandler_UpdatePointerEventTarget_TisRuntimeObject_mF15CFDFB36A777E63B83AC5C5BEE9873EDB3CC7D_gshared)(__this, ___0_e, ___1_eventData, method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* EventBase_get_elementTarget_mF6CFD6372FB247718797DB8927654F781821B94D_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
inline bool List_1_Remove_m4097EB41B6DA7B55D588365541B34406A0C1A7B6 (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE*, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
inline PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* PointerEventBase_1_GetPooled_m1273AE51A40AC6C68E59D3D2AA5BF1E057A0AD1D (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* (*) (RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared)(___0_triggerEvent, method);
|
|
}
|
|
inline void PanelEventHandler_UpdatePointerEventTarget_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4F89A7634336F44ACF0EAB83D5A37E54243702D2 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* ___0_e, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09*, PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51*, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB*, const RuntimeMethod*))PanelEventHandler_UpdatePointerEventTarget_TisRuntimeObject_mF15CFDFB36A777E63B83AC5C5BEE9873EDB3CC7D_gshared)(__this, ___0_e, ___1_eventData, method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pressedButtons_mBC45047294FB78F490183380DD544683C6CB5A2E_inline (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Add_mEE8E752136ACB05A54F2783E0FC3BA219B3D3537_inline (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE*, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, int32_t ___0_pointerId, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_position, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PanelEventHandler_GetDeviceType_m41DB820BAD3A98DFC6E2F7090659A76A2D9D8C5A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method) ;
|
|
inline NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* NavigationEventBase_1_GetPooled_mB1CE016F257FE0B9381D2C85C9DE76026038E061 (int32_t ___0_deviceType, int32_t ___1_modifiers, const RuntimeMethod* method)
|
|
{
|
|
return (( NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* (*) (int32_t, int32_t, const RuntimeMethod*))NavigationEventBase_1_GetPooled_m11B6522FAE989256AFD36F82DF9C698DDA6D397D_gshared)(___0_deviceType, ___1_modifiers, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
inline NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* NavigationEventBase_1_GetPooled_m1AA5FA03C126B545E68FBCD06A0FF14DA35B4DFD (int32_t ___0_deviceType, int32_t ___1_modifiers, const RuntimeMethod* method)
|
|
{
|
|
return (( NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* (*) (int32_t, int32_t, const RuntimeMethod*))NavigationEventBase_1_GetPooled_m11B6522FAE989256AFD36F82DF9C698DDA6D397D_gshared)(___0_deviceType, ___1_modifiers, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 AxisEventData_get_moveVector_m7979B5CF62B6B3B0C5F2DA8B328C499ED80ECC41_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* NavigationMoveEvent_GetPooled_mD37F15D0BD9B6B112B6CC685A6C1EC2AD07FE2D7 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_moveVector, int32_t ___1_deviceType, int32_t ___2_modifiers, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* WheelEvent_GetPooled_m0B52D894574A9F79079C03E54529A1B28D776E85 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_delta, RuntimeObject* ___1_pointerEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualElementPanel_SendEvent_m1CBB33A872A838895CBE5E620FD106FD5C72B1FB (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, int32_t ___1_dispatchMode, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PanelEventHandler_get_isCurrentFocusedPanel_mE9616A8F71808D5507809F0A6A5521DB25564587 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_UpdateWorldSpacePointers_m2EF2411E711C6B19003727168E8F16D6CCF3034C (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_modifiers_mD55E7CF06EB720434F0F174EA569B2A29792D39B (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessKeyboardEvent_m665D51CC6E7CDE6F1C130A49B89CD67C29A6F450 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessTabEvent_m57753FE73E0530973D9A9EF0D606B773CE16A337 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_PopEvent_mC780BAA7CE4F0E75C8B5C7DC5EB430C278B0D0AE (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_outEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendKeyUpEvent_mE718C7FBA4F4936F9D3B0C3FB3E3629288AD0F44 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendKeyDownEvent_m41EE3C5B80C20F66A3056EC839FC60BCBACCE6B5 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyboardEventExtensions_ShouldSendNavigationMoveEventRuntime_mE115DCF9A83C6D801DEF4DCEEF402C78A2ED31C1 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_shift_mB8409DA839B09DC6137848E131A6DBE70BB9E70A (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendTabEvent_m00C849500EAEFC5F544C811A1F6D6496EDDD3B8B (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, int32_t ___1_direction, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___2_target, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* NavigationMoveEvent_GetPooled_m63485891C63EEBFA8AA8A0A92C98F1961F903FAE (int32_t ___0_direction, int32_t ___1_modifiers, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendEvent_m8A731185591EB81DC398B72D4C081970A89D421B (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___1_sourceEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* UIElementsRuntimeUtility_CreateEvent_mFC27ABBB5CACE8EB5981105C15FAD450A0EEC6A7 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_Read_mE5A2B332E857E3264562FF872625FB5ACE2E3248 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* ___0_self, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_eventData, int32_t ___2_eventType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_ComputeTarget_m144F7D861BCFCBD041431FB7DD52CFD6C9BD9406 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method) ;
|
|
inline Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5 List_1_GetEnumerator_m58CFABB5C7A40BB3B14B3B347F6FB292CB937953 (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5 (*) (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mB6E33132F5D0676786F67B988DB108FF7F1B222D (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* Enumerator_get_Current_m9B2A28B6083DEBB62BF0A0D90CF32F5D985E1234_inline (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* (*) (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementUnderPointer_mFD842306621DDC700B678892D68AB6525A00816E_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualElementPanel_SetTopElementUnderPointer_m09591A0A171CEB0CAA023C6834B075D8E76ED5D9 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_element, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_position, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVisualElementPanel_CommitElementUnderPointers_m41A1D0D2884A1C35218D330EE29DF393F75E7892 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_mA040B5E48F4FE0BFCE09DAED1C1FC3A7107607D1 (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent__ctor_mE689E41BEA012A2914C799FECBCE48F7A58FCF73 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m5B55006732F050E7E309F89B7D8CF4420DBD61D8 (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_ctrlKey_m6EEB9C3A61C998C00946B424121C7BB32CDA6BED (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_commandKey_m750005DB9507733FAEE22D4DE58F28C11FD15DB3 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pointerId_m1BFCE40A5AF978254069B94292CADC4B39CB4E6B_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_U3CReadU3Eg__InRangeU7C114_0_m43E0E6FB2E0243DEE73E462C398FDD8174E6D072 (int32_t ___0_i, int32_t ___1_start, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pointerType_m1BD8CE6C878A3FFB6441A60302634515525E1050_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_isPrimary_m90DD30E4F4B1641C8F800C4EF04DF078F7F37D2E_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_m01A3102DE71EE1FBEA51D09D6B0261CF864FE8F9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 MultipleDisplayUtilities_GetRelativeMousePositionForRaycast_mBD9CBF4855B536FF62D12DA8D774B196C2E7EC1C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Display_get_systemHeight_mC20ADD124FBEF94796F736684A3AF4D0AA569FC7 (Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_screenPosition_m2A9C18D1855EC49528726A531D804DB3C9FC2C02_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_screenDelta_mE495E40F0372DFDB17BFE2B3DA4DC8FB8341498D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_deltaTime_mEECBC843D749F429B1F72559BB488BE17BBFC3E0_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pressure_m1D036CF601B6EEB97DBDB8DB75F0923D39303FD9_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_tangentialPressure_m7ADB233CDA686FCB10A995F2A6826EE5F54AB36D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_altitudeAngle_m8B963C51BB5DB8A14A943F4B1BEC39B175ABABEB_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_azimuthAngle_m404D73D4BAF6C658A52B29DD2C1D5FBEDC174139_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_twist_mCA0ECFFE48E1771A1540212CABB34326C7AD6B5D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_tilt_m9F3341B8386EF98ECB4AA1F104DE90387DE25AF9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_tilt_m48167AF2DE4D07C779878FBB802ED4995D2176D9_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_penStatus_mFDF49B3339E3F3A01407BE25CA2B3DF2F0E10996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_penStatus_m239C34E387BA4214C671F7F5E521E9840CBF9A89_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_radius_m387840E4830548F1B1DA865A5A062062D86590EC_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_radiusVariance_m2627A414E6EFAE8132E2B4FBAC008D830CF0458D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_modifiers_mB339D7800998DB09F5D8B47B7DDD365897FD61C5_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_button_mBD5A4ADBC9FB28B3D78019091D0279C18AC5F248_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mA8CBDAF2E16927E6952BC60040D56630BCC95B0B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ClickDetector_get_s_DoubleClickTime_mC3981303DF2BC78A33219109765E2EBB183DD1B2_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_clickCount_m1E9AE0EF81D8BC131012E0DEE2C4E169C8B1EE06_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_button_m72275A3B433F9433FAAC939B5776E908CBAC488C_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_PressButton_mBB102F81A0E72F8A7685E31979C1069FAB22C05F (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_ReleaseButton_m37AD62F48C80F0087158DA241DC055703268D494 (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerDeviceState_GetPressedButtons_m4967FF91F44AE300DCDB3F5136823221134666BC (int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pressedButtons_m0B5199481431978AC07CFEAE090907BA5E70FA68_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_origin, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_direction, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_worldRay_m8E3141A725E8C1E6B3F906810995A378E351CF47_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_document_mBF57FD8FA5CDA8228302B2644A0CC582F6122441_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_elementUnderPointer_mC3F0621FA2EB4EBFAF01E784B196FF732B7E7CBF_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenPosition_m8105D500F8CEAFC09EF630F23DC82F096AAAA81D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenDelta_m1C0EDEA11E57C9CD08B6A5862046148C81BF5ACA_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseRuntimePanel_ScreenToPanel_m00326D52E63B0FFA18EB9B80348369B76ABEF845 (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_screenPosition, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_screenDelta, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___2_panelPosition, bool ___3_allowOutside, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_elementTarget_m91A332849B9E0D0AFF3E2D49903AF1616588E494_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* UIDocument_get_rootVisualElement_mA6214AAAA8DE0A4DE36AA35F9A98CF8065ED51E1 (UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementTarget_m739E8E3984E39BAA54EA101AF1B2EA583DC08F85_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 PointerEvent_get_worldRay_m0FBCFCF68610E32B815515962312C5FC68DD44EF_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_GetPanelPosition_m3CB7DAB5EFFD9008B1A371DE9D2BC88484DB9B82 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_pickedElement, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___1_document, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___2_worldRay, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_position_m24E0958379E88BDD173E563CC00B2523E77EE051_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_localPosition_m759E75018F6729AA6744C93A57907ACEB390727C_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerDeviceState_GetPointerDeltaPosition_m9BE1FB23F0681CAC593F807CE36BDD9E23ECC523 (int32_t ___0_pointerId, int32_t ___1_contextType, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___2_newPosition, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_deltaPosition_m12E7B298A9EEDC1D623E72EA99758204F16B4A11_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Transform_get_worldToLocalMatrix_mB633C122A01BCE8E51B10B8B8CB95F580750B3F1 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 VisualElementExtensions_TransformRay_m1C4304EC8A15C45DBDCBD5458D23FBC4D17C6080 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_m, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___1_ray, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElementExtensions_IntersectWorldRay_m740C29041FDCD2D755B56E69AACC849CE9528659 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___1_worldRay, float* ___2_distance, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___3_localPoint, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Addition_m78C0EC70CB66E8DCAC225743D82B268DAEE92067_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_UnregisterCallbacks_mD26ACD360F0C27CFB33A824ADE371742853D66F6 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_RegisterCallbacks_m840C71BFC5351078CB6BE82C8510F596DC55616D (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_set_panel_m840C66DD38B96603B01E8FAA09C74CA1A67E602C (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BaseRuntimePanel_get_sortingPriority_m7B035930943248B472823F7E8128928000002155_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BaseRuntimePanel_get_targetDisplay_mF2B0D9BB8A234F9273185DFAA4EC014E86CEDFD3_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* BaseEventData_get_currentInputModule_mA46B583FC6DAA697F2DAA91A73D14B3E914AF1A5 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, const RuntimeMethod* method) ;
|
|
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScreenOverlayPanelPicker_TryPick_m8600D9B869371DB68AEFB2570846094B293C2A3B (ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, int32_t ___1_pointerId, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_screenPosition, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_delta, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___4_targetDisplay, bool* ___5_captured, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PanelRaycaster_get_selectableGameObject_m26B496BDA7A92AD0C66B4209171B56321308A628 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023, const RuntimeMethod*))List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScreenOverlayPanelPicker__ctor_m1158286C920DDAF8CDE5BAA39457184A9D0F6E5B (ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyOverrideUIToolkitEvents_m7BFAF191C342A20D6B9340F0CFAA153978582450 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyOtherProperties_mAE2DAE5F313A7ECAA69983149018C32B6748FDF2 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayerMask_op_Implicit_m7F5A5B9D079281AC445ED39DEE1FCFA9D795810D (LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___0_mask, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB LayerMask_op_Implicit_m01C8996A2CB2085328B9C33539C43139660D8222 (int32_t ___0_intVal, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_overrideUIToolkitEvents_mC49A797AE660760974A355D7757D64983E145DA2_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_createDefaultPanelComponents_mA5014E718D4717CE3A3C24C1D9D6741ACF08A662_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_shouldTrackPanels_mD5481EE8957FB7E318A21F9B424733C2E421976B (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466 (const RuntimeMethod* method) ;
|
|
inline Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092 List_1_GetEnumerator_mAD32901DADB25DE2B9BD8BA69DBC5CD2BF396465 (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092 (*) (List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m3643ACA7C03387304EFABDD34699EA2D44722C71 (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* Enumerator_get_Current_m171CEB2C6F8B5AAD9B25CC5768D090A42ED70A0C_inline (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* (*) (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_mA6180D596DC7A7426F498A740F22BFA2EBF98E03 (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline void Action_1__ctor_m667EAD9BECFFC8AA30410E6127CE7AA5E4096ED0 (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsRuntimeUtility_add_onCreatePanel_m9FCDF5B5B8A7D2D14B500C09B5FA3C56BBF09A17 (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* ___0_value, const RuntimeMethod* method) ;
|
|
inline bool HashSet_1_Add_mE9606F47EA36C4BB72F4446C792859EE96D2CA30 (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153*, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*, const RuntimeMethod*))HashSet_1_Add_m2CD7657B3459B61DD4BBA47024AC71F7D319658B_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsRuntimeUtility_remove_onCreatePanel_m91E02C7D7E21528EFE8ECECBFB6A7936E8D5FA4B (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* ___0_value, const RuntimeMethod* method) ;
|
|
inline Enumerator_t0AC7335576037404D05612342AE775F7212209AE HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22 (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t0AC7335576037404D05612342AE775F7212209AE (*) (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153*, const RuntimeMethod*))HashSet_1_GetEnumerator_m143B98FEED7E9CABA2C494AB2F04DAD60A504635_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9 (Enumerator_t0AC7335576037404D05612342AE775F7212209AE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t0AC7335576037404D05612342AE775F7212209AE*, const RuntimeMethod*))Enumerator_Dispose_mFB582AEAA2E73F3128B5571197BEDE256A83F657_gshared)(__this, method);
|
|
}
|
|
inline BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_inline (Enumerator_t0AC7335576037404D05612342AE775F7212209AE* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* (*) (Enumerator_t0AC7335576037404D05612342AE775F7212209AE*, const RuntimeMethod*))Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_DestroyPanelGameObject_m32449A03529C966B85F10EBA0045D84585E74875 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61 (Enumerator_t0AC7335576037404D05612342AE775F7212209AE* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t0AC7335576037404D05612342AE775F7212209AE*, const RuntimeMethod*))Enumerator_MoveNext_m27565F5ACCCC75C3DD34CC4CAE3E6AEFEB9144A6_gshared)(__this, method);
|
|
}
|
|
inline void HashSet_1_Clear_mE24BB1D4CFC489B6826BCE96C254947995223650 (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153*, const RuntimeMethod*))HashSet_1_Clear_m75A6528F0B47448EB3B3A05EC379260E9BDFC2DD_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_DestroyWorldSpacePanelGameObject_mBEA05C7CC73D74E1FCFCC2203D2B29111A2D5283 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_CreatePanelGameObject_m66085ED4DCB6419B16E9DBAEAE622BB6CB884E0F (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass37_0__ctor_mCFCE0AB5E35E2C7B68F8CD18E5A66E871C544CE2 (U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Panel_get_name_mA94F3456379C6F6EF228067349CDBE3927BEA8ED (Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m721D643351E55308EA4F5F41B67D5446D11C61F0 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, String_t* ___0_name, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___1_components, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_p, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRuntimePanel_set_selectableGameObject_m0953E1A50CD22B636B0C36895F3B9976E324A833 (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2_set_Item_mBEC1B7D2BFC2805707A8FB6E9373333E6BFAF344 (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_key, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189*, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool Dictionary_2_Remove_m63D3F42B71E15B4CF2B108D3B3A8B462F62595BD (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_key, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189*, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07**, const RuntimeMethod*))Dictionary_2_Remove_m1E94C680E4B769A90F89B234D8FFF451D3230746_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyCameraProperties_m943BD0D793D6EC1AA4F2E6240651E35D69342ACB (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
inline WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* Settings_get_eventCameras_m1F42696F9FB66F7A9984BF3DA154B0C14807706F_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorldDocumentRaycaster_set_camera_m89E90A43F11F9F0E646BB4D1C04D9FFD2EF577E8_inline (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StartTrackingUIToolkitPanels_m0CB9C118D44353A47A868988CB3BF12508FC5A45 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* PanelInputConfiguration_get_current_m13B744D3E766E402A99620D88EDC8838A484701A_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* ___0_input, const RuntimeMethod* method) ;
|
|
inline void Action_1__ctor_mB9077C2E0B1E2DCCA89A5B176B1601234D240802 (Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsRuntimeUtility_RegisterEventSystem_m33E82DDE72D5EDBEFA1B6136E3BA211A90576893 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_eventSystem, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3 (Delegate_t* ___0_source, Delegate_t* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StopTrackingUIToolkitPanels_m3DD30C54A5C20E87B674B1EED52BC47C89930073 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsRuntimeUtility_UnregisterEventSystem_m4022148935EBB10319D90CAAB18B3B15C8D5771E (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_eventSystem, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelGameObjects_m1B2FD16C08812430BAA5F9CB3544EC7B6B27E4C1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 Settings_get_Default_m218C2EEC536685296AC73BA0FF35D9D1864949B6_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 PanelInputConfiguration_get_settings_mBE6F1560B5D64E876D61283A98F5737FFC1DCCD4_inline (PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Settings_get_panelInputRedirection_m3947F9DA2962E61BBC71CE0FD73DA7D7BCF40930_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_processWorldSpaceInput_m9D58443229B696D722269D40E36079E6C82290D9_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB Settings_get_interactionLayers_mBE3C3B439D7CA11F3C00998F95A33B0E22A12081_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Settings_get_maxInteractionDistance_mA010BC20942100B9988FC2588C6BAA822F1D5872_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_autoCreatePanelComponents_mDDD13C30AB87408A47723B1D98BB99A7A3FFEF04_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelTracking_m7F2AD98BB9E49B23170CB7CC113E480F47C300CF (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelGameObject_m8CA11880AF07EE22B1C2A763D50C7D2C4F21A0B8 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_CreateWorldSpacePanelGameObject_m2130D228F926BDE6F4759DF295C3E5C391FE2590 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
inline void HashSet_1__ctor_m7AE9EF5905778DA5ADE989958F9B0BB519E0D15D (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153*, const RuntimeMethod*))HashSet_1__ctor_m9132EE1422BAA45E44B7FFF495F378790D36D90E_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m6AB6D558AE10F5CF8EF8F00E6CC412419B46CE48 (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float UIToolkitInteroperabilityBridge_get_worldPickingMaxDistance_m8DA2161842E394D83D784FD01090EB346A22C32B_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UIToolkitInteroperabilityBridge_get_worldPickingLayers_m3F5DC184A774D4B74A996AC69CF5B53BDB77EEA1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PointerDeviceState_GetCameraWithSoftPointerCapture_m98E12AA39783757ED5FF363A064A8A10F155F7C8 (int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* Camera_get_main_m52C992F18E05355ABB9EEB64A4BF2215E12762DF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsDocumentPicker_TryPickWithCapture_mD7712ED9EC3D5CD944F57E3C16D8550C4E1C029A (PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* __this, int32_t ___0_pointerId, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___1_worldRay, float ___2_maxDistance, int32_t ___3_layerMask, Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76** ___4_collider, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77** ___5_document, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___6_elementUnderPointer, float* ___7_distance, bool* ___8_captured, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* UIDocument_get_containerPanel_m917B0EDBA00E1F0A86DBA66729855453DECC3DD4 (UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m7F3B0FA9256CE368D7636558EFEFC4AB0E1A0F41_inline (float ___0_d, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 Camera_ScreenPointToRay_m2887B9A49880B7AB670C57D66B67D6A6689FE315 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_pos, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsDocumentPicker__ctor_m41801B95CBA7EE5575F7F3C7CB641FC67981D747 (PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData__ctor_m3D5B26D1C8BC7ACDDF16F505CF7AE273B54584FC (AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_selected, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_pointer, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_displayIndex_mCEBCECBC08CCF4D1770189B0992B8A1847A8137D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_tangentialPressure_m66792087B044033F0FF0FA4B2BA316233755EEF4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_twist_mE49469F4F730BA43906F2167E7ADDB9CB2F946E4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_tilt_m51D7B90D6C480D7C39217BCBADBBE544D722B034_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_penStatus_m875854DF53437651CADFA190BCE3ED14FF4D65BD_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m0B9EDFBA95B410FBD8CA2A82306ED3EA6696AE64_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88 (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_m3ED1F39E71630C9AB1F340C92F8FA39AA489E1C5_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428 (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_displayIndex_m8B2088561EA850F1CAD124797F0F6E3756F584FA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972 (float* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m4A71C17E55302D2FAE1A3E68F9B2131829FA80DB_inline (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* List_1_get_Item_mC6D8545B680879430E005FFA6A71DCAD4902E1C1 (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t List_1_IndexOf_mD395CBA5E8CAB522E8F3E3061877AAE555E0A21F (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*, const RuntimeMethod*))List_1_IndexOf_m378F61BA812B79DEE58D86FE8AA9F20E3FC7D85F_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_RemoveAt_mEA22AF56005A449E102C00710F3307753D35D1F6 (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_Insert_m959EF5351B9F819545562751FCC8227B11E22AD8 (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, int32_t ___0_index, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, int32_t, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*, const RuntimeMethod*))List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m5D05D99F085C71FEEE22BD4A1C168E4EBE86ECE3 (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge__ctor_m0302BF67105A11A4F0CC6FC655EBB48CF6B07B70 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
inline void Component_GetComponents_TisBaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1_m861F588C20A9C5F4587028C0423B36D39726E4C5 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* ___0_results, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*, const RuntimeMethod*))Component_GetComponents_TisRuntimeObject_m2CD12FB45EFC625510F7E12FE2EB7D0EC2BA4421_gshared)(__this, ___0_results, method);
|
|
}
|
|
inline int32_t List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_inline (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6 (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* (*) (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_exists, const RuntimeMethod* method) ;
|
|
inline void List_1_RemoveAt_m23DAE9F6384DC4628548353457630B4F80EDDE55 (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ExecuteEvents_get_deselectHandler_m9CDD5F8B5269067CA38247DDD41B521A8FCEDFEF_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_mF5887E085CDF21C7E46BCDEDDFAE8DAB8D6B2308 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ExecuteEvents_get_selectHandler_mCF588328D11715E24BC54DF464EF4F3D694B3939_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m3F0363F6627EF6ECECB5439840122565E3A3086B (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* EventSystem_get_baseEventDataCache_mF9AFC01C9D2B055F0816F6EEA2CC0011F1D82B7F (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingLayer_GetLayerValueFromID_mEB8A5234102CD7B2C6158661A931EA120A38707C (int32_t ___0_id, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* BaseRaycaster_get_rootRaycaster_m63E20D85A8B9867AC196768924F8BE579668BF28 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F (float* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingGroup_get_invalidSortingGroupID_mEA453186185B225FA2410988959180BAEC604310 (const RuntimeMethod* method) ;
|
|
inline void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* RaycasterManager_GetRaycasters_m876BA9CA8DB8E6D351DC4A97473753503B7017DE_inline (const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_mBD9E514AE38BF6A31BE2054355A0ACC6003F6FFE_inline (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* List_1_get_Item_m709A412335F9ACB6D852EE8D7B26AFE787895DCB (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC*, const RuntimeMethod*))List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC_gshared)(__this, ___0_comparison, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_m238732B4FDEA343976D798FF04DB34C3221243C2 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
inline void Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4*, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88, const RuntimeMethod*))Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC_gshared)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_overrideUIToolkitEvents_m021BC8EE329FA085B43E7AEDD17B44060F84FB3C (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_handlerTypes_m99979539D1EEBF4106C30869CEB71CFC52305A53 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m0F2953840C66949A6A45D89F9F41A47E323D4234_inline (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline bool Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_inline (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4*, const RuntimeMethod*))Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_gshared_inline)(__this, method);
|
|
}
|
|
inline UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9 (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 (*) (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4*, const RuntimeMethod*))Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_eventSystem_m386E6928C376FC25E2305B8624B84CE8D3513692 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_OnEnable_m3A6AE6F9BB30CFA55AE64E6BBF250BD64DFD7CE2 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_OnDisable_m93C0737D0C6CC93FF4983EB5D486C1EA2CB8FB86 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
inline bool List_1_Remove_m91D8F452D34DDF91A3A4DD18784AD6E48934F2AB (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Start_mB12643ED6D859CD3682B4BF5B9CA7F72E8A72B45 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Start_m37A5CB2B2F2901FD900B5E804F20113E443F579A (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_TickModules_mD3F159C0C33396BEB5789B633065005DE771028C (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Update_m38B3898B262BF45D2C9ECA5D236C3B603C5B3F2E (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_ChangeEventModule_m18F27ADCD2CF6656D771CB0413B7B4D768D38181 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* ___0_module, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m6A7DBF9210C6D1591760F3FD77E2B765747817B6 (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Comparison_1__ctor_mB0FAEA6338392B1FCA83DB09FCA47090BA250E0F (Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mB0FAEA6338392B1FCA83DB09FCA47090BA250E0F_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* EventTrigger_get_triggers_m2361511923086BCD40339097448A70AFB22C4647 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_m5F861F79BBA48C26CFB83BEA7E25580B21BDA815_inline (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m7A9119D875AEFEC730410862ACAA4BA3A6EEC5FA (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline Entry_t9B34433095405244EBB2447BBED208AF12286913* List_1_get_Item_m73B6BE2E5D532A5B54C1CFD22C6ED462A13C9DBA (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Entry_t9B34433095405244EBB2447BBED208AF12286913* (*) (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void UnityEvent_1_Invoke_m2F130A58B680EA53FDE956184090404B10BF647C (UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, const RuntimeMethod*))UnityEvent_1_Invoke_m6CDC8B0639CE8935E2E13D10B2C8E500968130B6_gshared)(__this, ___0_arg0, method);
|
|
}
|
|
inline int32_t List_1_get_Count_mF7BDF732F24313E73AD5BD2E4A32C7ECD657F7E2_inline (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, int32_t ___0_id, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1__ctor_mB475FD6BA1C41D56BD02E661756F1A8FBC703BA7 (UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tF9BBD6DC0D3D492C046AA6007435AFB6C08E1FD7*, const RuntimeMethod*))UnityEvent_1__ctor_m8D77F4F05F69D0E52E8A445322811EEC25987525_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerEvent__ctor_mBC60D36344FFB96FBE826D229CE25D4C25E08440 (TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* __this, const RuntimeMethod* method) ;
|
|
inline PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* (*) (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, const RuntimeMethod*))ExecuteEvents_ValidateEventData_TisRuntimeObject_m040536F76D700E5860C5D98D6E18BFF2C412ADCB_gshared)(___0_data, method);
|
|
}
|
|
inline AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ExecuteEvents_ValidateEventData_TisAxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_m80BB1F8ADE71FB047EC89D250431CE4090A8C37B (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
return (( AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* (*) (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, const RuntimeMethod*))ExecuteEvents_ValidateEventData_TisRuntimeObject_m040536F76D700E5860C5D98D6E18BFF2C412ADCB_gshared)(___0_data, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
inline void EventFunction_1__ctor_m8615BFB2F6FF095B997D9ACCB86E0EBE59936519 (EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m8F063442EA496629C6DD529DEBF42184A383823B (EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mBE775DB34C4325716972DD3717D60CE6132E2BC5 (EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m0887DD7CC2DE94DD5A8B5B8E7B1BA53DB6993C8C (EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m69F33B3515BC502485229E46A3D8D7B541B9B23E (EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mD9E103F30CD9D6E4EABBE1B2FDD28F9BC42BF74C (EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mB0E900EDF30BE8FE91220795A62A4DAE3D3E27A6 (EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m8863B1C775BC7CA4955C97D0D3A8ABFA5F1AE8B2 (EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mBDAF7D35F27B0F590CFD94DCF3CD8088620598F5 (EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m9DC416A4819AEB7B3441CE52CF9298EFFA3ACE47 (EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mD117CE829AD4C6B3879680E8C2E415C1454BE6ED (EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mB603A79374B5BC861255E37B443D7EC122E24F7F (EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_mD7AA369611F2B35A72D72FA81AB1D6E33AFE3334 (EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m6F84DC7E9838A5FBF70C102868EEAB462E0ACFE4 (EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m43D4F0848F0914B452DB24F5A1DC08421A96E266 (EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m8F66D9647856871DA7BD78F313198EC19D2609E4 (EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m0B16B0B2CB59B5BBF3FF8C900B510DC04734124F (EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void EventFunction_1__ctor_m4421FC2C41053E59F7483CB694162F07F57EEE99 (EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventFunction_1__ctor_m8527E59AE02A1117319F24ADABBF52E2FE8EA368_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void List_1__ctor_mAB2DFCA15E16B709BBB33F98CB44C37E6E880973 (List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Input_get_compositionString_mC9E603E4FB61090827F77A3D509BF3AA0A48C9A9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Input_get_imeCompositionMode_mAD9C0224B3845A9132D4265AF468FF203AA43BAC (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Input_set_imeCompositionMode_m0399964447DDFE54E04F516A01696862F7174C9A (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Input_get_compositionCursorPos_mE1E48997CA0C30D206D08FAF06455123D8D24D15 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Input_set_compositionCursorPos_m16A856BFBF1DAE42B0089696906F530334861E98 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_get_mousePresent_mAD77FFD987CD5B998AFAD4DAECADBC76034026BF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButtonDown_m8DFC792D15FFF15D311614D5CC6C5D055E5A1DE3 (int32_t ___0_button, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButtonUp_mBE89CC9C69BBEA9A863819E77EA54411B0476ED6 (int32_t ___0_button, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetMouseButton_m4995DD4A2D4F916565C1B1B5AAF7DF17C126B3EA (int32_t ___0_button, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Input_get_mousePosition_mFF21FBD2647DAE2A23BD4C45571CA95D05A0A42C (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Input_get_mouseScrollDelta_mD112408E9182AA0F529179FF31E21D8DCD5CFA74 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_get_touchSupported_m2A4FA398A793861AE1BC5971A1363552AB33BEEF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Input_get_touchCount_m057388BFC67A0F4CA53764B1022867ED81D01E39 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t03E51455ED508492B3F278903A0114FA0E87B417 Input_GetTouch_m75D99FE801A94279874FA8DC6B6ADAD35F5123B1 (int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Input_GetAxisRaw_m47C0CF8E090561A2F407A4E11D5F2A45044EB8E4 (String_t* ___0_axisName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetButtonDown_mEF5F80C9E8F04104E807D9CBD6F70CDB98751579 (String_t* ___0_buttonName, const RuntimeMethod* method) ;
|
|
inline BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* Component_GetComponents_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m848C2D9953D650A43288700EC75E98A9D9ACDC64 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponents_TisRuntimeObject_m35447B0B07F9C06A1AF846E482EC6FEB09D2436F_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
inline BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* GameObject_AddComponent_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m806BCC6ECD5CDF3BFD70F97C11B2B60215D82C2F (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
|
|
}
|
|
inline EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* Component_GetComponent_TisEventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_mC0057F51AC54461AE48825268F70602D751EC73E (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_UpdateModules_m2D91F02D546D50094DDB25BF0228A987E2EAFF91 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline)(__this, method);
|
|
}
|
|
inline RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, int32_t, const RuntimeMethod*))List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_m6461EE20A0418E30EFA13CD293A2B0E7A95DBA54 (float ___0_x, float ___1_y, float ___2_deadZone, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_inline (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_fullyExited_mDC23BED1E8A933E25E955A25109494A5D9F25C74_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979 (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
inline void List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseInputModule_FindCommonRoot_mBCC0541CA6E2BCFF051B90FE34F4F00C28CDFA10 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_g1, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_g2, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* GameObject_GetComponentInParent_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m33A2601C5D3E027755778845E48FC5851FF1AEF8 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponentInParent_TisRuntimeObject_mDD9FD68B12361AC472D4A83310CAD793C02C6654_gshared)(__this, method);
|
|
}
|
|
inline bool List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485 (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_reentered_mE363C3D307806C3FF87DF730C14E82AF68A96D8A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_reentered_m8B88B2F3A8C9FBBE878B458560F5BFF2D7DD142B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ExecuteEvents_get_pointerEnterHandler_m9F921E3357CE38A925DF20E9CD94B4C3AEE9AE48_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m5FD94CEC31E280672B5C9C6095BD3B6235B9C70D (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
inline void List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_inline (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline RuntimeObject* GameObject_GetComponent_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m96F8E3A7752C3E8D7D05BB9998F71D144A39E60C (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData__ctor_mD9AFBD293F84F7032BAC2BDCB47FF5A780418CC5 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Behaviour_get_enabled_mAAC9F15E9EBF552217A5AE2681589CC0BFA300C1 (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeInHierarchy_m49250F4F168DCC5388D5BE4F6A5681386907B109 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, const RuntimeMethod*))List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mCB659CC4F3197065FE376188D414B1985C1F02EB (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, int32_t ___0_key, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, int32_t, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB**, const RuntimeMethod*))Dictionary_2_TryGetValue_m7316301B8CF47FB538886B229B2749EC160B9D5C_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2_Add_m305891EF95C72E701559AF35E8FEC63AB6F60FE3 (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, int32_t ___0_key, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, int32_t, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, const RuntimeMethod*))Dictionary_2_Add_mAF1EF7DA16BD70E252EA5C4B0F74DE519A02CBCD_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool Dictionary_2_Remove_m0F563590CD7E2B91C7AC405B31C0C514C03EFB27 (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, int32_t, const RuntimeMethod*))Dictionary_2_Remove_m12BAB2F82E34CAA21A7245AB61E48F106340C1A4_gshared)(__this, ___0_key, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_id, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** ___1_data, bool ___2_create, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_raycastResults, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 BaseInputModule_FindFirstRaycast_mE07BDA14A7C9A8E3DFBFDAF449E5896597C9F6F5 (List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___0_candidates, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_one_m9097EB8DC23C26118A591AF16702796C3EF51DFB_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cursor_get_lockState_m9AD145AFB215DFEDA0074AC1F129EF02CCE5B632 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_CopyFromTo_m4302FE47F12B3B8C59A3790BD0ADF2BFAAEA9BFD (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_from, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_to, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerInputModule_StateForMouseButton_mED5B48F98F706160F97A26511FB82BD84DBAB0CF (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_buttonId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState_SetButtonState_m72DA468C8D10E76923FA5F993BBDBCFFF57E4326 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, int32_t ___0_button, int32_t ___1_stateForMouseButton, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___2_data, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_currentPointerData, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_newEnterTarget, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_ShouldStartDrag_m6260055DEAD5E28183E338BDA53C7F8A0521EC6B (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_pressPos, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_currentPos, float ___2_threshold, bool ___3_useDragThreshold, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ExecuteEvents_get_beginDragHandler_mB0BEAC09E4A8F31438B07FE68A5BF7267FF8C2FC_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m1543843C77436B385445DCDE0E472112C8E40F87 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ExecuteEvents_get_dragHandler_m9193926B9685C80C0560C2E105FF6150C4EAE507_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_mAE71323F63A667FE0A4F8B9B0E27C6012B28FFE8 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* PointerInputModule_GetLastPointerEventData_m6355023718EB2DCF6D9C226A57B63B70CCEECAB4 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_id, const RuntimeMethod* method) ;
|
|
inline ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41* Dictionary_2_get_Values_m3B581D1E2D9D47BCC3513DC77CC6C6F8718F13DC (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41* (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, const RuntimeMethod*))Dictionary_2_get_Values_mC5B06C3C3FA89D62D6035C5B4C5E64A08FCF4DB9_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294 ValueCollection_GetEnumerator_m0124B7611A2B03F480EB52872F7A1B24F0CA6EDC (ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294 (*) (ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41*, const RuntimeMethod*))ValueCollection_GetEnumerator_mDC2BD0AFDA087B7E7C23A8077E612664DFA8A152_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m9FC32AA198E53E701EEAF271527A221A8F363A86 (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294*, const RuntimeMethod*))Enumerator_Dispose_m0647C4F434347E47D544621901E49835DF51F22B_gshared)(__this, method);
|
|
}
|
|
inline PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* Enumerator_get_Current_m8515E9D5662F47A89C296550439BBD4DA548AE6A_inline (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* (*) (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294*, const RuntimeMethod*))Enumerator_get_Current_m1412A508E37D95E08FB60E8976FB75714BE934C1_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_mA415C7B94AC3728AFA7791318E9210FC5EEFAB58 (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294*, const RuntimeMethod*))Enumerator_MoveNext_mF45CB0E0D7475963B61017A024634F60CF48548A_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2_Clear_mBB95A511CAA4D6BCF1D6EC54722BCA4DA4B37CF9 (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, const RuntimeMethod*))Dictionary_2_Clear_mE1EFF7C68491EE07D21EE9924475A559BF0A4773_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
inline Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034 (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m3F1620145BA0815B7C7CD648EF054558AA26556A_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714 (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E*, const RuntimeMethod*))Enumerator_Dispose_mAECCBE12C0427D7ACF88F82FA266F1AE37402565_gshared)(__this, method);
|
|
}
|
|
inline KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_inline (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 (*) (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E*, const RuntimeMethod*))Enumerator_get_Current_m90160D324DA0D9F5624A345F47D8E226A118911A_gshared_inline)(__this, method);
|
|
}
|
|
inline PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_inline (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* (*) (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296*, const RuntimeMethod*))KeyValuePair_2_get_Value_m8508BCECB0654E2E93B1A141382E2688ADE7EE7C_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t KeyValuePair_2_get_Key_mB0B90B98092517427782C4EE347F7B8C1D24D0D8_inline (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296*, const RuntimeMethod*))KeyValuePair_2_get_Key_mF0E6A8A455FA71BC8EA94E39C8848FB35A836841_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150 (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E*, const RuntimeMethod*))Enumerator_MoveNext_m4DC143BC57F14EDD85AB13B6D6F3B5D0E319B30E_gshared)(__this, method);
|
|
}
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m52B7AEEF7C492E4D682E977FFEC06325F230EE50 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m86588AD6FDDC9670CE26E5111D23F49B821330C5_gshared)(___0_root, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m1D9661C57D08A16BB4A93388888AA1FFAB621320 (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*, const RuntimeMethod*))Dictionary_2__ctor_m92E9AB321FBD7147CA109C822D99C8B0610C27B7_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState__ctor_mF4A8041A86E50D91202770E73CE0DAF12BB207D9 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule__ctor_m88DDBBE7BC4BB7170F5F8F00A0C9E2EC6328B819 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_inline (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24 (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* (*) (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_ReleasedThisFrame_m5AD4F06D1CA6E0ACD6E84EEFAD4FB112098AFD51 (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_m2210A465432D0F990F2380B6357AD2FBA4A7540D_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState__ctor_m4D7C25C0E1FC598646FFBD436B9A2042DB41AC9E (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ButtonState_set_button_mFAE3F16E2B027BD6B854F18E7C7C2D6CDAB023DE_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonEventData__ctor_m9EDAC7F39F1D3CFBB93403DDE620A5147C4469A2 (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ButtonState_set_eventData_mA9D59CB9A1565A7D99569E87D88B90738FEF4E1F_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___0_value, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m0BDDD3FAAF7827914A1A2A6A7D24CFA755C8E1E0_inline (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* __this, ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3*, ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, int32_t ___0_button, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m4E26266DF028F44B765A8CB0C5DA32AA2C04B209 (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule__ctor_mBF074492478BFC24F87EF2C941D6C11A8ACDAF11 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m423AA5752E528E3B32F105EE2B341FCF5E9F8285 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ReleaseMouse_mC5C3083C356ACD5CD420A58662D99A6CACC5FAF5 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_currentOverGo, const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m86588AD6FDDC9670CE26E5111D23F49B821330C5_gshared)(___0_root, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03_inline (const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ___2_callbackFunction, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m47C22A77611C31042CA566EE345A4A1017A40A65_gshared)(___0_root, ___1_eventData, ___2_callbackFunction, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_ShouldActivateModule_m51B70F9097EF7FEB20B62D4D775F7FEA853185A1 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_ActivateModule_m2C693E95727E13FDF06D54FA8762A040175AC3BA (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_firstSelectedGameObject_m15FB056EE7A99D8DD5891D40A6E3EF18719F0553_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_DeactivateModule_mAE698307DADBE4DE8A26BD3DE5F3F7E3D75B385D (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ClearSelection_mC5852667E5B9CA97C2A4CAB3D7C907344511C1D2 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendUpdateEventToSelectedObject_mE1C4AEB5B19378C2BF97DD3EAF4AA9C0EC5E7520 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ProcessTouchEvents_m042FC6B13874B1EE6699BBB51F02FE3A435A25F0 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_mCE1BA96E47D9A4448614CB9DAF5A406754F655DD (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendMoveEventToSelectedObject_mC71D1E623B1DB82DC4E035277AC5FFA7CD64E981 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendSubmitEventToSelectedObject_m7121ACC09ABA46FF5CDDEAE7B26507BE06A2953F (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745 (Touch_t03E51455ED508492B3F278903A0114FA0E87B417* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* PointerInputModule_GetTouchPointerEventData_m55EBA8BD04214AAD8E98B9109D44610496A5B2E1 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, Touch_t03E51455ED508492B3F278903A0114FA0E87B417 ___0_input, bool* ___1_pressed, bool* ___2_released, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessTouchPress_mD72A0807626DA04E47313F9553249DD4A32625E3 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, bool ___1_pressed, bool ___2_released, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_RemovePointerData_m012713A1B4511855549793D6BA2B7998134B1BE9 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_data, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_DeselectIfSelectionChanged_m8F111DD2317E33C4F0498F651BC52BD5C984A95B (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_currentOverGo, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_pointerEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF_inline (const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ___2_callbackFunction, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m47C22A77611C31042CA566EE345A4A1017A40A65_gshared)(___0_root, ___1_eventData, ___2_callbackFunction, method);
|
|
}
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m86588AD6FDDC9670CE26E5111D23F49B821330C5_gshared)(___0_root, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ___2_callbackFunction, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m47C22A77611C31042CA566EE345A4A1017A40A65_gshared)(___0_root, ___1_eventData, ___2_callbackFunction, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ExecuteEvents_get_submitHandler_mDCAAA40F0F6AEA385B375C1839B4DC37E5FC4A7A_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_mA153EBDD6059AC5FF4C3ADD0A0628D816CD112CC (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ExecuteEvents_get_cancelHandler_mBCDFD10C95FC2BBC5DC5A512FEA1BBEECC2DAE12_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m6BCE3E1FAE7620DC9F22722FA5CCE5AB35BAA5B0 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 StandaloneInputModule_GetRawMoveVector_mFF583B1720780B7D8D2DD3248F947ED8D855610B (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_Dot_mC1E68FDB4FB462A279A303C043B8FD0AC11C8458_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mC8E219BB19708AC67C202C860DF2E6D08C29B8B9_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ExecuteEvents_get_moveHandler_mF717824AB0018BBED3C2DF3C67486E3B2B3836D2_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m77205DFCC4110B95CC241F556BE89F612EFFD2CA (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m8A8214EB9286BA31C18F515BCC3349DF740B2BBA (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, int32_t ___0_id, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMousePress_m24665E707FEF5C80719847D62A8A8AEABE27C6C5 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___0_data, const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m3BFE4214B6075DAE2F291E508DC912DC72262D2E (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))ExecuteEvents_GetEventHandler_TisRuntimeObject_m86588AD6FDDC9670CE26E5111D23F49B821330C5_gshared)(___0_root, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ExecuteEvents_get_scrollHandler_m51E902070611D3F81AD5F1F5762AE2C48E84AFE2_inline (const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m764A9EE16005FFF9BB7A28EF762E6EB9CFDDA7B9 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ___2_callbackFunction, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65*, const RuntimeMethod*))ExecuteEvents_ExecuteHierarchy_TisRuntimeObject_m47C22A77611C31042CA566EE345A4A1017A40A65_gshared)(___0_root, ___1_eventData, ___2_callbackFunction, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ExecuteEvents_get_updateSelectedHandler_m8AF7543437082AD4F5690AAA77F2623AE28C3D09_inline (const RuntimeMethod* method) ;
|
|
inline bool ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m8AFB13536731ABE80F6AE964DA907EE6B27F055E (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_target, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ___2_functor, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*, EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678*, const RuntimeMethod*))ExecuteEvents_Execute_TisRuntimeObject_mDC4455B743BE4A6BA46DD741D0E0AB150FF1209A_gshared)(___0_target, ___1_eventData, ___2_functor, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m7200F7B6C80EDD69987615B8356B6B2497461FCA_inline (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_FakeTouches_m264BF2C70234CD04B0162FE4CED673B1A77A84F9 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchEvents_mBB28D85996F6280141E39A462BC35EF01373E514 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchPress_m1DC51E52E6B419F02626EB567A60411A0FCFA517 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, bool ___1_pressed, bool ___2_released, const RuntimeMethod* method) ;
|
|
inline String_t* KeyValuePair_2_ToString_m5F8161F26E20B830F794E3C0B87C0570D011D4AD (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296*, const RuntimeMethod*))KeyValuePair_2_ToString_mCCDA8E0F389BAA2675BC9C032158839E073A7A37_gshared)(__this, method);
|
|
}
|
|
inline bool List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_Add_m82AF5EAB1EA13F21CE5250B008E4EBCFEDAB6D53_inline (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline bool List_1_Remove_m585A9E471D1C60EE46BA224A58947647F1E2B83B (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1__ctor_m53B48CB7A08406A33847E0C3D9D7511DE8FB0D41 (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* Component_GetComponentsInParent_TisBaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832_mA869CA05E07609C8F435F1D779B138F3F2425F8C (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponentsInParent_TisRuntimeObject_m161F08219ECBE099E346F616990662F0117D4C8E_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_AddRaycaster_mD2EE52F55FBDB3BEAAF583C4445D4D16B09B6350 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_baseRaycaster, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_RemoveRaycasters_m0800E0ACE007AD43B62D10C1029EC85E7DE28999 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_baseRaycaster, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasHierarchyChanged_mCAC018CB33FA00E857288B64E3722226638A1229 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnTransformParentChanged_mAD56D3C6049A1746F00DC2643D1666F7DE921384 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster__ctor_mB7D4BAC26DC219A10060B35498EE9D5F05AD0E80 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsRaycaster_ComputeRayAndDistance_mCFEFA9D83EC1E63393454E383FFFEF89E14C173B (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* ___1_ray, int32_t* ___2_eventDisplayIndex, float* ___3_distanceToClipPlane, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_mA06D0B5E291BCF94AE1EF4ED7B68890F39395911_inline (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* GetRayIntersectionAllCallback_Invoke_m917AA4108EBDC724AFEF39BFD06A586B7461F497_inline (GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, float ___1_f, int32_t ___2_i, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GetRayIntersectionAllNonAllocCallback_Invoke_mFAA36E9AF362DC72204EEF53B28DBFC3367D09A7_inline (GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___1_results, float ___2_f, int32_t ___3_i, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
|
inline Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* GameObject_GetComponent_TisRenderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF_m026EB44DB6238F13E2AFBECF1FBBE924CB1B040A (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2 (RaycastHit2D_t3EAAA06E6603C6BC61AC1291DD881C5C1E23BDFA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingGroupID_m1DEFE39027236FF31AB603993BBC13C072E52118 (Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingGroupOrder_m40F058B3AFC92CCEF2475E0BD9A96464154E999E (Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingLayerID_m3D7AE74F1B87099810CF969CB4520C85F9AE5F92 (Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Renderer_get_sortingOrder_m4CE7ADEEC8E2F28CC1D10B1D4091A10F8F1583FA (Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* SortingGroup_GetSortingGroupByIndex_mC4CFB06D8C4B0EA27FC4BDC60AA05F4E0B28426B (int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Dot_mBB86BB940AA0A32FA7D3C02AC42E5BC7095A5D52_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingGroup_get_sortingLayerID_m37C70CEA78DA6E28F405C67EDE95D5C2191F0055 (SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortingGroup_get_sortingOrder_mC80606E6BB9A6D5E3AB61A0451C48203A0C1AB6A (SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* __this, const RuntimeMethod* method) ;
|
|
inline Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 MultipleDisplayUtilities_RelativeMouseAtScaled_m80E65BE9255F7D65D9341FDFDB0CA11470703E71 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, int32_t ___1_displayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D Camera_get_pixelRect_m5F40F5C324EB252261F66962411EE08CC4BE39E7 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_point, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013 (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* RaycastAllCallback_Invoke_mB30319766AF5F0D5145A6C0AFFEA829A31A5D4B7_inline (RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, float ___1_f, int32_t ___2_i, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GetRaycastNonAllocCallback_Invoke_m36411365E9622819DAB93D0BB0F169FEE99F07D9_inline (GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___1_results, float ___2_f, int32_t ___3_i, const RuntimeMethod* method) ;
|
|
inline void Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* RaycastHit_get_collider_m84B160439BBEAB6D9E94B799F720E25C9E2D444D (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 RaycastHit_get_normal_mD8741B70D2039C5CAFC4368D4CE59D89562040B5 (RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_mAB0536EE515BF2BD1B29BE3B39E8BA9E9CFE97C3 (RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_Clear_m0E9DA70AC69CF143CEA8428AFC5BA552F99643AE (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___0_r, uint8_t ___1_g, uint8_t ___2_b, uint8_t ___3_a, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method) ;
|
|
inline void List_1_AddWithResize_mF091C3389B6DBF0F71F3A9FF11377F0019784849 (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A*, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207, const RuntimeMethod*))List_1_AddWithResize_mF091C3389B6DBF0F71F3A9FF11377F0019784849_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m6B403207DC8AC640C29234B59D769B244BA3666C (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8292C421BBB00D7661DC07462822936152BAB446*, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023, const RuntimeMethod*))List_1_AddWithResize_m6B403207DC8AC640C29234B59D769B244BA3666C_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE (float* __this, String_t* ___0_format, RuntimeObject* ___1_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68260
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow__ctor_mDE7F89B477692F7FF0CCE6B8CE01A63D9942291E (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:14>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (0.0f), (0.0f), (0.0f), (0.5f), NULL);
|
|
__this->___m_EffectColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:17>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_1), (1.0f), (-1.0f), NULL);
|
|
__this->___m_EffectDistance = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:20>
|
|
__this->___m_UseGraphicAlpha = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:24>
|
|
BaseMeshEffect__ctor_mFFF23FD89B32150DAC512C556A1CCF563D062427(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:25>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68261
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Shadow_get_effectColor_m6E7751BB8792C85BE9DAD0D133D787317D9CF59B (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:40>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_EffectColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68262
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_set_effectColor_mCCC5DB6B7D09C5DEE0C677DEB3B9B0C578F05AF1 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:43>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_value;
|
|
__this->___m_EffectColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:44>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_1;
|
|
L_1 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:45>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_3;
|
|
L_3 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(28, L_3);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:46>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68263
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Shadow_get_effectDistance_mA87EB50066AFEBC13C69D27376E50033930FA58F (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:54>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_EffectDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68264
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_set_effectDistance_m5E7B565C41CF2A8C84EC98319ACBF5C8E1FE47DA (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:57>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
float L_1 = L_0.___x;
|
|
if ((!(((float)L_1) > ((float)(600.0f)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:58>
|
|
(&___0_value)->___x = (600.0f);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:59>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_value;
|
|
float L_3 = L_2.___x;
|
|
if ((!(((float)L_3) < ((float)(-600.0f)))))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:60>
|
|
(&___0_value)->___x = (-600.0f);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:62>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_value;
|
|
float L_5 = L_4.___y;
|
|
if ((!(((float)L_5) > ((float)(600.0f)))))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:63>
|
|
(&___0_value)->___y = (600.0f);
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:64>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___0_value;
|
|
float L_7 = L_6.___y;
|
|
if ((!(((float)L_7) < ((float)(-600.0f)))))
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:65>
|
|
(&___0_value)->___y = (-600.0f);
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:67>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = __this->___m_EffectDistance;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = ___0_value;
|
|
bool L_10;
|
|
L_10 = Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline(L_8, L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:68>
|
|
return;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:70>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = ___0_value;
|
|
__this->___m_EffectDistance = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:72>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_12;
|
|
L_12 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_13;
|
|
L_13 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_12, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:73>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_14;
|
|
L_14 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
NullCheck(L_14);
|
|
VirtualActionInvoker0::Invoke(28, L_14);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:74>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68265
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Shadow_get_useGraphicAlpha_mD2A88F78B7B2E25905D1750788B0DFA3082AC616 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:82>
|
|
bool L_0 = __this->___m_UseGraphicAlpha;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68266
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_set_useGraphicAlpha_m70CCAE5D643B2373A5ADC8BD04031D3CBF0AF722 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:85>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_UseGraphicAlpha = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:86>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_1;
|
|
L_1 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:87>
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* L_3;
|
|
L_3 = BaseMeshEffect_get_graphic_mE8226BAC46FDB49681BEAD2DE8A4EE3CEC18FF04(__this, NULL);
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(28, L_3);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:88>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68267
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_ApplyShadowZeroAlloc_m010AE345D731FC53595A62CF8D0B401C2D6F4B58 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_verts, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_color, int32_t ___2_start, int32_t ___3_end, float ___4_x, float ___5_y, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:95>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_0 = ___0_verts;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_inline(L_0, List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_RuntimeMethod_var);
|
|
int32_t L_2 = ___3_end;
|
|
int32_t L_3 = ___2_start;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_1, L_2)), L_3));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:96>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_4 = ___0_verts;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96(L_4, List_1_get_Capacity_m56718A2202E1BCBA0CDB1E01212A939E9E3D1D96_RuntimeMethod_var);
|
|
int32_t L_6 = V_1;
|
|
if ((((int32_t)L_5) >= ((int32_t)L_6)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:97>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_7 = ___0_verts;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9(L_7, L_8, List_1_set_Capacity_mC3FD70CD503957447E9C3F0504B2B962822383A9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:99>
|
|
int32_t L_9 = ___2_start;
|
|
V_2 = L_9;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:101>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_10 = ___0_verts;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_12;
|
|
L_12 = List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67(L_10, L_11, List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_RuntimeMethod_var);
|
|
V_0 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:102>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_13 = ___0_verts;
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_14 = V_0;
|
|
NullCheck(L_13);
|
|
List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_inline(L_13, L_14, List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:104>
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_15 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = L_15.___position;
|
|
V_3 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:105>
|
|
float* L_17 = (float*)(&(&V_3)->___x);
|
|
float* L_18 = L_17;
|
|
float L_19 = *((float*)L_18);
|
|
float L_20 = ___4_x;
|
|
*((float*)L_18) = (float)((float)il2cpp_codegen_add(L_19, L_20));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:106>
|
|
float* L_21 = (float*)(&(&V_3)->___y);
|
|
float* L_22 = L_21;
|
|
float L_23 = *((float*)L_22);
|
|
float L_24 = ___5_y;
|
|
*((float*)L_22) = (float)((float)il2cpp_codegen_add(L_23, L_24));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:107>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = V_3;
|
|
(&V_0)->___position = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:108>
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_26 = ___1_color;
|
|
V_4 = L_26;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:109>
|
|
bool L_27 = __this->___m_UseGraphicAlpha;
|
|
if (!L_27)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:110>
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_28 = V_4;
|
|
uint8_t L_29 = L_28.___a;
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_30 = ___0_verts;
|
|
int32_t L_31 = V_2;
|
|
NullCheck(L_30);
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_32;
|
|
L_32 = List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67(L_30, L_31, List_1_get_Item_m818C7E5E5F73749A39FB30DDDD55D00EDC565C67_RuntimeMethod_var);
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_33 = L_32.___color;
|
|
uint8_t L_34 = L_33.___a;
|
|
(&V_4)->___a = (uint8_t)((int32_t)(uint8_t)((int32_t)(((int32_t)il2cpp_codegen_multiply((int32_t)L_29, (int32_t)L_34))/((int32_t)255))));
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:111>
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_35 = V_4;
|
|
(&V_0)->___color = L_35;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:112>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_36 = ___0_verts;
|
|
int32_t L_37 = V_2;
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_38 = V_0;
|
|
NullCheck(L_36);
|
|
List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33(L_36, L_37, L_38, List_1_set_Item_m0C5B60C5566C63D5E3E979D8EF02D5DF8D92AB33_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:99>
|
|
int32_t L_39 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:99>
|
|
int32_t L_40 = V_2;
|
|
int32_t L_41 = ___3_end;
|
|
if ((((int32_t)L_40) < ((int32_t)L_41)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:114>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68268
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_ApplyShadow_mB615BBD368431C63B1407CAFD7DD32BE023E543E (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* ___0_verts, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_color, int32_t ___2_start, int32_t ___3_end, float ___4_x, float ___5_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:127>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_0 = ___0_verts;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_1 = ___1_color;
|
|
int32_t L_2 = ___2_start;
|
|
int32_t L_3 = ___3_end;
|
|
float L_4 = ___4_x;
|
|
float L_5 = ___5_y;
|
|
Shadow_ApplyShadowZeroAlloc_m010AE345D731FC53595A62CF8D0B401C2D6F4B58(__this, L_0, L_1, L_2, L_3, L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:128>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68269
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shadow_ModifyMesh_m7201FBFE56F97B440215E92064BFC59F00ACA9C6 (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* ___0_vh, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Get_mF172EABFC8C0790442FC9E97247EDE52148F13EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Release_m8EFACCF3EB10B4D6ED9988CB24999AFFF8FE3553_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_t2F20718512775923B19818C2622FA4F11715D698_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:132>
|
|
bool L_0;
|
|
L_0 = VirtualFuncInvoker0< bool >::Invoke(9, __this);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:133>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:135>
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t2F20718512775923B19818C2622FA4F11715D698_il2cpp_TypeInfo_var);
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_1;
|
|
L_1 = CollectionPool_2_Get_mF172EABFC8C0790442FC9E97247EDE52148F13EB(CollectionPool_2_Get_mF172EABFC8C0790442FC9E97247EDE52148F13EB_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:136>
|
|
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* L_2 = ___0_vh;
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_3 = V_0;
|
|
NullCheck(L_2);
|
|
VertexHelper_GetUIVertexStream_m87D56EB5559CCCA150F68B1DD660FF4154CACBCE(L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:138>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_4 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5;
|
|
L_5 = Shadow_get_effectColor_m6E7751BB8792C85BE9DAD0D133D787317D9CF59B_inline(__this, NULL);
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6;
|
|
L_6 = Color32_op_Implicit_m79AF5E0BDE9CE041CAC4D89CBFA66E71C6DD1B70_inline(L_5, NULL);
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_inline(L_7, List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_RuntimeMethod_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Shadow_get_effectDistance_mA87EB50066AFEBC13C69D27376E50033930FA58F_inline(__this, NULL);
|
|
float L_10 = L_9.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = Shadow_get_effectDistance_mA87EB50066AFEBC13C69D27376E50033930FA58F_inline(__this, NULL);
|
|
float L_12 = L_11.___y;
|
|
Shadow_ApplyShadow_mB615BBD368431C63B1407CAFD7DD32BE023E543E(__this, L_4, L_6, 0, L_8, L_10, L_12, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:139>
|
|
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* L_13 = ___0_vh;
|
|
NullCheck(L_13);
|
|
VertexHelper_Clear_mB19E51AD5AF1C04CB2C6E6A272D032D651EC40F5(L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:140>
|
|
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* L_14 = ___0_vh;
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_15 = V_0;
|
|
NullCheck(L_14);
|
|
VertexHelper_AddUIVertexTriangleStream_m29A217271BF2B3D3D60B7CBDA4114C7BB40C2841(L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:141>
|
|
List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* L_16 = V_0;
|
|
CollectionPool_2_Release_m8EFACCF3EB10B4D6ED9988CB24999AFFF8FE3553(L_16, CollectionPool_2_Release_m8EFACCF3EB10B4D6ED9988CB24999AFFF8FE3553_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:142>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_pinvoke(const ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7& unmarshaled, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_pinvoke_back(const ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_pinvoke& marshaled, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_pinvoke_cleanup(ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_com(const ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7& unmarshaled, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_com_back(const ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_com& marshaled, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7____m_Target_FieldInfo_var, ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshal_com_cleanup(ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 68297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_startColor_m9E33FB5C5F76BCF49A3B20201CD8006DBFB46012 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:42>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_StartColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_startColor_m9E33FB5C5F76BCF49A3B20201CD8006DBFB46012_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F _returnValue;
|
|
_returnValue = ColorTween_get_startColor_m9E33FB5C5F76BCF49A3B20201CD8006DBFB46012_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68298
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mD22349343421BD44F0C31E537718ED53BE4850DA (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:43>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_value;
|
|
__this->___m_StartColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:43>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_set_startColor_mD22349343421BD44F0C31E537718ED53BE4850DA_AdjustorThunk (RuntimeObject* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_set_startColor_mD22349343421BD44F0C31E537718ED53BE4850DA_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68299
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_targetColor_m240A7018BDC3B44AB44BA674AA16C39960BC23FF (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:48>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_TargetColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_targetColor_m240A7018BDC3B44AB44BA674AA16C39960BC23FF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F _returnValue;
|
|
_returnValue = ColorTween_get_targetColor_m240A7018BDC3B44AB44BA674AA16C39960BC23FF_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68300
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_m7D8E74B32AC3A9C17C3192096003B12A1500D749 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:49>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_value;
|
|
__this->___m_TargetColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:49>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_set_targetColor_m7D8E74B32AC3A9C17C3192096003B12A1500D749_AdjustorThunk (RuntimeObject* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_set_targetColor_m7D8E74B32AC3A9C17C3192096003B12A1500D749_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68301
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m06B83FB6E45A807F83FDD762A8241D478FD13F8B (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:54>
|
|
int32_t L_0 = __this->___m_TweenMode;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ColorTween_get_tweenMode_m06B83FB6E45A807F83FDD762A8241D478FD13F8B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ColorTween_get_tweenMode_m06B83FB6E45A807F83FDD762A8241D478FD13F8B_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68302
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m105EEB49F6632D6D105C63DA9919385233A5D4DE (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:55>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_TweenMode = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:55>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_set_tweenMode_m105EEB49F6632D6D105C63DA9919385233A5D4DE_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_set_tweenMode_m105EEB49F6632D6D105C63DA9919385233A5D4DE_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68303
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorTween_get_duration_m40D8F08C13FF2FE7583746934C6A017A93398548 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:60>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float ColorTween_get_duration_m40D8F08C13FF2FE7583746934C6A017A93398548_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = ColorTween_get_duration_m40D8F08C13FF2FE7583746934C6A017A93398548_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68304
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_duration_m1C278AB5A90B5C108CEB4870CAC90A9A9EAC19CB (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:61>
|
|
float L_0 = ___0_value;
|
|
__this->___m_Duration = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:61>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_set_duration_m1C278AB5A90B5C108CEB4870CAC90A9A9EAC19CB_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_set_duration_m1C278AB5A90B5C108CEB4870CAC90A9A9EAC19CB_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68305
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mEDB15A4ADE3A0B9487D240964A7571247F974708 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:66>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ColorTween_get_ignoreTimeScale_mEDB15A4ADE3A0B9487D240964A7571247F974708_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ColorTween_get_ignoreTimeScale_mEDB15A4ADE3A0B9487D240964A7571247F974708_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68306
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m060FF3CED06F73EA1F555A37999D61DC58F99927 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:67>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_IgnoreTimeScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:67>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_set_ignoreTimeScale_m060FF3CED06F73EA1F555A37999D61DC58F99927_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_set_ignoreTimeScale_m060FF3CED06F73EA1F555A37999D61DC58F99927_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68307
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_TweenValue_mF5CBA9BDE7F73E47F9CF26DC4EC2419694049860 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, float ___0_floatPercentage, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:72>
|
|
bool L_0;
|
|
L_0 = ColorTween_ValidTarget_m1D7A682CE00048FAF1A3BDD55EB76F44C9122B4D(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:73>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:75>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = __this->___m_StartColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = __this->___m_TargetColor;
|
|
float L_3 = ___0_floatPercentage;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4;
|
|
L_4 = Color_Lerp_mE79F87889843ECDC188E4CB5B5E1F1B2256E5EBE_inline(L_1, L_2, L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:77>
|
|
int32_t L_5 = __this->___m_TweenMode;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)2))))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:79>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_6 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___m_StartColor);
|
|
float L_7 = L_6->___r;
|
|
(&V_0)->___r = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:80>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_8 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___m_StartColor);
|
|
float L_9 = L_8->___g;
|
|
(&V_0)->___g = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:81>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_10 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___m_StartColor);
|
|
float L_11 = L_10->___b;
|
|
(&V_0)->___b = L_11;
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:83>
|
|
int32_t L_12 = __this->___m_TweenMode;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:85>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_13 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___m_StartColor);
|
|
float L_14 = L_13->___a;
|
|
(&V_0)->___a = L_14;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:87>
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* L_15 = __this->___m_Target;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_16 = V_0;
|
|
NullCheck(L_15);
|
|
UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D(L_15, L_16, UnityEvent_1_Invoke_m742FE68F8584FCA2350604FAFF86FA120A2CFE8D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:88>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_TweenValue_mF5CBA9BDE7F73E47F9CF26DC4EC2419694049860_AdjustorThunk (RuntimeObject* __this, float ___0_floatPercentage, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_TweenValue_mF5CBA9BDE7F73E47F9CF26DC4EC2419694049860(_thisAdjusted, ___0_floatPercentage, method);
|
|
}
|
|
// Method Definition Index: 68308
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTween_AddOnChangedCallback_mAC2856A154604B4B6721DAC185B819A98D6F7438 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* ___0_callback, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:92>
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* L_0 = __this->___m_Target;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:93>
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* L_1 = (ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E*)il2cpp_codegen_object_new(ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E_il2cpp_TypeInfo_var);
|
|
ColorTweenCallback__ctor_mFEB49A6A1ABACFE2351A63060F786B762E2DC6B9(L_1, NULL);
|
|
__this->___m_Target = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Target), (void*)L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:95>
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* L_2 = __this->___m_Target;
|
|
UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* L_3 = ___0_callback;
|
|
NullCheck(L_2);
|
|
UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE(L_2, L_3, UnityEvent_1_AddListener_mD935AA7032F987581BD350C04192FBE8C25DD4EE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:96>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ColorTween_AddOnChangedCallback_mAC2856A154604B4B6721DAC185B819A98D6F7438_AdjustorThunk (RuntimeObject* __this, UnityAction_1_t1096D18D9D13996146965189C54BB1A577A8011F* ___0_callback, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
ColorTween_AddOnChangedCallback_mAC2856A154604B4B6721DAC185B819A98D6F7438(_thisAdjusted, ___0_callback, method);
|
|
}
|
|
// Method Definition Index: 68309
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m679C83012235779A37DCCD0AA75CD6B0DAE5BCFA (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:100>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ColorTween_GetIgnoreTimescale_m679C83012235779A37DCCD0AA75CD6B0DAE5BCFA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ColorTween_GetIgnoreTimescale_m679C83012235779A37DCCD0AA75CD6B0DAE5BCFA_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68310
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mC40D6776769FDB79C7ADC42D59F059A2A9AE2F66 (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:105>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float ColorTween_GetDuration_mC40D6776769FDB79C7ADC42D59F059A2A9AE2F66_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = ColorTween_GetDuration_mC40D6776769FDB79C7ADC42D59F059A2A9AE2F66_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68311
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorTween_ValidTarget_m1D7A682CE00048FAF1A3BDD55EB76F44C9122B4D (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:110>
|
|
ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* L_0 = __this->___m_Target;
|
|
return (bool)((!(((RuntimeObject*)(ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ColorTween_ValidTarget_m1D7A682CE00048FAF1A3BDD55EB76F44C9122B4D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ColorTween_ValidTarget_m1D7A682CE00048FAF1A3BDD55EB76F44C9122B4D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68312
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorTweenCallback__ctor_mFEB49A6A1ABACFE2351A63060F786B762E2DC6B9 (ColorTweenCallback_tBE6685495BFEE2763BED5BF7EFC9571F7F1D724E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D(__this, UnityEvent_1__ctor_mDED1CDCE6C1912DC328CA1D07ACA3ABB9AF1303D_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_pinvoke(const FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A& unmarshaled, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_pinvoke_back(const FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_pinvoke& marshaled, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_pinvoke_cleanup(FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_com(const FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A& unmarshaled, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_com_back(const FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_com& marshaled, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_TargetException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A____m_Target_FieldInfo_var, FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_TargetException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshal_com_cleanup(FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 68313
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_startValue_mCA121483CCF4C8F10991BB3306E3F2769EBB3A3C (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:130>
|
|
float L_0 = __this->___m_StartValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float FloatTween_get_startValue_mCA121483CCF4C8F10991BB3306E3F2769EBB3A3C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = FloatTween_get_startValue_mCA121483CCF4C8F10991BB3306E3F2769EBB3A3C_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68314
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m43B55D74B7B34D9C32439D6004F306BFA18E4A1A (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:131>
|
|
float L_0 = ___0_value;
|
|
__this->___m_StartValue = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:131>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_set_startValue_m43B55D74B7B34D9C32439D6004F306BFA18E4A1A_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_set_startValue_m43B55D74B7B34D9C32439D6004F306BFA18E4A1A_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68315
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_m6EFBD9EAB206F145959832269DC24C4B68FEE6B1 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:136>
|
|
float L_0 = __this->___m_TargetValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float FloatTween_get_targetValue_m6EFBD9EAB206F145959832269DC24C4B68FEE6B1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = FloatTween_get_targetValue_m6EFBD9EAB206F145959832269DC24C4B68FEE6B1_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68316
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m4AE44CE862797E898CDE00A1B7D6A33CE0AFDCFB (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:137>
|
|
float L_0 = ___0_value;
|
|
__this->___m_TargetValue = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:137>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_set_targetValue_m4AE44CE862797E898CDE00A1B7D6A33CE0AFDCFB_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_set_targetValue_m4AE44CE862797E898CDE00A1B7D6A33CE0AFDCFB_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68317
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_get_duration_mB1496D38A618FF8282205FD3AA14CA9C6D76454D (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:142>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float FloatTween_get_duration_mB1496D38A618FF8282205FD3AA14CA9C6D76454D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = FloatTween_get_duration_mB1496D38A618FF8282205FD3AA14CA9C6D76454D_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68318
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_duration_m40E10A7B796B4B54FFB8DA3889B09557BEC98456 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:143>
|
|
float L_0 = ___0_value;
|
|
__this->___m_Duration = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:143>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_set_duration_m40E10A7B796B4B54FFB8DA3889B09557BEC98456_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_set_duration_m40E10A7B796B4B54FFB8DA3889B09557BEC98456_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68319
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m6F6BDCBD59C19E68572370F9FE3D7373B4212B3B (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:148>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool FloatTween_get_ignoreTimeScale_m6F6BDCBD59C19E68572370F9FE3D7373B4212B3B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = FloatTween_get_ignoreTimeScale_m6F6BDCBD59C19E68572370F9FE3D7373B4212B3B_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68320
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_m09041A4110040F9C86D24E1B4DED6E6B7FB206A8 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:149>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_IgnoreTimeScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:149>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_set_ignoreTimeScale_m09041A4110040F9C86D24E1B4DED6E6B7FB206A8_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_set_ignoreTimeScale_m09041A4110040F9C86D24E1B4DED6E6B7FB206A8_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68321
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_TweenValue_mE51344369BDDA58E9C3AEC62E1B1C1AC0349278E (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_floatPercentage, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:154>
|
|
bool L_0;
|
|
L_0 = FloatTween_ValidTarget_m36EABC84C8FEFF79EBAC8E9C3C7A394F1377E311(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:155>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:157>
|
|
float L_1 = __this->___m_StartValue;
|
|
float L_2 = __this->___m_TargetValue;
|
|
float L_3 = ___0_floatPercentage;
|
|
float L_4;
|
|
L_4 = Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline(L_1, L_2, L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:158>
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* L_5 = __this->___m_Target;
|
|
float L_6 = V_0;
|
|
NullCheck(L_5);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(L_5, L_6, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:159>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_TweenValue_mE51344369BDDA58E9C3AEC62E1B1C1AC0349278E_AdjustorThunk (RuntimeObject* __this, float ___0_floatPercentage, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_TweenValue_mE51344369BDDA58E9C3AEC62E1B1C1AC0349278E(_thisAdjusted, ___0_floatPercentage, method);
|
|
}
|
|
// Method Definition Index: 68322
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTween_AddOnChangedCallback_m13B1FFCAD78C7E690E70704311B20D5BB67D8224 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* ___0_callback, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:163>
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* L_0 = __this->___m_Target;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:164>
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* L_1 = (FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC*)il2cpp_codegen_object_new(FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC_il2cpp_TypeInfo_var);
|
|
FloatTweenCallback__ctor_m3BD06E1999E88B4BAC7627A04B37300331CA210A(L_1, NULL);
|
|
__this->___m_Target = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Target), (void*)L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:166>
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* L_2 = __this->___m_Target;
|
|
UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* L_3 = ___0_callback;
|
|
NullCheck(L_2);
|
|
UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC(L_2, L_3, UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:167>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FloatTween_AddOnChangedCallback_m13B1FFCAD78C7E690E70704311B20D5BB67D8224_AdjustorThunk (RuntimeObject* __this, UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* ___0_callback, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
FloatTween_AddOnChangedCallback_m13B1FFCAD78C7E690E70704311B20D5BB67D8224(_thisAdjusted, ___0_callback, method);
|
|
}
|
|
// Method Definition Index: 68323
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_mA2463285D4524B70A46776FC60C4F939B3BCD045 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:171>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool FloatTween_GetIgnoreTimescale_mA2463285D4524B70A46776FC60C4F939B3BCD045_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = FloatTween_GetIgnoreTimescale_mA2463285D4524B70A46776FC60C4F939B3BCD045_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68324
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m3E981D91F15C36ED6F241117665E703F2BD2A6D4 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:176>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float FloatTween_GetDuration_m3E981D91F15C36ED6F241117665E703F2BD2A6D4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = FloatTween_GetDuration_m3E981D91F15C36ED6F241117665E703F2BD2A6D4_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68325
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatTween_ValidTarget_m36EABC84C8FEFF79EBAC8E9C3C7A394F1377E311 (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:181>
|
|
FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* L_0 = __this->___m_Target;
|
|
return (bool)((!(((RuntimeObject*)(FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool FloatTween_ValidTarget_m36EABC84C8FEFF79EBAC8E9C3C7A394F1377E311_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = FloatTween_ValidTarget_m36EABC84C8FEFF79EBAC8E9C3C7A394F1377E311(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68326
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatTweenCallback__ctor_m3BD06E1999E88B4BAC7627A04B37300331CA210A (FloatTweenCallback_tF3159C7BD29B10629506C32DBDC426B076A308CC* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422(__this, UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68338
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PanelEventHandler_get_panel_mA34094B6004584B051A7E9554DCF7CE3C18E2642 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:26>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68339
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_set_panel_m30302AED739E083827B25651029CB2F1563D2988 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:29>
|
|
RuntimeObject* L_0 = ___0_value;
|
|
V_0 = ((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)CastclassClass((RuntimeObject*)L_0, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:30>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_2 = V_0;
|
|
if ((((RuntimeObject*)(BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_1) == ((RuntimeObject*)(BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_2)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:32>
|
|
PanelEventHandler_UnregisterCallbacks_m93894C7D3D238507B771066CC0025C98816D309C(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:33>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = V_0;
|
|
__this->___m_Panel = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Panel), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:34>
|
|
PanelEventHandler_RegisterCallbacks_mDA52FF8A14161DC03A7B09826079F60AEDBAC565(__this, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:36>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68340
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PanelEventHandler_get_selectableGameObject_m327CAA6DDDE5191CF001B5FED18EC8857E6915FC (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:39>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline(G_B2_0, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68341
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:40>
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_0;
|
|
L_0 = UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline(NULL);
|
|
return ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*)IsInstClass((RuntimeObject*)L_0, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// Method Definition Index: 68342
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PanelEventHandler_get_isCurrentFocusedPanel_mE9616A8F71808D5507809F0A6A5521DB25564587 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:42>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:43>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_3, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
|
|
L_5 = PanelEventHandler_get_selectableGameObject_m327CAA6DDDE5191CF001B5FED18EC8857E6915FC(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68343
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:45>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_2;
|
|
L_2 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(19, G_B2_0);
|
|
NullCheck(L_2);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3;
|
|
L_3 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 68344
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnEnable_m75610BA601D59B6BCB212DB140580859B2C7B777 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:54>
|
|
UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:55>
|
|
PanelEventHandler_RegisterCallbacks_mDA52FF8A14161DC03A7B09826079F60AEDBAC565(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:56>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68345
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnDisable_m7174BFEA2A756C36F810433F9D285D9D0B464CE4 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:60>
|
|
UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:61>
|
|
PanelEventHandler_UnregisterCallbacks_m93894C7D3D238507B771066CC0025C98816D309C(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:62>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68346
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_RegisterCallbacks_mDA52FF8A14161DC03A7B09826079F60AEDBAC565 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_m3D1FF7EACB159A3EE4AB8B938F542823AC3F1566_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_mB6BEC6CAB9FBEE05C80B283B9DBFE6F6FFE8A8DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:66>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:68>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_2, __this, (intptr_t)((void*)PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366_RuntimeMethod_var), NULL);
|
|
NullCheck(L_1);
|
|
BaseRuntimePanel_add_destroyed_m7191C21A4B5662F3855824E4C516E0232A1C5C81(L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:69>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F* L_5 = (EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F*)il2cpp_codegen_object_new(EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F_il2cpp_TypeInfo_var);
|
|
EventCallback_1__ctor_m0D38C77E31A784ACCFD4322569B7751EF13BF9EC(L_5, __this, (intptr_t)((void*)PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
CallbackEventHandler_RegisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_mB6BEC6CAB9FBEE05C80B283B9DBFE6F6FFE8A8DC(L_4, L_5, 1, CallbackEventHandler_RegisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_mB6BEC6CAB9FBEE05C80B283B9DBFE6F6FFE8A8DC_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:70>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_6 = __this->___m_Panel;
|
|
NullCheck(L_6);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_6);
|
|
EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9* L_8 = (EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9*)il2cpp_codegen_object_new(EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9_il2cpp_TypeInfo_var);
|
|
EventCallback_1__ctor_mEF94DB10A3D6378C9D6E81C478DE9B918C92CEF9(L_8, __this, (intptr_t)((void*)PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24_RuntimeMethod_var), NULL);
|
|
NullCheck(L_7);
|
|
CallbackEventHandler_RegisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_m3D1FF7EACB159A3EE4AB8B938F542823AC3F1566(L_7, L_8, 1, CallbackEventHandler_RegisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_m3D1FF7EACB159A3EE4AB8B938F542823AC3F1566_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:72>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68347
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_UnregisterCallbacks_m93894C7D3D238507B771066CC0025C98816D309C (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_mB949A7FBA4C69BB93448ACDCD45AC8C1DBC3A8F0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_m9E81BF1DC2166F05AECC012446B1446B37A88422_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:76>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:78>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_2, __this, (intptr_t)((void*)PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366_RuntimeMethod_var), NULL);
|
|
NullCheck(L_1);
|
|
BaseRuntimePanel_remove_destroyed_mF4555F874EDE8F3ED9783051C3666C8B0E6CA2DC(L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:79>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F* L_5 = (EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F*)il2cpp_codegen_object_new(EventCallback_1_tBBA53E55C115D4F540747F2DC1EC5547F5F54D6F_il2cpp_TypeInfo_var);
|
|
EventCallback_1__ctor_m0D38C77E31A784ACCFD4322569B7751EF13BF9EC(L_5, __this, (intptr_t)((void*)PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
CallbackEventHandler_UnregisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_m9E81BF1DC2166F05AECC012446B1446B37A88422(L_4, L_5, 1, CallbackEventHandler_UnregisterCallback_TisFocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_m9E81BF1DC2166F05AECC012446B1446B37A88422_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:80>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_6 = __this->___m_Panel;
|
|
NullCheck(L_6);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_6);
|
|
EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9* L_8 = (EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9*)il2cpp_codegen_object_new(EventCallback_1_t7EEFFE1B802FEE901F702102FB226EDCCC5F92C9_il2cpp_TypeInfo_var);
|
|
EventCallback_1__ctor_mEF94DB10A3D6378C9D6E81C478DE9B918C92CEF9(L_8, __this, (intptr_t)((void*)PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24_RuntimeMethod_var), NULL);
|
|
NullCheck(L_7);
|
|
CallbackEventHandler_UnregisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_mB949A7FBA4C69BB93448ACDCD45AC8C1DBC3A8F0(L_7, L_8, 1, CallbackEventHandler_UnregisterCallback_TisBlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_mB949A7FBA4C69BB93448ACDCD45AC8C1DBC3A8F0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:82>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68348
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPanelDestroyed_m1E7871C24E171C75D64BA6F6FB8F70EF7B345366 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:86>
|
|
PanelEventHandler_set_panel_m30302AED739E083827B25651029CB2F1563D2988(__this, (RuntimeObject*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:87>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68349
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnElementFocus_m5EF528DB20E06FC6EBECE22E71F90B47660041F1 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:91>
|
|
bool L_0 = __this->___m_Selecting;
|
|
if (L_0)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:92>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = PanelEventHandler_get_selectableGameObject_m327CAA6DDDE5191CF001B5FED18EC8857E6915FC(__this, NULL);
|
|
NullCheck(L_3);
|
|
EventSystem_SetSelectedGameObject_m91382EAC4D552C672CC07BE7EB1481F156045280(L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68350
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnElementBlur_m7FB60FF1D38D571180F0FB9B740DE531E9F43A24 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:100>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68351
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnSelect_m01E0EBF7AF99013F9D7B0EE96F52CEA3B2C6FB68 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B3_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:105>
|
|
__this->___m_Selecting = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:113>
|
|
__this->___m_Selecting = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:114>
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:109>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B3_0 = L_1;
|
|
goto IL_0013_1;
|
|
}
|
|
G_B2_0 = L_1;
|
|
}
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0013_1:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
Panel_Focus_mDAE57837E8C771D868C150D37EB07E828281B9BC(G_B3_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:110>
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:115>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68352
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnDeselect_m6AF499D5E0F1F162B5BCEA063D4D285E086AF663 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:119>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
Panel_Blur_m8A06EE8F304D327193143A8C9AA42386468DFD7F(G_B2_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:120>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68353
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerMove_m753962E17CA7F9176FF96F765527BB093ED1F058 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_UpdatePointerEventTarget_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m01B9C5332EAD486A6293066474A554A18B70EE77_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_m505D01FFFB287E4FA5650DEDE746B6DAC77194E0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:124>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
bool L_2;
|
|
L_2 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_0, L_1, 0, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:125>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:127>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_3 = __this->___m_PointerEvent;
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_4;
|
|
L_4 = PointerEventBase_1_GetPooled_m505D01FFFB287E4FA5650DEDE746B6DAC77194E0(L_3, PointerEventBase_1_GetPooled_m505D01FFFB287E4FA5650DEDE746B6DAC77194E0_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0034:
|
|
{
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:129>
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_7 = V_0;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_8 = __this->___m_PointerEvent;
|
|
PanelEventHandler_UpdatePointerEventTarget_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m01B9C5332EAD486A6293066474A554A18B70EE77(__this, L_7, L_8, PanelEventHandler_UpdatePointerEventTarget_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m01B9C5332EAD486A6293066474A554A18B70EE77_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:130>
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_9 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_9, L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:131>
|
|
goto IL_003e;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:132>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68354
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerUp_mC03E88905E10E8730E8211810EC98927A3B89F96 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_UpdatePointerEventTarget_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m199E8DC26E1B4E2C9D0F4FF3F56931E335AFDA65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_m9B995C8015B9E44E3A91A42953EF592D22E329DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:136>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
bool L_2;
|
|
L_2 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_0, L_1, 2, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:137>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:139>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_3 = __this->___m_PointerEvent;
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_4;
|
|
L_4 = PointerEventBase_1_GetPooled_m9B995C8015B9E44E3A91A42953EF592D22E329DB(L_3, PointerEventBase_1_GetPooled_m9B995C8015B9E44E3A91A42953EF592D22E329DB_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:141>
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_7 = V_0;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_8 = __this->___m_PointerEvent;
|
|
PanelEventHandler_UpdatePointerEventTarget_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m199E8DC26E1B4E2C9D0F4FF3F56931E335AFDA65(__this, L_7, L_8, PanelEventHandler_UpdatePointerEventTarget_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m199E8DC26E1B4E2C9D0F4FF3F56931E335AFDA65_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:142>
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_9 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_9, L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:144>
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_inline(L_11, PointerEventBase_1_get_pressedButtons_mAEE1A8AAE5241E6E45E1750BE6BC01E86CC9EF1E_RuntimeMethod_var);
|
|
if (L_12)
|
|
{
|
|
goto IL_0047_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:145>
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_13, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_14, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_0047_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:146>
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:147>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68355
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerDown_mB46E8626C4F1D143AA495ABAF6B5D57301D3C303 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_UpdatePointerEventTarget_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mCAFF63BFF505A4C37A141B756EB051616AD7C95A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_mFCA2D5D977296034C8EE0A2E61CBA38250C3D928_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:151>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
bool L_2;
|
|
L_2 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_0, L_1, 1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:152>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:154>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:155>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
|
|
L_5 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6;
|
|
L_6 = PanelEventHandler_get_selectableGameObject_m327CAA6DDDE5191CF001B5FED18EC8857E6915FC(__this, NULL);
|
|
NullCheck(L_5);
|
|
EventSystem_SetSelectedGameObject_m91382EAC4D552C672CC07BE7EB1481F156045280(L_5, L_6, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:157>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_7 = __this->___m_PointerEvent;
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_8;
|
|
L_8 = PointerEventBase_1_GetPooled_mFCA2D5D977296034C8EE0A2E61CBA38250C3D928(L_7, PointerEventBase_1_GetPooled_mFCA2D5D977296034C8EE0A2E61CBA38250C3D928_RuntimeMethod_var);
|
|
V_0 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006a:
|
|
{
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:159>
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_11 = V_0;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_12 = __this->___m_PointerEvent;
|
|
PanelEventHandler_UpdatePointerEventTarget_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mCAFF63BFF505A4C37A141B756EB051616AD7C95A(__this, L_11, L_12, PanelEventHandler_UpdatePointerEventTarget_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mCAFF63BFF505A4C37A141B756EB051616AD7C95A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:160>
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_13 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_13, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:162>
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_15, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = EventBase_get_elementTarget_mF6CFD6372FB247718797DB8927654F781821B94D_inline(L_17, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___0_eventData;
|
|
NullCheck(L_19);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_20;
|
|
L_20 = PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3(L_19, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_16, L_18, L_20, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:163>
|
|
goto IL_0074;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:164>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68356
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerExit_m2A57890B6822CBB0D51D61FEBA91B32FE269B1B4 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m4097EB41B6DA7B55D588365541B34406A0C1A7B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_UpdatePointerEventTarget_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4F89A7634336F44ACF0EAB83D5A37E54243702D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_m1273AE51A40AC6C68E59D3D2AA5BF1E057A0AD1D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_mBC45047294FB78F490183380DD544683C6CB5A2E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:168>
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* L_0 = __this->___m_ContainedPointers;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Remove_m4097EB41B6DA7B55D588365541B34406A0C1A7B6(L_0, L_1, List_1_Remove_m4097EB41B6DA7B55D588365541B34406A0C1A7B6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:170>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_3 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_eventData;
|
|
bool L_5;
|
|
L_5 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_3, L_4, 0, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:172>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_6 = __this->___m_Panel;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_7 = __this->___m_Panel;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:173>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_9 = __this->___m_Panel;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_10 = __this->___m_PointerEvent;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(L_10, NULL);
|
|
NullCheck(L_9);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E(L_9, L_11, NULL);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:174>
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:181>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:182>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:183>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___0_eventData;
|
|
NullCheck(L_12);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_13;
|
|
L_13 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_12, NULL);
|
|
V_0 = L_13;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_0), NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15;
|
|
L_15 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_14, L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___0_eventData;
|
|
NullCheck(L_17);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_18;
|
|
L_18 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(L_17, NULL);
|
|
V_0 = L_18;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_19;
|
|
L_19 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_0), NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_20;
|
|
L_20 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_21;
|
|
L_21 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_19, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_22 = __this->___m_PointerEvent;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(L_22, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_24 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId;
|
|
if ((((int32_t)L_23) == ((int32_t)L_24)))
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:185>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_25 = __this->___m_PointerEvent;
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_26;
|
|
L_26 = PointerEventBase_1_GetPooled_m1273AE51A40AC6C68E59D3D2AA5BF1E057A0AD1D(L_25, PointerEventBase_1_GetPooled_m1273AE51A40AC6C68E59D3D2AA5BF1E057A0AD1D_RuntimeMethod_var);
|
|
V_1 = L_26;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00c9:
|
|
{
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_27 = V_1;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_28 = V_1;
|
|
NullCheck(L_28);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_28);
|
|
}
|
|
|
|
IL_00d2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:187>
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_29 = V_1;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_30 = __this->___m_PointerEvent;
|
|
PanelEventHandler_UpdatePointerEventTarget_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4F89A7634336F44ACF0EAB83D5A37E54243702D2(__this, L_29, L_30, PanelEventHandler_UpdatePointerEventTarget_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4F89A7634336F44ACF0EAB83D5A37E54243702D2_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:188>
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_31 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_31, L_32, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:190>
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
int32_t L_34;
|
|
L_34 = PointerEventBase_1_get_pressedButtons_mBC45047294FB78F490183380DD544683C6CB5A2E_inline(L_33, PointerEventBase_1_get_pressedButtons_mBC45047294FB78F490183380DD544683C6CB5A2E_RuntimeMethod_var);
|
|
if (L_34)
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:191>
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_35 = V_1;
|
|
NullCheck(L_35);
|
|
int32_t L_36;
|
|
L_36 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(L_35, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_SetElementWithSoftPointerCapture_m29CB9A81585E4803538A5C33F41F813288F9FB3C(L_36, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL, NULL);
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:192>
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:195>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_37 = __this->___m_Panel;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_38 = __this->___m_PointerEvent;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(L_38, NULL);
|
|
NullCheck(L_37);
|
|
BaseRuntimePanel_PointerLeavesPanel_mD7BC4DC877F6E4980EFEFD7CF5036E2F359AAF6E(L_37, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:196>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68357
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerEnter_m0627B36F32B2C7D59783CF07C7781AA66F202C70 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEE8E752136ACB05A54F2783E0FC3BA219B3D3537_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:200>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
bool L_2;
|
|
L_2 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_0, L_1, 0, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:201>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:203>
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* L_3 = __this->___m_ContainedPointers;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_eventData;
|
|
NullCheck(L_3);
|
|
List_1_Add_mEE8E752136ACB05A54F2783E0FC3BA219B3D3537_inline(L_3, L_4, List_1_Add_mEE8E752136ACB05A54F2783E0FC3BA219B3D3537_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:204>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = __this->___m_Panel;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_6 = __this->___m_PointerEvent;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(L_6, NULL);
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_8 = __this->___m_PointerEvent;
|
|
NullCheck(L_8);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
L_9 = PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45_inline(L_8, NULL);
|
|
NullCheck(L_5);
|
|
BaseRuntimePanel_PointerEntersPanel_m2826AA8588CBC87F1C39FB2FFA4A4B44E255843E(L_5, L_7, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:205>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68358
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnPointerClick_mD65AC5B586A941C8D235326E29A1DDE0B07B5D14 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:209>
|
|
float L_0;
|
|
L_0 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
__this->___m_LastClickTime = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:210>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68359
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnSubmit_m56C7D96593E7DC7B561AE24B741647431C75E84D (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1_GetPooled_mB1CE016F257FE0B9381D2C85C9DE76026038E061_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* V_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B4_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:214>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:215>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:218>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B4_0 = L_2;
|
|
goto IL_001e;
|
|
}
|
|
G_B3_0 = L_2;
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
G_B4_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(L_4));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_0 = G_B4_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:219>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_0;
|
|
PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:221>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_6 = ___0_eventData;
|
|
int32_t L_7;
|
|
L_7 = PanelEventHandler_GetDeviceType_m41DB820BAD3A98DFC6E2F7090659A76A2D9D8C5A(__this, L_6, NULL);
|
|
int32_t L_8 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* L_9;
|
|
L_9 = NavigationEventBase_1_GetPooled_mB1CE016F257FE0B9381D2C85C9DE76026038E061(L_7, L_8, NavigationEventBase_1_GetPooled_mB1CE016F257FE0B9381D2C85C9DE76026038E061_RuntimeMethod_var);
|
|
V_1 = L_9;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{
|
|
{
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_11);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:223>
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* L_12 = V_1;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_13 = V_0;
|
|
NullCheck(L_12);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_12, L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:224>
|
|
NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* L_14 = V_1;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_15 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:225>
|
|
goto IL_0053;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:226>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68360
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnCancel_mAC960731F19FB4522FD960CD51790361A9F26C8A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1_GetPooled_m1AA5FA03C126B545E68FBCD06A0FF14DA35B4DFD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* V_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B4_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:230>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:231>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:234>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B4_0 = L_2;
|
|
goto IL_001e;
|
|
}
|
|
G_B3_0 = L_2;
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
G_B4_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(L_4));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_0 = G_B4_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:235>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_0;
|
|
PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:237>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_6 = ___0_eventData;
|
|
int32_t L_7;
|
|
L_7 = PanelEventHandler_GetDeviceType_m41DB820BAD3A98DFC6E2F7090659A76A2D9D8C5A(__this, L_6, NULL);
|
|
int32_t L_8 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* L_9;
|
|
L_9 = NavigationEventBase_1_GetPooled_m1AA5FA03C126B545E68FBCD06A0FF14DA35B4DFD(L_7, L_8, NavigationEventBase_1_GetPooled_m1AA5FA03C126B545E68FBCD06A0FF14DA35B4DFD_RuntimeMethod_var);
|
|
V_1 = L_9;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{
|
|
{
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_11);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:239>
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* L_12 = V_1;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_13 = V_0;
|
|
NullCheck(L_12);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_12, L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:240>
|
|
NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* L_14 = V_1;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_15 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:241>
|
|
goto IL_0053;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:242>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68361
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnMove_m3103CB2983C10B1E721004FDE9EAAF9E8C598DF4 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* V_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B4_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:246>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:247>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:250>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B4_0 = L_2;
|
|
goto IL_001e;
|
|
}
|
|
G_B3_0 = L_2;
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
G_B4_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(L_4));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_0 = G_B4_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:251>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_0;
|
|
PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:253>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_6 = ___0_eventData;
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = AxisEventData_get_moveVector_m7979B5CF62B6B3B0C5F2DA8B328C499ED80ECC41_inline(L_6, NULL);
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_8 = ___0_eventData;
|
|
int32_t L_9;
|
|
L_9 = PanelEventHandler_GetDeviceType_m41DB820BAD3A98DFC6E2F7090659A76A2D9D8C5A(__this, L_8, NULL);
|
|
int32_t L_10 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
il2cpp_codegen_runtime_class_init_inline(NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_il2cpp_TypeInfo_var);
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_11;
|
|
L_11 = NavigationMoveEvent_GetPooled_mD37F15D0BD9B6B112B6CC685A6C1EC2AD07FE2D7(L_7, L_9, L_10, NULL);
|
|
V_1 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004f:
|
|
{
|
|
{
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:255>
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_14 = V_1;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_15 = V_0;
|
|
NullCheck(L_14);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:256>
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_16 = V_1;
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_17 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_16, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:257>
|
|
goto IL_0059;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:260>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68362
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_OnScroll_mE4812293B72E54A268D49C31845DF17687E68DA4 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:264>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
bool L_2;
|
|
L_2 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_0, L_1, 0, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:265>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:267>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___0_eventData;
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:268>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
|
|
L_5 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_5);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_6;
|
|
L_6 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_5, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(27, L_6, L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:271>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline(L_8, (3.0f), NULL);
|
|
V_1 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:272>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_1;
|
|
float L_11 = L_10.___y;
|
|
(&V_1)->___y = ((-L_11));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:274>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13;
|
|
L_13 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_12, NULL);
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_14 = __this->___m_PointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E_il2cpp_TypeInfo_var);
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_15;
|
|
L_15 = WheelEvent_GetPooled_m0B52D894574A9F79079C03E54529A1B28D776E85(L_13, L_14, NULL);
|
|
V_2 = L_15;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005e:
|
|
{
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_16 = V_2;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_17 = V_2;
|
|
NullCheck(L_17);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_17);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:276>
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_18 = V_2;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___0_eventData;
|
|
PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5(__this, L_18, L_19, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:277>
|
|
goto IL_0068;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:278>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68363
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendEvent_m380CCD38E3E7949B65EE3001067AA9548B19B9F5 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_sourceEventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:283>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_e;
|
|
NullCheck(L_0);
|
|
BaseVisualElementPanel_SendEvent_m1CBB33A872A838895CBE5E620FD106FD5C72B1FB(L_0, L_1, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:284>
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_e;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:285>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_4 = ___1_sourceEventData;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker0::Invoke(5, L_4);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:286>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68364
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendEvent_m8A731185591EB81DC398B72D4C081970A89D421B (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___1_sourceEvent, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:290>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_e;
|
|
NullCheck(L_0);
|
|
BaseVisualElementPanel_SendEvent_m1CBB33A872A838895CBE5E620FD106FD5C72B1FB(L_0, L_1, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:295>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68365
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_Update_mB47B3B1C74E2FE6EC56B7A6861D71DACD2FFC733 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* G_B3_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B2_0 = NULL;
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* G_B2_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:303>
|
|
bool L_0;
|
|
L_0 = PanelEventHandler_get_isCurrentFocusedPanel_mE9616A8F71808D5507809F0A6A5521DB25564587(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:304>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = PanelEventHandler_get_currentFocusedElement_m7D1860148CB99DE9BE6923146289E97A6DD02C18(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B3_0 = L_2;
|
|
G_B3_1 = __this;
|
|
goto IL_001e;
|
|
}
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = __this;
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(43, L_3);
|
|
G_B3_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(L_4));
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A(G_B3_1, G_B3_0, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:306>
|
|
PanelEventHandler_UpdateWorldSpacePointers_m2EF2411E711C6B19003727168E8F16D6CCF3034C(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:307>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68366
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_LateUpdate_mF537C32BA3237501B31627DEFCED28C934DDAF14 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:312>
|
|
PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A(__this, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:313>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68367
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessImguiEvents_m2C97483500700868379D4AF34C85D9CFE1EEA63A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:323>
|
|
V_0 = (bool)1;
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:327>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:328>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = __this->___m_Event;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_0, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)((int32_t)11))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = __this->___m_Event;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_2, NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)7)))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_4 = __this->___m_Event;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_4, NULL);
|
|
if ((((int32_t)L_5) == ((int32_t)8)))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:331>
|
|
bool L_6 = V_0;
|
|
if (L_6)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_8 = __this->___m_Event;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = Event_get_modifiers_mD55E7CF06EB720434F0F174EA569B2A29792D39B(L_8, NULL);
|
|
G_B7_0 = ((int32_t)(((int32_t)((int32_t)L_7|(int32_t)L_9))));
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_10 = __this->___m_Event;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = Event_get_modifiers_mD55E7CF06EB720434F0F174EA569B2A29792D39B(L_10, NULL);
|
|
G_B7_0 = L_11;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers = G_B7_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:332>
|
|
V_0 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:334>
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_12 = ___0_target;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:336>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_13 = __this->___m_Event;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_14 = ___0_target;
|
|
PanelEventHandler_ProcessKeyboardEvent_m665D51CC6E7CDE6F1C130A49B89CD67C29A6F450(__this, L_13, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:337>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_15;
|
|
L_15 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:338>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_17 = __this->___m_Event;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_18 = ___0_target;
|
|
PanelEventHandler_ProcessTabEvent_m57753FE73E0530973D9A9EF0D606B773CE16A337(__this, L_17, L_18, NULL);
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:325>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_19 = __this->___m_Event;
|
|
bool L_20;
|
|
L_20 = Event_PopEvent_mC780BAA7CE4F0E75C8B5C7DC5EB430C278B0D0AE(L_19, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:341>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68368
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessKeyboardEvent_m665D51CC6E7CDE6F1C130A49B89CD67C29A6F450 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:345>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_0, NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)5))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:347>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = ___0_e;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = ___1_target;
|
|
PanelEventHandler_SendKeyUpEvent_mE718C7FBA4F4936F9D3B0C3FB3E3629288AD0F44(__this, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:349>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_4 = ___0_e;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_4, NULL);
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)4))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:351>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6 = ___0_e;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = ___1_target;
|
|
PanelEventHandler_SendKeyDownEvent_m41EE3C5B80C20F66A3056EC839FC60BCBACCE6B5(__this, L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:353>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68369
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_ProcessTabEvent_m57753FE73E0530973D9A9EF0D606B773CE16A337 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method)
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B3_0 = NULL;
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* G_B3_1 = NULL;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B2_0 = NULL;
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* G_B2_1 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B4_1 = NULL;
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* G_B4_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:358>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
bool L_1;
|
|
L_1 = KeyboardEventExtensions_ShouldSendNavigationMoveEventRuntime_mE115DCF9A83C6D801DEF4DCEEF402C78A2ED31C1(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:360>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = ___0_e;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = ___0_e;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = Event_get_shift_mB8409DA839B09DC6137848E131A6DBE70BB9E70A(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
G_B3_0 = L_2;
|
|
G_B3_1 = __this;
|
|
goto IL_0015;
|
|
}
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = __this;
|
|
}
|
|
{
|
|
G_B4_0 = 5;
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B4_0 = 6;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___1_target;
|
|
NullCheck(G_B4_2);
|
|
PanelEventHandler_SendTabEvent_m00C849500EAEFC5F544C811A1F6D6496EDDD3B8B(G_B4_2, G_B4_1, G_B4_0, L_5, NULL);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:362>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68370
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendTabEvent_m00C849500EAEFC5F544C811A1F6D6496EDDD3B8B (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, int32_t ___1_direction, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___2_target, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:366>
|
|
int32_t L_0 = ___1_direction;
|
|
int32_t L_1 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
il2cpp_codegen_runtime_class_init_inline(NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF_il2cpp_TypeInfo_var);
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_2;
|
|
L_2 = NavigationMoveEvent_GetPooled_m63485891C63EEBFA8AA8A0A92C98F1961F903FAE(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001d:
|
|
{
|
|
{
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:368>
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_5 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = ___2_target;
|
|
NullCheck(L_5);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_5, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:369>
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_7 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_8 = ___0_e;
|
|
PanelEventHandler_SendEvent_m8A731185591EB81DC398B72D4C081970A89D421B(__this, L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:370>
|
|
goto IL_0027;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:371>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68371
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendKeyUpEvent_mE718C7FBA4F4936F9D3B0C3FB3E3629288AD0F44 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:377>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1;
|
|
L_1 = UIElementsRuntimeUtility_CreateEvent_mFC27ABBB5CACE8EB5981105C15FAD450A0EEC6A7(L_0, NULL);
|
|
V_0 = ((KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394*)CastclassClass((RuntimeObject*)L_1, KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394_il2cpp_TypeInfo_var));
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001d:
|
|
{
|
|
{
|
|
KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:379>
|
|
KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* L_4 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___1_target;
|
|
NullCheck(L_4);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:380>
|
|
KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* L_6 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_e;
|
|
PanelEventHandler_SendEvent_m8A731185591EB81DC398B72D4C081970A89D421B(__this, L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:381>
|
|
goto IL_0027;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:382>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68372
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_SendKeyDownEvent_m41EE3C5B80C20F66A3056EC839FC60BCBACCE6B5 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_target, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:388>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1;
|
|
L_1 = UIElementsRuntimeUtility_CreateEvent_mFC27ABBB5CACE8EB5981105C15FAD450A0EEC6A7(L_0, NULL);
|
|
V_0 = ((KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C*)CastclassClass((RuntimeObject*)L_1, KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var));
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001d:
|
|
{
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:390>
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_4 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___1_target;
|
|
NullCheck(L_4);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:391>
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_6 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_e;
|
|
PanelEventHandler_SendEvent_m8A731185591EB81DC398B72D4C081970A89D421B(__this, L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:392>
|
|
goto IL_0027;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:393>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68373
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372 (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* ___0_pe, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_eventData, int32_t ___2_eventType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:397>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_3);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_4;
|
|
L_4 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:398>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:400>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_6 = ___0_pe;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___1_eventData;
|
|
int32_t L_8 = ___2_eventType;
|
|
NullCheck(L_6);
|
|
PointerEvent_Read_mE5A2B332E857E3264562FF872625FB5ACE2E3248(L_6, __this, L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:402>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_9 = ___0_pe;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_10 = __this->___m_Panel;
|
|
NullCheck(L_9);
|
|
bool L_11;
|
|
L_11 = PointerEvent_ComputeTarget_m144F7D861BCFCBD041431FB7DD52CFD6C9BD9406(L_9, L_10, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:403>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:405>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68375
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PanelEventHandler_GetDeviceType_m41DB820BAD3A98DFC6E2F7090659A76A2D9D8C5A (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:422>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
|
|
L_2 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_2);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_3;
|
|
L_3 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:423>
|
|
return (int32_t)(0);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:424>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:425>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
|
|
L_5 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_5);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_6;
|
|
L_6 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_5, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_7 = ___0_eventData;
|
|
NullCheck(L_6);
|
|
int32_t L_8;
|
|
L_8 = VirtualFuncInvoker1< int32_t, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(28, L_6, L_7);
|
|
return (int32_t)(L_8);
|
|
}
|
|
}
|
|
// Method Definition Index: 68376
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler_UpdateWorldSpacePointers_m2EF2411E711C6B19003727168E8F16D6CCF3034C (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB6E33132F5D0676786F67B988DB108FF7F1B222D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA040B5E48F4FE0BFCE09DAED1C1FC3A7107607D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9B2A28B6083DEBB62BF0A0D90CF32F5D985E1234_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m58CFABB5C7A40BB3B14B3B347F6FB292CB937953_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:430>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
|
|
L_5 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(__this, NULL);
|
|
NullCheck(L_5);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_6;
|
|
L_6 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:431>
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:433>
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* L_8 = __this->___m_ContainedPointers;
|
|
NullCheck(L_8);
|
|
Enumerator_t5A1C5F6F58283860DE673C3E73090F174ABD22E5 L_9;
|
|
L_9 = List_1_GetEnumerator_m58CFABB5C7A40BB3B14B3B347F6FB292CB937953(L_8, List_1_GetEnumerator_m58CFABB5C7A40BB3B14B3B347F6FB292CB937953_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00a5:
|
|
{
|
|
Enumerator_Dispose_mB6E33132F5D0676786F67B988DB108FF7F1B222D((&V_0), Enumerator_Dispose_mB6E33132F5D0676786F67B988DB108FF7F1B222D_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_009a_1;
|
|
}
|
|
|
|
IL_0045_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:433>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10;
|
|
L_10 = Enumerator_get_Current_m9B2A28B6083DEBB62BF0A0D90CF32F5D985E1234_inline((&V_0), Enumerator_get_Current_m9B2A28B6083DEBB62BF0A0D90CF32F5D985E1234_RuntimeMethod_var);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:435>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_11 = __this->___m_PointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_1;
|
|
bool L_13;
|
|
L_13 = PanelEventHandler_ReadPointerData_m655D52851C00124DBA14106CDBE322B7AE2F9372(__this, L_11, L_12, 0, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_009a_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:438>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_14 = __this->___m_Panel;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_15 = __this->___m_PointerEvent;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(L_15, NULL);
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_17 = __this->___m_PointerEvent;
|
|
NullCheck(L_17);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = PointerEvent_get_elementUnderPointer_mFD842306621DDC700B678892D68AB6525A00816E_inline(L_17, NULL);
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_19 = __this->___m_PointerEvent;
|
|
NullCheck(L_19);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20;
|
|
L_20 = PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45_inline(L_19, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
L_21 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_20, NULL);
|
|
NullCheck(L_14);
|
|
BaseVisualElementPanel_SetTopElementUnderPointer_m09591A0A171CEB0CAA023C6834B075D8E76ED5D9(L_14, L_16, L_18, L_21, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:439>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_22 = __this->___m_Panel;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = BaseVisualElementPanel_CommitElementUnderPointers_m41A1D0D2884A1C35218D330EE29DF393F75E7892(L_22, NULL);
|
|
}
|
|
|
|
IL_009a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:433>
|
|
bool L_24;
|
|
L_24 = Enumerator_MoveNext_mA040B5E48F4FE0BFCE09DAED1C1FC3A7107607D1((&V_0), Enumerator_MoveNext_mA040B5E48F4FE0BFCE09DAED1C1FC3A7107607D1_RuntimeMethod_var);
|
|
if (L_24)
|
|
{
|
|
goto IL_0045_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:441>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68377
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelEventHandler__ctor_mF90AF37F849E48687B1A1D3730E952A379A62C5B (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5B55006732F050E7E309F89B7D8CF4420DBD61D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:47>
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* L_0 = (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB*)il2cpp_codegen_object_new(PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB_il2cpp_TypeInfo_var);
|
|
PointerEvent__ctor_mE689E41BEA012A2914C799FECBCE48F7A58FCF73(L_0, NULL);
|
|
__this->___m_PointerEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PointerEvent), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:48>
|
|
List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE* L_1 = (List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE*)il2cpp_codegen_object_new(List_1_t91B1721D3B1A32E24157E23543A1A14BBE4A5BCE_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m5B55006732F050E7E309F89B7D8CF4420DBD61D8(L_1, List_1__ctor_m5B55006732F050E7E309F89B7D8CF4420DBD61D8_RuntimeMethod_var);
|
|
__this->___m_ContainedPointers = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ContainedPointers), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:315>
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_2, NULL);
|
|
__this->___m_Event = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Event), (void*)L_2);
|
|
UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68378
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:451>
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68379
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_pointerId_m1BFCE40A5AF978254069B94292CADC4B39CB4E6B (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:451>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpointerIdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68380
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerEvent_get_pointerType_m6AB451260BF46DEFEFF3607498093DE56F8CF537 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:452>
|
|
String_t* L_0 = __this->___U3CpointerTypeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68381
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_pointerType_m1BD8CE6C878A3FFB6441A60302634515525E1050 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:452>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CpointerTypeU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTypeU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68382
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_isPrimary_m5AF6EA62872F5E02DF4E88BCB078CAEDDB0813A6 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:453>
|
|
bool L_0 = __this->___U3CisPrimaryU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68383
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_isPrimary_m90DD30E4F4B1641C8F800C4EF04DF078F7F37D2E (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:453>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisPrimaryU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68384
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_button_m72275A3B433F9433FAAC939B5776E908CBAC488C (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:454>
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68385
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_button_mBD5A4ADBC9FB28B3D78019091D0279C18AC5F248 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:454>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68386
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_pressedButtons_m809CC87D0F8B424423079C5DA3E4EFC87E829F02 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:455>
|
|
int32_t L_0 = __this->___U3CpressedButtonsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68387
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_pressedButtons_m0B5199481431978AC07CFEAE090907BA5E70FA68 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:455>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpressedButtonsU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68388
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:456>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68389
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_position_m24E0958379E88BDD173E563CC00B2523E77EE051 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:456>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68390
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_localPosition_m06C5B58432C1E806B885F67BA0FB8C90EAD71793 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:457>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3ClocalPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68391
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_localPosition_m759E75018F6729AA6744C93A57907ACEB390727C (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:457>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3ClocalPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68392
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_deltaPosition_m185F5E48BD0879D48BADC520D64DDD68183B83D2 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:458>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CdeltaPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68393
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_deltaPosition_m12E7B298A9EEDC1D623E72EA99758204F16B4A11 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:458>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CdeltaPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68394
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_deltaTime_mD95C5D61E308ACD9D91FD202D274C2DF94780940 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:459>
|
|
float L_0 = __this->___U3CdeltaTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68395
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_deltaTime_mEECBC843D749F429B1F72559BB488BE17BBFC3E0 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:459>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CdeltaTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68396
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_clickCount_m1E9AE0EF81D8BC131012E0DEE2C4E169C8B1EE06 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:460>
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68397
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:460>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CclickCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68398
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_pressure_mA7FA9AFBE607289D1A785889E0E2C8CEB705EDB2 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:461>
|
|
float L_0 = __this->___U3CpressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68399
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_pressure_m1D036CF601B6EEB97DBDB8DB75F0923D39303FD9 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:461>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CpressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68400
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_tangentialPressure_m585887790F2A05742888E412B19E0331C4402320 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:462>
|
|
float L_0 = __this->___U3CtangentialPressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68401
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_tangentialPressure_m7ADB233CDA686FCB10A995F2A6826EE5F54AB36D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:462>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtangentialPressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68402
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_altitudeAngle_mFDE6773840B002EC90E34041817D96BB8F27A3C4 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:463>
|
|
float L_0 = __this->___U3CaltitudeAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68403
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_altitudeAngle_m8B963C51BB5DB8A14A943F4B1BEC39B175ABABEB (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:463>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CaltitudeAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68404
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_azimuthAngle_mDB91EA27BE4126C4582A66DF75CB8012DE16254B (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:464>
|
|
float L_0 = __this->___U3CazimuthAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68405
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_azimuthAngle_m404D73D4BAF6C658A52B29DD2C1D5FBEDC174139 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:464>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CazimuthAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68406
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEvent_get_twist_mDE5D41083F1E9237B3B852B4E8EA778E2C5D2AE7 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:465>
|
|
float L_0 = __this->___U3CtwistU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68407
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_twist_mCA0ECFFE48E1771A1540212CABB34326C7AD6B5D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:465>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtwistU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68408
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEvent_get_tilt_m424372381952C6375821AE5652E0B61EA26EFB32 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:466>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CtiltU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68409
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_tilt_m48167AF2DE4D07C779878FBB802ED4995D2176D9 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:466>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CtiltU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68410
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_penStatus_mEF440062B56450BE46F12A8CA949CE0C919F7594 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:467>
|
|
int32_t L_0 = __this->___U3CpenStatusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68411
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_penStatus_m239C34E387BA4214C671F7F5E521E9840CBF9A89 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:467>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpenStatusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68412
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEvent_get_radius_m2C6907BE1B20DE289E3C166F45FBBCEEAB095F32 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:468>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68413
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_radius_m387840E4830548F1B1DA865A5A062062D86590EC (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:468>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68414
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEvent_get_radiusVariance_mFED4A22BC0C0667DDC74F6046046A5DA315F4CA2 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:469>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusVarianceU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68415
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_radiusVariance_m2627A414E6EFAE8132E2B4FBAC008D830CF0458D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:469>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusVarianceU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68416
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:470>
|
|
int32_t L_0 = __this->___U3CmodifiersU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68417
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_modifiers_mB339D7800998DB09F5D8B47B7DDD365897FD61C5 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:470>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmodifiersU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68418
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_shiftKey_mB459C1F6FA17DA9FF904A67473A19A1B22970631 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:472>
|
|
int32_t L_0;
|
|
L_0 = PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline(__this, NULL);
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68419
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_ctrlKey_m6EEB9C3A61C998C00946B424121C7BB32CDA6BED (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:473>
|
|
int32_t L_0;
|
|
L_0 = PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline(__this, NULL);
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68420
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_commandKey_m750005DB9507733FAEE22D4DE58F28C11FD15DB3 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:474>
|
|
int32_t L_0;
|
|
L_0 = PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline(__this, NULL);
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68421
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_altKey_m6306F34C315A6BF2B2B95448657A812817AE2B4E (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:475>
|
|
int32_t L_0;
|
|
L_0 = PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline(__this, NULL);
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&4))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68422
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_get_actionKey_mED4C6D96CBEE2F84F52354EFB3540A5759A47CA0 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:478>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:479>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:480>
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138(NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138(NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)1)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = PointerEvent_get_ctrlKey_m6EEB9C3A61C998C00946B424121C7BB32CDA6BED(__this, NULL);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
bool L_3;
|
|
L_3 = PointerEvent_get_commandKey_m750005DB9507733FAEE22D4DE58F28C11FD15DB3(__this, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 68423
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenPosition_m8105D500F8CEAFC09EF630F23DC82F096AAAA81D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:482>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CscreenPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68424
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_screenPosition_m2A9C18D1855EC49528726A531D804DB3C9FC2C02 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:482>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CscreenPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68425
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenDelta_m1C0EDEA11E57C9CD08B6A5862046148C81BF5ACA (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:483>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CscreenDeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68426
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_screenDelta_mE495E40F0372DFDB17BFE2B3DA4DC8FB8341498D (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:483>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CscreenDeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68427
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 PointerEvent_get_worldRay_m0FBCFCF68610E32B815515962312C5FC68DD44EF (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:484>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_0 = __this->___U3CworldRayU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68428
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_worldRay_m8E3141A725E8C1E6B3F906810995A378E351CF47 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:484>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_0 = ___0_value;
|
|
__this->___U3CworldRayU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68429
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:485>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_0 = __this->___U3CdocumentU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68430
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_document_mBF57FD8FA5CDA8228302B2644A0CC582F6122441 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:485>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_0 = ___0_value;
|
|
__this->___U3CdocumentU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdocumentU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68431
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementTarget_m739E8E3984E39BAA54EA101AF1B2EA583DC08F85 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:486>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CelementTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68432
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_elementTarget_m91A332849B9E0D0AFF3E2D49903AF1616588E494 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:486>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CelementTargetU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CelementTargetU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68433
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementUnderPointer_mFD842306621DDC700B678892D68AB6525A00816E (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:487>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CelementUnderPointerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68434
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_set_elementUnderPointer_mC3F0621FA2EB4EBFAF01E784B196FF732B7E7CBF (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:487>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CelementUnderPointerU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CelementUnderPointerU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68435
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent_Read_mE5A2B332E857E3264562FF872625FB5ACE2E3248 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* ___0_self, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_eventData, int32_t ___2_eventType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B4_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B1_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B3_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B2_0 = NULL;
|
|
String_t* G_B5_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B5_1 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B8_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B6_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B7_0 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B9_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:491>
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* L_0 = ___0_self;
|
|
NullCheck(L_0);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = PanelEventHandler_get_eventSystem_m4AC951AFE51C13E82DF39BD27DDD6BE9258535A2(L_0, NULL);
|
|
NullCheck(L_1);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_2;
|
|
L_2 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_1, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___1_eventData;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker1< int32_t, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(26, L_2, L_3);
|
|
PointerEvent_set_pointerId_m1BFCE40A5AF978254069B94292CADC4B39CB4E6B_inline(__this, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:495>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:496>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:497>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:498>
|
|
int32_t L_5;
|
|
L_5 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_6 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerIdBase;
|
|
int32_t L_7 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerCount;
|
|
bool L_8;
|
|
L_8 = PointerEvent_U3CReadU3Eg__InRangeU7C114_0_m43E0E6FB2E0243DEE73E462C398FDD8174E6D072(L_5, L_6, L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
G_B4_0 = __this;
|
|
goto IL_0054;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
int32_t L_9;
|
|
L_9 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_10 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___penPointerIdBase;
|
|
int32_t L_11 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___penPointerCount;
|
|
bool L_12;
|
|
L_12 = PointerEvent_U3CReadU3Eg__InRangeU7C114_0_m43E0E6FB2E0243DEE73E462C398FDD8174E6D072(L_9, L_10, L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
G_B3_0 = G_B1_0;
|
|
goto IL_004d;
|
|
}
|
|
G_B2_0 = G_B1_0;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_13 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse;
|
|
G_B5_0 = L_13;
|
|
G_B5_1 = G_B2_0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_14 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___pen;
|
|
G_B5_0 = L_14;
|
|
G_B5_1 = G_B3_0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_15 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch;
|
|
G_B5_0 = L_15;
|
|
G_B5_1 = G_B4_0;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
PointerEvent_set_pointerType_m1BD8CE6C878A3FFB6441A60302634515525E1050_inline(G_B5_1, G_B5_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:500>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:501>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:502>
|
|
int32_t L_16;
|
|
L_16 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_17 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId;
|
|
if ((((int32_t)L_16) == ((int32_t)L_17)))
|
|
{
|
|
G_B8_0 = __this;
|
|
goto IL_0088;
|
|
}
|
|
G_B6_0 = __this;
|
|
}
|
|
{
|
|
int32_t L_18;
|
|
L_18 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_19 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerIdBase;
|
|
if ((((int32_t)L_18) == ((int32_t)L_19)))
|
|
{
|
|
G_B8_0 = G_B6_0;
|
|
goto IL_0088;
|
|
}
|
|
G_B7_0 = G_B6_0;
|
|
}
|
|
{
|
|
int32_t L_20;
|
|
L_20 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_21 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___penPointerIdBase;
|
|
G_B9_0 = ((((int32_t)L_20) == ((int32_t)L_21))? 1 : 0);
|
|
G_B9_1 = G_B7_0;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
G_B9_0 = 1;
|
|
G_B9_1 = G_B8_0;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
NullCheck(G_B9_1);
|
|
PointerEvent_set_isPrimary_m90DD30E4F4B1641C8F800C4EF04DF078F7F37D2E_inline(G_B9_1, (bool)G_B9_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:505>
|
|
int32_t L_22;
|
|
L_22 = Screen_get_height_m01A3102DE71EE1FBEA51D09D6B0261CF864FE8F9(NULL);
|
|
V_0 = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:507>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = ___1_eventData;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24;
|
|
L_24 = MultipleDisplayUtilities_GetRelativeMousePositionForRaycast_mBD9CBF4855B536FF62D12DA8D774B196C2E7EC1C(L_23, NULL);
|
|
V_1 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:508>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25 = V_1;
|
|
float L_26 = L_25.___z;
|
|
V_2 = il2cpp_codegen_cast_double_to_int<int32_t>(L_26);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:510>
|
|
int32_t L_27 = V_2;
|
|
if ((((int32_t)L_27) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_28 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* L_29 = ((Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields*)il2cpp_codegen_static_fields_for(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var))->___displays;
|
|
NullCheck(L_29);
|
|
if ((((int32_t)L_28) >= ((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:516>
|
|
il2cpp_codegen_runtime_class_init_inline(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* L_30 = ((Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields*)il2cpp_codegen_static_fields_for(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var))->___displays;
|
|
int32_t L_31 = V_2;
|
|
NullCheck(L_30);
|
|
int32_t L_32 = L_31;
|
|
Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
|
|
NullCheck(L_33);
|
|
int32_t L_34;
|
|
L_34 = Display_get_systemHeight_mC20ADD124FBEF94796F736684A3AF4D0AA569FC7(L_33, NULL);
|
|
V_0 = L_34;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:520>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = ___1_eventData;
|
|
NullCheck(L_35);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_36;
|
|
L_36 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_35, NULL);
|
|
V_3 = L_36;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:521>
|
|
int32_t L_37 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_38 = V_1;
|
|
float L_39 = L_38.___y;
|
|
(&V_1)->___y = ((float)il2cpp_codegen_subtract(((float)L_37), L_39));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:522>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = V_3;
|
|
float L_41 = L_40.___y;
|
|
(&V_3)->___y = ((-L_41));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:524>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_42 = V_1;
|
|
PointerEvent_set_screenPosition_m2A9C18D1855EC49528726A531D804DB3C9FC2C02_inline(__this, L_42, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:525>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_43 = V_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44;
|
|
L_44 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_43, NULL);
|
|
PointerEvent_set_screenDelta_mE495E40F0372DFDB17BFE2B3DA4DC8FB8341498D_inline(__this, L_44, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:527>
|
|
PointerEvent_set_deltaTime_mEECBC843D749F429B1F72559BB488BE17BBFC3E0_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:528>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_45 = ___1_eventData;
|
|
NullCheck(L_45);
|
|
float L_46;
|
|
L_46 = PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3_inline(L_45, NULL);
|
|
PointerEvent_set_pressure_m1D036CF601B6EEB97DBDB8DB75F0923D39303FD9_inline(__this, L_46, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:529>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_47 = ___1_eventData;
|
|
NullCheck(L_47);
|
|
float L_48;
|
|
L_48 = PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C_inline(L_47, NULL);
|
|
PointerEvent_set_tangentialPressure_m7ADB233CDA686FCB10A995F2A6826EE5F54AB36D_inline(__this, L_48, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:530>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = ___1_eventData;
|
|
NullCheck(L_49);
|
|
float L_50;
|
|
L_50 = PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE_inline(L_49, NULL);
|
|
PointerEvent_set_altitudeAngle_m8B963C51BB5DB8A14A943F4B1BEC39B175ABABEB_inline(__this, L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:531>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___1_eventData;
|
|
NullCheck(L_51);
|
|
float L_52;
|
|
L_52 = PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42_inline(L_51, NULL);
|
|
PointerEvent_set_azimuthAngle_m404D73D4BAF6C658A52B29DD2C1D5FBEDC174139_inline(__this, L_52, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:532>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = ___1_eventData;
|
|
NullCheck(L_53);
|
|
float L_54;
|
|
L_54 = PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7_inline(L_53, NULL);
|
|
PointerEvent_set_twist_mCA0ECFFE48E1771A1540212CABB34326C7AD6B5D_inline(__this, L_54, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:533>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_55 = ___1_eventData;
|
|
NullCheck(L_55);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_56;
|
|
L_56 = PointerEventData_get_tilt_m9F3341B8386EF98ECB4AA1F104DE90387DE25AF9_inline(L_55, NULL);
|
|
PointerEvent_set_tilt_m48167AF2DE4D07C779878FBB802ED4995D2176D9_inline(__this, L_56, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:534>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_57 = ___1_eventData;
|
|
NullCheck(L_57);
|
|
int32_t L_58;
|
|
L_58 = PointerEventData_get_penStatus_mFDF49B3339E3F3A01407BE25CA2B3DF2F0E10996_inline(L_57, NULL);
|
|
PointerEvent_set_penStatus_m239C34E387BA4214C671F7F5E521E9840CBF9A89_inline(__this, L_58, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:535>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_59 = ___1_eventData;
|
|
NullCheck(L_59);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_60;
|
|
L_60 = PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0_inline(L_59, NULL);
|
|
PointerEvent_set_radius_m387840E4830548F1B1DA865A5A062062D86590EC_inline(__this, L_60, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:536>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_61 = ___1_eventData;
|
|
NullCheck(L_61);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_62;
|
|
L_62 = PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB_inline(L_61, NULL);
|
|
PointerEvent_set_radiusVariance_m2627A414E6EFAE8132E2B4FBAC008D830CF0458D_inline(__this, L_62, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:538>
|
|
int32_t L_63 = ((PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_StaticFields*)il2cpp_codegen_static_fields_for(PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_il2cpp_TypeInfo_var))->___s_Modifiers;
|
|
PointerEvent_set_modifiers_mB339D7800998DB09F5D8B47B7DDD365897FD61C5_inline(__this, L_63, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:540>
|
|
int32_t L_64 = ___2_eventType;
|
|
if (L_64)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:542>
|
|
PointerEvent_set_button_mBD5A4ADBC9FB28B3D78019091D0279C18AC5F248_inline(__this, (-1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:543>
|
|
PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline(__this, 0, NULL);
|
|
goto IL_021d;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:547>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_65 = ___1_eventData;
|
|
NullCheck(L_65);
|
|
int32_t L_66;
|
|
L_66 = PointerEventData_get_button_mA8CBDAF2E16927E6952BC60040D56630BCC95B0B_inline(L_65, NULL);
|
|
int32_t L_67;
|
|
L_67 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(0, L_66, NULL);
|
|
PointerEvent_set_button_mBD5A4ADBC9FB28B3D78019091D0279C18AC5F248_inline(__this, L_67, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:548>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_68 = ___1_eventData;
|
|
NullCheck(L_68);
|
|
int32_t L_69;
|
|
L_69 = PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline(L_68, NULL);
|
|
PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline(__this, L_69, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:550>
|
|
int32_t L_70 = ___2_eventType;
|
|
if ((!(((uint32_t)L_70) == ((uint32_t)1))))
|
|
{
|
|
goto IL_01f6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:554>
|
|
float L_71;
|
|
L_71 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09* L_72 = ___0_self;
|
|
NullCheck(L_72);
|
|
float L_73 = L_72->___m_LastClickTime;
|
|
il2cpp_codegen_runtime_class_init_inline(ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
int32_t L_74;
|
|
L_74 = ClickDetector_get_s_DoubleClickTime_mC3981303DF2BC78A33219109765E2EBB183DD1B2_inline(NULL);
|
|
if ((!(((float)L_71) > ((float)((float)il2cpp_codegen_add(L_73, ((float)il2cpp_codegen_multiply(((float)L_74), (0.00100000005f)))))))))
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:555>
|
|
PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline(__this, 0, NULL);
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:558>
|
|
int32_t L_75;
|
|
L_75 = PointerEvent_get_clickCount_m1E9AE0EF81D8BC131012E0DEE2C4E169C8B1EE06_inline(__this, NULL);
|
|
V_5 = L_75;
|
|
int32_t L_76 = V_5;
|
|
PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline(__this, ((int32_t)il2cpp_codegen_add(L_76, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:560>
|
|
int32_t L_77;
|
|
L_77 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
int32_t L_78;
|
|
L_78 = PointerEvent_get_button_m72275A3B433F9433FAAC939B5776E908CBAC488C_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_PressButton_mBB102F81A0E72F8A7685E31979C1069FAB22C05F(L_77, L_78, NULL);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_01f6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:562>
|
|
int32_t L_79 = ___2_eventType;
|
|
if ((!(((uint32_t)L_79) == ((uint32_t)2))))
|
|
{
|
|
goto IL_020b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:564>
|
|
int32_t L_80;
|
|
L_80 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
int32_t L_81;
|
|
L_81 = PointerEvent_get_button_m72275A3B433F9433FAAC939B5776E908CBAC488C_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_ReleaseButton_m37AD62F48C80F0087158DA241DC055703268D494(L_80, L_81, NULL);
|
|
}
|
|
|
|
IL_020b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:567>
|
|
int32_t L_82;
|
|
L_82 = PointerEvent_get_clickCount_m1E9AE0EF81D8BC131012E0DEE2C4E169C8B1EE06_inline(__this, NULL);
|
|
int32_t L_83;
|
|
L_83 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(1, L_82, NULL);
|
|
PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline(__this, L_83, NULL);
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:570>
|
|
int32_t L_84;
|
|
L_84 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
int32_t L_85;
|
|
L_85 = PointerDeviceState_GetPressedButtons_m4967FF91F44AE300DCDB3F5136823221134666BC(L_84, NULL);
|
|
PointerEvent_set_pressedButtons_m0B5199481431978AC07CFEAE090907BA5E70FA68_inline(__this, L_85, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:572>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_86 = ___1_eventData;
|
|
NullCheck(L_86);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_87;
|
|
L_87 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_86, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_88 = L_87.___origin;
|
|
V_4 = L_88;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:573>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_89 = V_4;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_90 = ___1_eventData;
|
|
NullCheck(L_90);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_91;
|
|
L_91 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_90, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_92 = L_91.___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_93 = V_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_94;
|
|
L_94 = Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline(L_92, L_93, NULL);
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_95;
|
|
memset((&L_95), 0, sizeof(L_95));
|
|
Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C_inline((&L_95), L_89, L_94, NULL);
|
|
PointerEvent_set_worldRay_m8E3141A725E8C1E6B3F906810995A378E351CF47_inline(__this, L_95, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:574>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_96 = ___1_eventData;
|
|
NullCheck(L_96);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_97;
|
|
L_97 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_96, NULL);
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_98 = L_97.___document;
|
|
PointerEvent_set_document_mBF57FD8FA5CDA8228302B2644A0CC582F6122441_inline(__this, L_98, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:575>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_99 = ___1_eventData;
|
|
NullCheck(L_99);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_100;
|
|
L_100 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_99, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_101 = L_100.___element;
|
|
PointerEvent_set_elementUnderPointer_mC3F0621FA2EB4EBFAF01E784B196FF732B7E7CBF_inline(__this, L_101, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:576>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68436
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_ComputeTarget_m144F7D861BCFCBD041431FB7DD52CFD6C9BD9406 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B10_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B10_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B8_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B8_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B9_0 = NULL;
|
|
PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* G_B9_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:581>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = ___0_panel;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:584>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:585>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_2 = ___0_panel;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = PointerEvent_get_screenPosition_m8105D500F8CEAFC09EF630F23DC82F096AAAA81D_inline(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5;
|
|
L_5 = PointerEvent_get_screenDelta_m1C0EDEA11E57C9CD08B6A5862046148C81BF5ACA_inline(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_5, NULL);
|
|
NullCheck(L_2);
|
|
bool L_7;
|
|
L_7 = BaseRuntimePanel_ScreenToPanel_m00326D52E63B0FFA18EB9B80348369B76ABEF845(L_2, L_4, L_6, (&V_0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:586>
|
|
PointerEvent_set_elementTarget_m91A332849B9E0D0AFF3E2D49903AF1616588E494_inline(__this, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, NULL);
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:590>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_8;
|
|
L_8 = PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:591>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:593>
|
|
il2cpp_codegen_runtime_class_init_inline(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_10 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_StaticFields*)il2cpp_codegen_static_fields_for(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var))->___s_EventDispatcher;
|
|
NullCheck(L_10);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_11;
|
|
L_11 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(L_10, NULL);
|
|
int32_t L_12;
|
|
L_12 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_13;
|
|
L_13 = PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891(L_11, L_12, NULL);
|
|
V_1 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_13, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:594>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_1;
|
|
NullCheck(L_15);
|
|
RuntimeObject* L_16;
|
|
L_16 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_15, NULL);
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_17 = ___0_panel;
|
|
if ((((RuntimeObject*)(RuntimeObject*)L_16) == ((RuntimeObject*)(BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_17)))
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:595>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:597>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = L_18;
|
|
if (L_19)
|
|
{
|
|
G_B10_0 = L_19;
|
|
G_B10_1 = __this;
|
|
goto IL_0085;
|
|
}
|
|
G_B8_0 = L_19;
|
|
G_B8_1 = __this;
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20;
|
|
L_20 = PointerEvent_get_elementUnderPointer_mFD842306621DDC700B678892D68AB6525A00816E_inline(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B10_0 = L_21;
|
|
G_B10_1 = G_B8_1;
|
|
goto IL_0085;
|
|
}
|
|
G_B9_0 = L_21;
|
|
G_B9_1 = G_B8_1;
|
|
}
|
|
{
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_22;
|
|
L_22 = PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F_inline(__this, NULL);
|
|
NullCheck(L_22);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_23;
|
|
L_23 = UIDocument_get_rootVisualElement_mA6214AAAA8DE0A4DE36AA35F9A98CF8065ED51E1(L_22, NULL);
|
|
G_B10_0 = L_23;
|
|
G_B10_1 = G_B9_1;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
NullCheck(G_B10_1);
|
|
PointerEvent_set_elementTarget_m91A332849B9E0D0AFF3E2D49903AF1616588E494_inline(G_B10_1, G_B10_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:598>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24;
|
|
L_24 = PointerEvent_get_elementTarget_m739E8E3984E39BAA54EA101AF1B2EA583DC08F85_inline(__this, NULL);
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_25;
|
|
L_25 = PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F_inline(__this, NULL);
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_26;
|
|
L_26 = PointerEvent_get_worldRay_m0FBCFCF68610E32B815515962312C5FC68DD44EF_inline(__this, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27;
|
|
L_27 = PointerEvent_GetPanelPosition_m3CB7DAB5EFFD9008B1A371DE9D2BC88484DB9B82(__this, L_24, L_25, L_26, NULL);
|
|
V_0 = L_27;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:601>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29 = L_28;
|
|
V_2 = L_29;
|
|
PointerEvent_set_position_m24E0958379E88BDD173E563CC00B2523E77EE051_inline(__this, L_29, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = V_2;
|
|
PointerEvent_set_localPosition_m759E75018F6729AA6744C93A57907ACEB390727C_inline(__this, L_30, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:602>
|
|
int32_t L_31;
|
|
L_31 = PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline(__this, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_32;
|
|
L_32 = PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33;
|
|
L_33 = PointerDeviceState_GetPointerDeltaPosition_m9BE1FB23F0681CAC593F807CE36BDD9E23ECC523(L_31, 0, L_32, NULL);
|
|
PointerEvent_set_deltaPosition_m12E7B298A9EEDC1D623E72EA99758204F16B4A11_inline(__this, L_33, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:603>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68437
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_GetPanelPosition_m3CB7DAB5EFFD9008B1A371DE9D2BC88484DB9B82 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_pickedElement, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___1_document, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___2_worldRay, const RuntimeMethod* method)
|
|
{
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:608>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_0 = ___1_document;
|
|
NullCheck(L_0);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1;
|
|
L_1 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_2;
|
|
L_2 = Transform_get_worldToLocalMatrix_mB633C122A01BCE8E51B10B8B8CB95F580750B3F1(L_1, NULL);
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_3 = ___2_worldRay;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_4;
|
|
L_4 = VisualElementExtensions_TransformRay_m1C4304EC8A15C45DBDCBD5458D23FBC4D17C6080(L_2, L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:609>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = ___0_pickedElement;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_6 = V_0;
|
|
bool L_7;
|
|
L_7 = VisualElementExtensions_IntersectWorldRay_m740C29041FDCD2D755B56E69AACC849CE9528659(L_5, L_6, (&V_1), (&V_2), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:610>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
L_8 = Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline((&V_0), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
L_9 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline((&V_0), NULL);
|
|
float L_10 = V_1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11;
|
|
L_11 = Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline(L_9, L_10, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
L_12 = Vector3_op_Addition_m78C0EC70CB66E8DCAC225743D82B268DAEE92067_inline(L_8, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:611>
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 68438
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEvent__ctor_mE689E41BEA012A2914C799FECBCE48F7A58FCF73 (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68439
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEvent_U3CReadU3Eg__InRangeU7C114_0_m43E0E6FB2E0243DEE73E462C398FDD8174E6D072 (int32_t ___0_i, int32_t ___1_start, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:493>
|
|
int32_t L_0 = ___0_i;
|
|
int32_t L_1 = ___1_start;
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_i;
|
|
int32_t L_3 = ___1_start;
|
|
int32_t L_4 = ___2_count;
|
|
return (bool)((((int32_t)L_2) < ((int32_t)((int32_t)il2cpp_codegen_add(L_3, L_4))))? 1 : 0);
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68440
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PanelRaycaster_get_panel_m9D8D3E52B0D7A2E4F71B997CC95FB8C808395B85 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:26>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_set_panel_m840C66DD38B96603B01E8FAA09C74CA1A67E602C (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:29>
|
|
RuntimeObject* L_0 = ___0_value;
|
|
V_0 = ((BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)CastclassClass((RuntimeObject*)L_0, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4_il2cpp_TypeInfo_var));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:30>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_2 = V_0;
|
|
if ((((RuntimeObject*)(BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_1) == ((RuntimeObject*)(BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4*)L_2)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:32>
|
|
PanelRaycaster_UnregisterCallbacks_mD26ACD360F0C27CFB33A824ADE371742853D66F6(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:33>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = V_0;
|
|
__this->___m_Panel = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Panel), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:34>
|
|
PanelRaycaster_RegisterCallbacks_m840C71BFC5351078CB6BE82C8510F596DC55616D(__this, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:36>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68442
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_RegisterCallbacks_m840C71BFC5351078CB6BE82C8510F596DC55616D (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:41>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:43>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_2, __this, (intptr_t)((void*)PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2_RuntimeMethod_var), NULL);
|
|
NullCheck(L_1);
|
|
BaseRuntimePanel_add_destroyed_m7191C21A4B5662F3855824E4C516E0232A1C5C81(L_1, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:45>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68443
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_UnregisterCallbacks_mD26ACD360F0C27CFB33A824ADE371742853D66F6 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:49>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:51>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_2, __this, (intptr_t)((void*)PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2_RuntimeMethod_var), NULL);
|
|
NullCheck(L_1);
|
|
BaseRuntimePanel_remove_destroyed_mF4555F874EDE8F3ED9783051C3666C8B0E6CA2DC(L_1, L_2, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:53>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68444
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_OnPanelDestroyed_mF761BC7FD349DB95EBBD8C8D55B404300E5D8AF2 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:57>
|
|
PanelRaycaster_set_panel_m840C66DD38B96603B01E8FAA09C74CA1A67E602C(__this, (RuntimeObject*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:58>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68445
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PanelRaycaster_get_selectableGameObject_m26B496BDA7A92AD0C66B4209171B56321308A628 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:60>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline(G_B2_0, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68446
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PanelRaycaster_get_sortOrderPriority_mBFB2EAC6C4F13CAA1E1723216A0B624B7652EA54 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:62>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0011;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
G_B3_0 = (0.0f);
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
float L_2;
|
|
L_2 = BaseRuntimePanel_get_sortingPriority_m7B035930943248B472823F7E8128928000002155_inline(G_B2_0, NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(G_B3_0, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 68447
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PanelRaycaster_get_renderOrderPriority_m5E21F65FA1954268DBE3862EB754B20A8B48BE8F (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B2_0 = NULL;
|
|
int32_t G_B2_1 = 0;
|
|
int32_t G_B2_2 = 0;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* G_B1_0 = NULL;
|
|
int32_t G_B1_1 = 0;
|
|
int32_t G_B1_2 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
int32_t G_B3_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:63>
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var))->___s_ResolvedSortingIndexMax;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
G_B2_2 = ((int32_t)2147483647LL);
|
|
goto IL_0017;
|
|
}
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
G_B1_2 = ((int32_t)2147483647LL);
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
G_B3_1 = G_B1_1;
|
|
G_B3_2 = G_B1_2;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
int32_t L_3 = G_B2_0->___resolvedSortingIndex;
|
|
G_B3_0 = L_3;
|
|
G_B3_1 = G_B2_1;
|
|
G_B3_2 = G_B2_2;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return ((int32_t)il2cpp_codegen_subtract(G_B3_2, ((int32_t)il2cpp_codegen_subtract(G_B3_1, G_B3_0))));
|
|
}
|
|
}
|
|
// Method Definition Index: 68448
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster_Raycast_mFD63FF3E65B14E412D6CD21A3A9455416CE5F895 (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_resultAppendList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
float V_4 = 0.0f;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
bool V_7 = false;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:69>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = __this->___m_Panel;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = __this->___m_Panel;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:70>
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:72>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3 = __this->___m_Panel;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = BaseRuntimePanel_get_targetDisplay_mF2B0D9BB8A234F9273185DFAA4EC014E86CEDFD3_inline(L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:74>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___0_eventData;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = MultipleDisplayUtilities_GetRelativeMousePositionForRaycast_mBD9CBF4855B536FF62D12DA8D774B196C2E7EC1C(L_5, NULL);
|
|
V_1 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:75>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = V_1;
|
|
V_2 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:76>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_eventData;
|
|
NullCheck(L_8);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_8, NULL);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:78>
|
|
int32_t L_10;
|
|
L_10 = Screen_get_height_m01A3102DE71EE1FBEA51D09D6B0261CF864FE8F9(NULL);
|
|
V_4 = ((float)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:79>
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_11) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* L_13 = ((Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields*)il2cpp_codegen_static_fields_for(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var))->___displays;
|
|
NullCheck(L_13);
|
|
if ((((int32_t)L_12) >= ((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:85>
|
|
il2cpp_codegen_runtime_class_init_inline(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var);
|
|
DisplayU5BU5D_tAD77D7EE2B839E3EDA0D1C0028B64F867F400C7F* L_14 = ((Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_StaticFields*)il2cpp_codegen_static_fields_for(Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1_il2cpp_TypeInfo_var))->___displays;
|
|
int32_t L_15 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
Display_t06A3B0F5169CA3C02A4D5171F27499A23D3581D1* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Display_get_systemHeight_mC20ADD124FBEF94796F736684A3AF4D0AA569FC7(L_17, NULL);
|
|
V_4 = ((float)L_18);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:89>
|
|
float L_19 = V_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20 = V_2;
|
|
float L_21 = L_20.___y;
|
|
(&V_2)->___y = ((float)il2cpp_codegen_subtract(L_19, L_21));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:90>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = V_3;
|
|
float L_23 = L_22.___y;
|
|
(&V_3)->___y = ((-L_23));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:92>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___0_eventData;
|
|
NullCheck(L_24);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_25;
|
|
L_25 = BaseEventData_get_currentInputModule_mA46B583FC6DAA697F2DAA91A73D14B3E914AF1A5(L_24, NULL);
|
|
V_5 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:93>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_26 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_26, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_27)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:94>
|
|
return;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:95>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_28 = V_5;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_29 = ___0_eventData;
|
|
NullCheck(L_28);
|
|
int32_t L_30;
|
|
L_30 = VirtualFuncInvoker1< int32_t, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(26, L_28, L_29);
|
|
V_6 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:97>
|
|
il2cpp_codegen_runtime_class_init_inline(PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var);
|
|
ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* L_31 = ((PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_StaticFields*)il2cpp_codegen_static_fields_for(PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var))->___panelPicker;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_32 = __this->___m_Panel;
|
|
int32_t L_33 = V_6;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_35;
|
|
L_35 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_34, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_36 = V_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_37 = V_1;
|
|
float L_38 = L_37.___z;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_39;
|
|
memset((&L_39), 0, sizeof(L_39));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_39), il2cpp_codegen_cast_double_to_int<int32_t>(L_38), Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
NullCheck(L_31);
|
|
bool L_40;
|
|
L_40 = ScreenOverlayPanelPicker_TryPick_m8600D9B869371DB68AEFB2570846094B293C2A3B(L_31, ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)CastclassClass((RuntimeObject*)L_32, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var)), L_33, L_35, L_36, L_39, (&V_7), NULL);
|
|
if (L_40)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:98>
|
|
return;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:100>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:101>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:102>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:103>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:104>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:105>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:106>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_41 = ___1_resultAppendList;
|
|
il2cpp_codegen_initobj((&V_8), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_42;
|
|
L_42 = PanelRaycaster_get_selectableGameObject_m26B496BDA7A92AD0C66B4209171B56321308A628(__this, NULL);
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline((&V_8), L_42, NULL);
|
|
(&V_8)->___module = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_8)->___module), (void*)__this);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_43 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44;
|
|
L_44 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_43, NULL);
|
|
(&V_8)->___screenPosition = L_44;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_45 = __this->___m_Panel;
|
|
NullCheck(L_45);
|
|
int32_t L_46;
|
|
L_46 = BaseRuntimePanel_get_targetDisplay_mF2B0D9BB8A234F9273185DFAA4EC014E86CEDFD3_inline(L_45, NULL);
|
|
(&V_8)->___displayIndex = L_46;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_47 = V_8;
|
|
NullCheck(L_41);
|
|
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(L_41, L_47, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:107>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68449
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PanelRaycaster_get_eventCamera_m5CDBA1FA81F8BB62020925C81617830897793A2B (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:109>
|
|
return (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 68450
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster__ctor_m1F8C36B6C6A4A92394FFB160E6A084F8FA833F6C (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68451
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelRaycaster__cctor_m05A59D691D75B4307418FA8E86838BF05961782F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelRaycaster.cs:65>
|
|
ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223* L_0 = (ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223*)il2cpp_codegen_object_new(ScreenOverlayPanelPicker_t6489FF53DCEEAF8160B7734B756D2A7D92999223_il2cpp_TypeInfo_var);
|
|
ScreenOverlayPanelPicker__ctor_m1158286C920DDAF8CDE5BAA39457184A9D0F6E5B(L_0, NULL);
|
|
((PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_StaticFields*)il2cpp_codegen_static_fields_for(PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var))->___panelPicker = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_StaticFields*)il2cpp_codegen_static_fields_for(PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_il2cpp_TypeInfo_var))->___panelPicker), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68452
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* UIToolkitInteroperabilityBridge_get_eventSystem_mE3F5A36A1DA1EC6CE14CF9789D5CF3969C927D82 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:25>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68453
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_eventSystem_m386E6928C376FC25E2305B8624B84CE8D3513692 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:28>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:28>
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:30>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3 = ___0_value;
|
|
__this->___m_EventSystem = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventSystem), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:31>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68454
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_overrideUIToolkitEvents_mC49A797AE660760974A355D7757D64983E145DA2 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:47>
|
|
bool L_0 = __this->___m_OverrideUIToolkitEvents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68455
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_overrideUIToolkitEvents_m021BC8EE329FA085B43E7AEDD17B44060F84FB3C (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:50>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_OverrideUIToolkitEvents = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:51>
|
|
UIToolkitInteroperabilityBridge_ApplyOverrideUIToolkitEvents_m7BFAF191C342A20D6B9340F0CFAA153978582450(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:52>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68456
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UIToolkitInteroperabilityBridge_get_handlerTypes_m905BCDE26F75313E551368C9328475A7B3ECEA52 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:57>
|
|
int32_t L_0 = __this->___m_HandlerTypes;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68457
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_handlerTypes_m99979539D1EEBF4106C30869CEB71CFC52305A53 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:60>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_HandlerTypes = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:61>
|
|
UIToolkitInteroperabilityBridge_ApplyOtherProperties_mAE2DAE5F313A7ECAA69983149018C32B6748FDF2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:62>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68458
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UIToolkitInteroperabilityBridge_get_worldPickingLayers_m3F5DC184A774D4B74A996AC69CF5B53BDB77EEA1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:67>
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_WorldPickingLayers;
|
|
int32_t L_1;
|
|
L_1 = LayerMask_op_Implicit_m7F5A5B9D079281AC445ED39DEE1FCFA9D795810D(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68459
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_worldPickingLayers_mCD7BE7FD1A029CD3AB244084D14CC895178C65AA (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:68>
|
|
int32_t L_0 = ___0_value;
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_1;
|
|
L_1 = LayerMask_op_Implicit_m01C8996A2CB2085328B9C33539C43139660D8222(L_0, NULL);
|
|
__this->___m_WorldPickingLayers = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68460
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UIToolkitInteroperabilityBridge_get_worldPickingMaxDistance_m8DA2161842E394D83D784FD01090EB346A22C32B (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:73>
|
|
float L_0 = __this->___m_WorldPickingMaxDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68461
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_worldPickingMaxDistance_mFBAE8E765908A582ACF5385F18D36BC1098F7D54 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:74>
|
|
float L_0 = ___0_value;
|
|
__this->___m_WorldPickingMaxDistance = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68462
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_createDefaultPanelComponents_mA5014E718D4717CE3A3C24C1D9D6741ACF08A662 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:79>
|
|
bool L_0 = __this->___m_CreateDefaultPanelComponents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68463
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_set_createDefaultPanelComponents_mF82EF5DD7BFEC79C0A08E195F3020FAC21D1D650 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:82>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_CreateDefaultPanelComponents = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:83>
|
|
UIToolkitInteroperabilityBridge_ApplyOtherProperties_mAE2DAE5F313A7ECAA69983149018C32B6748FDF2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68464
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_shouldTrackPanels_mD5481EE8957FB7E318A21F9B424733C2E421976B (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:87>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:88>
|
|
bool L_0;
|
|
L_0 = UIToolkitInteroperabilityBridge_get_overrideUIToolkitEvents_mC49A797AE660760974A355D7757D64983E145DA2_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = UIToolkitInteroperabilityBridge_get_createDefaultPanelComponents_mA5014E718D4717CE3A3C24C1D9D6741ACF08A662_inline(__this, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = __this->___m_Started;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = __this->___m_Enabled;
|
|
return L_3;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68465
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StartTrackingUIToolkitPanels_m0CB9C118D44353A47A868988CB3BF12508FC5A45 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m3643ACA7C03387304EFABDD34699EA2D44722C71_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA6180D596DC7A7426F498A740F22BFA2EBF98E03_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m171CEB2C6F8B5AAD9B25CC5768D090A42ED70A0C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mAD32901DADB25DE2B9BD8BA69DBC5CD2BF396465_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:92>
|
|
bool L_0 = __this->___m_IsTrackingPanels;
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = UIToolkitInteroperabilityBridge_get_shouldTrackPanels_mD5481EE8957FB7E318A21F9B424733C2E421976B(__this, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:92>
|
|
return;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:94>
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
List_1_t903D292E8D18EC8ED8116528664B3713ECF95FD3* L_2;
|
|
L_2 = UIElementsRuntimeUtility_GetSortedPlayerPanels_m670C8594565AABB890C94CDBA06DBD5C259CF466(NULL);
|
|
NullCheck(L_2);
|
|
Enumerator_tE2DD07A3D08C7A4A42C0A6EE466A118BB6E0D092 L_3;
|
|
L_3 = List_1_GetEnumerator_mAD32901DADB25DE2B9BD8BA69DBC5CD2BF396465(L_2, List_1_GetEnumerator_mAD32901DADB25DE2B9BD8BA69DBC5CD2BF396465_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0038:
|
|
{
|
|
Enumerator_Dispose_m3643ACA7C03387304EFABDD34699EA2D44722C71((&V_0), Enumerator_Dispose_m3643ACA7C03387304EFABDD34699EA2D44722C71_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_002d_1;
|
|
}
|
|
|
|
IL_001e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:94>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_4;
|
|
L_4 = Enumerator_get_Current_m171CEB2C6F8B5AAD9B25CC5768D090A42ED70A0C_inline((&V_0), Enumerator_get_Current_m171CEB2C6F8B5AAD9B25CC5768D090A42ED70A0C_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:96>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = V_1;
|
|
UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5(__this, L_5, NULL);
|
|
}
|
|
|
|
IL_002d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:94>
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_mA6180D596DC7A7426F498A740F22BFA2EBF98E03((&V_0), Enumerator_MoveNext_mA6180D596DC7A7426F498A740F22BFA2EBF98E03_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_001e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:99>
|
|
Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* L_7 = (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514*)il2cpp_codegen_object_new(Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m667EAD9BECFFC8AA30410E6127CE7AA5E4096ED0(L_7, __this, (intptr_t)((void*)UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_add_onCreatePanel_m9FCDF5B5B8A7D2D14B500C09B5FA3C56BBF09A17(L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:100>
|
|
__this->___m_IsTrackingPanels = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:101>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68466
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mE9606F47EA36C4BB72F4446C792859EE96D2CA30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:106>
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* L_0 = __this->___trackedPanels;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_1 = ___0_panel;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = HashSet_1_Add_mE9606F47EA36C4BB72F4446C792859EE96D2CA30(L_0, L_1, HashSet_1_Add_mE9606F47EA36C4BB72F4446C792859EE96D2CA30_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:107>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68467
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_StopTrackingUIToolkitPanels_m3DD30C54A5C20E87B674B1EED52BC47C89930073 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_mE24BB1D4CFC489B6826BCE96C254947995223650_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t0AC7335576037404D05612342AE775F7212209AE V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:111>
|
|
bool L_0 = __this->___m_IsTrackingPanels;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:111>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:113>
|
|
Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514* L_1 = (Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514*)il2cpp_codegen_object_new(Action_1_tB6C5CA9EEF96CFE0F4054FD7CC4455C722E66514_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m667EAD9BECFFC8AA30410E6127CE7AA5E4096ED0(L_1, __this, (intptr_t)((void*)UIToolkitInteroperabilityBridge_StartTrackingPanel_m6D69C4E7F0B8E16C733ED2E453518839189A8FE5_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_remove_onCreatePanel_m91E02C7D7E21528EFE8ECECBFB6A7936E8D5FA4B(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:114>
|
|
__this->___m_IsTrackingPanels = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:116>
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* L_2 = __this->___trackedPanels;
|
|
NullCheck(L_2);
|
|
Enumerator_t0AC7335576037404D05612342AE775F7212209AE L_3;
|
|
L_3 = HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22(L_2, HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{
|
|
Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9((&V_0), Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_003e_1;
|
|
}
|
|
|
|
IL_002f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:116>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_4;
|
|
L_4 = Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_inline((&V_0), Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:118>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = V_1;
|
|
UIToolkitInteroperabilityBridge_DestroyPanelGameObject_m32449A03529C966B85F10EBA0045D84585E74875(__this, L_5, NULL);
|
|
}
|
|
|
|
IL_003e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:116>
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61((&V_0), Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_002f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:120>
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* L_7 = __this->___trackedPanels;
|
|
NullCheck(L_7);
|
|
HashSet_1_Clear_mE24BB1D4CFC489B6826BCE96C254947995223650(L_7, HashSet_1_Clear_mE24BB1D4CFC489B6826BCE96C254947995223650_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:122>
|
|
UIToolkitInteroperabilityBridge_DestroyWorldSpacePanelGameObject_mBEA05C7CC73D74E1FCFCC2203D2B29111A2D5283(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:123>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68468
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelGameObject_m8CA11880AF07EE22B1C2A763D50C7D2C4F21A0B8 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:127>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = ___0_panel;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 2;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
V_0 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:128>
|
|
int32_t L_2 = __this->___m_HandlerTypes;
|
|
int32_t L_3 = V_0;
|
|
if (!((int32_t)((int32_t)L_2&(int32_t)L_3)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:130>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_4 = ___0_panel;
|
|
UIToolkitInteroperabilityBridge_CreatePanelGameObject_m66085ED4DCB6419B16E9DBAEAE622BB6CB884E0F(__this, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:134>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = ___0_panel;
|
|
UIToolkitInteroperabilityBridge_DestroyPanelGameObject_m32449A03529C966B85F10EBA0045D84585E74875(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:136>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68469
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_CreatePanelGameObject_m66085ED4DCB6419B16E9DBAEAE622BB6CB884E0F (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mBEC1B7D2BFC2805707A8FB6E9373333E6BFAF344_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass37_0_U3CCreatePanelGameObjectU3Eb__0_m98882BD2DDDDAC603522A0C4CAF9BC912C57AE69_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:141>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = ___0_panel;
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* L_3 = (U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass37_0__ctor_mCFCE0AB5E35E2C7B68F8CD18E5A66E871C544CE2(L_3, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:143>
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* L_4 = V_0;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = ___0_panel;
|
|
NullCheck(L_5);
|
|
String_t* L_6;
|
|
L_6 = Panel_get_name_mA94F3456379C6F6EF228067349CDBE3927BEA8ED(L_5, NULL);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = L_7;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (PanelEventHandler_t7DF19E1B93AD4FE82833AD0801732CB7DD8CAA09_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
NullCheck(L_8);
|
|
ArrayElementTypeCheck (L_8, L_10);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_10);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_11 = L_8;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (PanelRaycaster_tE0F63DEFDFD3D98239ADCA9A093DE89623BF6F7D_0_0_0_var) };
|
|
Type_t* L_13;
|
|
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_13);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t*)L_13);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m721D643351E55308EA4F5F41B67D5446D11C61F0(L_14, L_6, L_11, NULL);
|
|
NullCheck(L_4);
|
|
L_4->___go = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_4->___go), (void*)L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:144>
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_16 = L_15->___go;
|
|
NullCheck(L_16);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17;
|
|
L_17 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_16, NULL);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_18 = __this->___m_EventSystem;
|
|
NullCheck(L_18);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_19;
|
|
L_19 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_18, NULL);
|
|
NullCheck(L_17);
|
|
Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250(L_17, L_19, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:145>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_20 = ___0_panel;
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_22 = L_21->___go;
|
|
NullCheck(L_20);
|
|
BaseRuntimePanel_set_selectableGameObject_m0953E1A50CD22B636B0C36895F3B9976E324A833(L_20, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:146>
|
|
Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* L_23 = __this->___destroyedActions;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_24 = ___0_panel;
|
|
U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* L_25 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_26 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_26, L_25, (intptr_t)((void*)U3CU3Ec__DisplayClass37_0_U3CCreatePanelGameObjectU3Eb__0_m98882BD2DDDDAC603522A0C4CAF9BC912C57AE69_RuntimeMethod_var), NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_27 = L_26;
|
|
V_2 = L_27;
|
|
NullCheck(L_23);
|
|
Dictionary_2_set_Item_mBEC1B7D2BFC2805707A8FB6E9373333E6BFAF344(L_23, L_24, L_27, Dictionary_2_set_Item_mBEC1B7D2BFC2805707A8FB6E9373333E6BFAF344_RuntimeMethod_var);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_28 = V_2;
|
|
V_1 = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:147>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_29 = ___0_panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_30 = V_1;
|
|
NullCheck(L_29);
|
|
BaseRuntimePanel_add_destroyed_m7191C21A4B5662F3855824E4C516E0232A1C5C81(L_29, L_30, NULL);
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:149>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68470
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_DestroyPanelGameObject_m32449A03529C966B85F10EBA0045D84585E74875 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m63D3F42B71E15B4CF2B108D3B3A8B462F62595BD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:153>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_0 = ___0_panel;
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:154>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:156>
|
|
Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* L_4 = __this->___destroyedActions;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_5 = ___0_panel;
|
|
NullCheck(L_4);
|
|
bool L_6;
|
|
L_6 = Dictionary_2_Remove_m63D3F42B71E15B4CF2B108D3B3A8B462F62595BD(L_4, L_5, (&V_1), Dictionary_2_Remove_m63D3F42B71E15B4CF2B108D3B3A8B462F62595BD_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:157>
|
|
return;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:158>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_7 = ___0_panel;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = V_1;
|
|
NullCheck(L_7);
|
|
BaseRuntimePanel_remove_destroyed_mF4555F874EDE8F3ED9783051C3666C8B0E6CA2DC(L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:159>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_9 = ___0_panel;
|
|
NullCheck(L_9);
|
|
BaseRuntimePanel_set_selectableGameObject_m0953E1A50CD22B636B0C36895F3B9976E324A833(L_9, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:160>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23(L_10, NULL);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:162>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68471
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_CreateWorldSpacePanelGameObject_m2130D228F926BDE6F4759DF295C3E5C391FE2590 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EA31552D906EA35DDC05080B9B364EBBCF14261);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:167>
|
|
UIToolkitInteroperabilityBridge_ApplyCameraProperties_m943BD0D793D6EC1AA4F2E6240651E35D69342ACB(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:169>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_WorldSpaceGo;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:171>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88(L_2, _stringLiteral6EA31552D906EA35DDC05080B9B364EBBCF14261, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:172>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4;
|
|
L_4 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_3, NULL);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5 = __this->___m_EventSystem;
|
|
NullCheck(L_5);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_6;
|
|
L_6 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_5, NULL);
|
|
NullCheck(L_4);
|
|
Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250(L_4, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:174>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_7 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline(L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:176>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* L_10;
|
|
L_10 = GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50(L_9, GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50_RuntimeMethod_var);
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:180>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_11 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_12;
|
|
L_12 = Settings_get_eventCameras_m1F42696F9FB66F7A9984BF3DA154B0C14807706F_inline(L_11, NULL);
|
|
V_1 = L_12;
|
|
V_2 = 0;
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:180>
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_13 = V_1;
|
|
int32_t L_14 = V_2;
|
|
NullCheck(L_13);
|
|
int32_t L_15 = L_14;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
|
|
V_3 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:182>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* L_18;
|
|
L_18 = GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50(L_17, GameObject_AddComponent_TisWorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_mCD39A1A1AF912100DF6562F466C7AAEFBEDB5C50_RuntimeMethod_var);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_19 = V_3;
|
|
NullCheck(L_18);
|
|
WorldDocumentRaycaster_set_camera_m89E90A43F11F9F0E646BB4D1C04D9FFD2EF577E8_inline(L_18, L_19, NULL);
|
|
int32_t L_20 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:180>
|
|
int32_t L_21 = V_2;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_22 = V_1;
|
|
NullCheck(L_22);
|
|
if ((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:186>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23 = V_0;
|
|
__this->___m_WorldSpaceGo = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_WorldSpaceGo), (void*)L_23);
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:188>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68472
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_DestroyWorldSpacePanelGameObject_mBEA05C7CC73D74E1FCFCC2203D2B29111A2D5283 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:192>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_WorldSpaceGo;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:193>
|
|
__this->___m_WorldSpaceGo = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_WorldSpaceGo), (void*)(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:194>
|
|
il2cpp_codegen_runtime_class_init_inline(UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:195>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68473
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Start_m37A5CB2B2F2901FD900B5E804F20113E443F579A (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:199>
|
|
__this->___m_Started = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:200>
|
|
UIToolkitInteroperabilityBridge_StartTrackingUIToolkitPanels_m0CB9C118D44353A47A868988CB3BF12508FC5A45(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:201>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68474
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_OnEnable_m3A6AE6F9BB30CFA55AE64E6BBF250BD64DFD7CE2 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:205>
|
|
bool L_0 = __this->___m_Enabled;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:205>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:206>
|
|
__this->___m_Enabled = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:208>
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* L_1;
|
|
L_1 = PanelInputConfiguration_get_current_m13B744D3E766E402A99620D88EDC8838A484701A_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:209>
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* L_3;
|
|
L_3 = PanelInputConfiguration_get_current_m13B744D3E766E402A99620D88EDC8838A484701A_inline(NULL);
|
|
UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1(__this, L_3, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:210>
|
|
Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* L_4 = ((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply;
|
|
Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* L_5 = (Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)il2cpp_codegen_object_new(Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_mB9077C2E0B1E2DCCA89A5B176B1601234D240802(L_5, __this, (intptr_t)((void*)UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_6;
|
|
L_6 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_4, L_5, NULL);
|
|
((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply = ((Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)Castclass((RuntimeObject*)L_6, Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply), (void*)((Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)Castclass((RuntimeObject*)L_6, Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var)));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:212>
|
|
bool L_7 = __this->___m_Started;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:213>
|
|
UIToolkitInteroperabilityBridge_StartTrackingUIToolkitPanels_m0CB9C118D44353A47A868988CB3BF12508FC5A45(__this, NULL);
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:215>
|
|
bool L_8 = __this->___m_OverrideUIToolkitEvents;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:216>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_9 = __this->___m_EventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_RegisterEventSystem_m33E82DDE72D5EDBEFA1B6136E3BA211A90576893(L_9, NULL);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:217>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68475
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_OnDisable_m93C0737D0C6CC93FF4983EB5D486C1EA2CB8FB86 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:221>
|
|
bool L_0 = __this->___m_Enabled;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:221>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:222>
|
|
__this->___m_Enabled = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:224>
|
|
Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* L_1 = ((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply;
|
|
Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5* L_2 = (Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)il2cpp_codegen_object_new(Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_mB9077C2E0B1E2DCCA89A5B176B1601234D240802(L_2, __this, (intptr_t)((void*)UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_3;
|
|
L_3 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_1, L_2, NULL);
|
|
((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply = ((Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)Castclass((RuntimeObject*)L_3, Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___onApply), (void*)((Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5*)Castclass((RuntimeObject*)L_3, Action_1_t8129E1C345B0CBAD6A090511643A3DB5B1EEA6F5_il2cpp_TypeInfo_var)));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:226>
|
|
UIToolkitInteroperabilityBridge_StopTrackingUIToolkitPanels_m3DD30C54A5C20E87B674B1EED52BC47C89930073(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:227>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_4 = __this->___m_EventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_UnregisterEventSystem_m4022148935EBB10319D90CAAB18B3B15C8D5771E(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:228>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68476
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Update_m38B3898B262BF45D2C9ECA5D236C3B603C5B3F2E (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:232>
|
|
UIToolkitInteroperabilityBridge_UpdatePanelGameObjects_m1B2FD16C08812430BAA5F9CB3544EC7B6B27E4C1(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:233>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68477
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_Apply_m91D2946D7D031CAE16212E077806428AF5757DC1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B2_0 = NULL;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B1_0 = NULL;
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B3_1 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B5_1 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B4_1 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B6_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:238>
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* L_0 = ___0_input;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_0011;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 L_2;
|
|
L_2 = Settings_get_Default_m218C2EEC536685296AC73BA0FF35D9D1864949B6_inline(NULL);
|
|
G_B3_0 = L_2;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* L_3 = ___0_input;
|
|
NullCheck(L_3);
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 L_4;
|
|
L_4 = PanelInputConfiguration_get_settings_mBE6F1560B5D64E876D61283A98F5737FFC1DCCD4_inline(L_3, NULL);
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->___m_InputSettings = G_B3_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&G_B3_1->___m_InputSettings))->___m_EventCameras), (void*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:239>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:240>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_5 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
int32_t L_6;
|
|
L_6 = Settings_get_panelInputRedirection_m3947F9DA2962E61BBC71CE0FD73DA7D7BCF40930_inline(L_5, NULL);
|
|
__this->___m_OverrideUIToolkitEvents = (bool)((((int32_t)((((int32_t)L_6) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:241>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:242>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_7 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
bool L_8;
|
|
L_8 = Settings_get_processWorldSpaceInput_m9D58443229B696D722269D40E36079E6C82290D9_inline(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
G_B5_0 = 1;
|
|
G_B5_1 = __this;
|
|
goto IL_0045;
|
|
}
|
|
G_B4_0 = 1;
|
|
G_B4_1 = __this;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
G_B6_0 = 2;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
NullCheck(G_B6_2);
|
|
G_B6_2->___m_HandlerTypes = ((int32_t)(G_B6_1|G_B6_0));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:243>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_9 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_10;
|
|
L_10 = Settings_get_interactionLayers_mBE3C3B439D7CA11F3C00998F95A33B0E22A12081_inline(L_9, NULL);
|
|
__this->___m_WorldPickingLayers = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:244>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_11 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
float L_12;
|
|
L_12 = Settings_get_maxInteractionDistance_mA010BC20942100B9988FC2588C6BAA822F1D5872_inline(L_11, NULL);
|
|
__this->___m_WorldPickingMaxDistance = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:245>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_13 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
bool L_14;
|
|
L_14 = Settings_get_autoCreatePanelComponents_mDDD13C30AB87408A47723B1D98BB99A7A3FFEF04_inline(L_13, NULL);
|
|
__this->___m_CreateDefaultPanelComponents = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:247>
|
|
UIToolkitInteroperabilityBridge_ApplyOverrideUIToolkitEvents_m7BFAF191C342A20D6B9340F0CFAA153978582450(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:248>
|
|
UIToolkitInteroperabilityBridge_ApplyCameraProperties_m943BD0D793D6EC1AA4F2E6240651E35D69342ACB(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:249>
|
|
UIToolkitInteroperabilityBridge_ApplyOtherProperties_mAE2DAE5F313A7ECAA69983149018C32B6748FDF2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:250>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68478
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyOverrideUIToolkitEvents_m7BFAF191C342A20D6B9340F0CFAA153978582450 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:260>
|
|
bool L_0 = __this->___m_OldOverrideUIToolkitEvents;
|
|
bool L_1 = __this->___m_OverrideUIToolkitEvents;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:260>
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:261>
|
|
bool L_2 = __this->___m_OverrideUIToolkitEvents;
|
|
__this->___m_OldOverrideUIToolkitEvents = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:263>
|
|
bool L_3 = __this->___m_Enabled;
|
|
if (L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:263>
|
|
return;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:265>
|
|
bool L_4 = __this->___m_OverrideUIToolkitEvents;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:267>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5 = __this->___m_EventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_RegisterEventSystem_m33E82DDE72D5EDBEFA1B6136E3BA211A90576893(L_5, NULL);
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:271>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_6 = __this->___m_EventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
UIElementsRuntimeUtility_UnregisterEventSystem_m4022148935EBB10319D90CAAB18B3B15C8D5771E(L_6, NULL);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:274>
|
|
UIToolkitInteroperabilityBridge_UpdatePanelTracking_m7F2AD98BB9E49B23170CB7CC113E480F47C300CF(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:275>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68479
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyCameraProperties_m943BD0D793D6EC1AA4F2E6240651E35D69342ACB (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:279>
|
|
V_0 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:281>
|
|
bool L_0 = __this->___m_OldDefaultEventCameraIsMainCamera;
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_1 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline(L_1, NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)L_2)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:283>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_3 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline(L_3, NULL);
|
|
__this->___m_OldDefaultEventCameraIsMainCamera = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:284>
|
|
V_0 = (bool)1;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:287>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_5 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline(L_5, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:289>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:290>
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* L_7 = (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1*)(&__this->___m_InputSettings);
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_8;
|
|
L_8 = Settings_get_eventCameras_m1F42696F9FB66F7A9984BF3DA154B0C14807706F_inline(L_7, NULL);
|
|
V_2 = L_8;
|
|
V_3 = 0;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:290>
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_9 = V_2;
|
|
int32_t L_10 = V_3;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
V_4 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:292>
|
|
int32_t L_13 = V_1;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_14 = V_4;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_14);
|
|
V_1 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_13, ((int32_t)397)))^L_15));
|
|
int32_t L_16 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:290>
|
|
int32_t L_17 = V_3;
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_18 = V_2;
|
|
NullCheck(L_18);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:295>
|
|
int64_t L_19 = __this->___m_OldEventCamerasHash;
|
|
int32_t L_20 = V_1;
|
|
if ((((int64_t)L_19) == ((int64_t)((int64_t)L_20))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:297>
|
|
int32_t L_21 = V_1;
|
|
__this->___m_OldEventCamerasHash = ((int64_t)L_21);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:298>
|
|
V_0 = (bool)1;
|
|
goto IL_0084;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:303>
|
|
__this->___m_OldEventCamerasHash = ((int64_t)0);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:306>
|
|
bool L_22 = V_0;
|
|
if (!L_22)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:307>
|
|
UIToolkitInteroperabilityBridge_DestroyWorldSpacePanelGameObject_mBEA05C7CC73D74E1FCFCC2203D2B29111A2D5283(__this, NULL);
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:308>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68480
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_ApplyOtherProperties_mAE2DAE5F313A7ECAA69983149018C32B6748FDF2 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:312>
|
|
V_0 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:314>
|
|
int32_t L_0 = __this->___m_OldHandlerTypes;
|
|
int32_t L_1 = __this->___m_HandlerTypes;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:316>
|
|
int32_t L_2 = __this->___m_HandlerTypes;
|
|
__this->___m_OldHandlerTypes = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:317>
|
|
V_0 = (bool)1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:320>
|
|
bool L_3 = __this->___m_OldCreateDefaultPanelComponents;
|
|
bool L_4 = __this->___m_CreateDefaultPanelComponents;
|
|
if ((((int32_t)L_3) == ((int32_t)L_4)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:322>
|
|
bool L_5 = __this->___m_CreateDefaultPanelComponents;
|
|
__this->___m_OldCreateDefaultPanelComponents = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:323>
|
|
V_0 = (bool)1;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:326>
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:327>
|
|
UIToolkitInteroperabilityBridge_UpdatePanelTracking_m7F2AD98BB9E49B23170CB7CC113E480F47C300CF(__this, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:328>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68481
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelTracking_m7F2AD98BB9E49B23170CB7CC113E480F47C300CF (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:332>
|
|
bool L_0;
|
|
L_0 = UIToolkitInteroperabilityBridge_get_shouldTrackPanels_mD5481EE8957FB7E318A21F9B424733C2E421976B(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:334>
|
|
UIToolkitInteroperabilityBridge_StartTrackingUIToolkitPanels_m0CB9C118D44353A47A868988CB3BF12508FC5A45(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:338>
|
|
UIToolkitInteroperabilityBridge_StopTrackingUIToolkitPanels_m3DD30C54A5C20E87B674B1EED52BC47C89930073(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:340>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68482
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge_UpdatePanelGameObjects_m1B2FD16C08812430BAA5F9CB3544EC7B6B27E4C1 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Enumerator_t0AC7335576037404D05612342AE775F7212209AE V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:344>
|
|
bool L_0 = __this->___m_IsTrackingPanels;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:344>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:346>
|
|
V_0 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:348>
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* L_1 = __this->___trackedPanels;
|
|
NullCheck(L_1);
|
|
Enumerator_t0AC7335576037404D05612342AE775F7212209AE L_2;
|
|
L_2 = HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22(L_1, HashSet_1_GetEnumerator_m6AFE84D62586057ED12E4491FFFB0254FAF89B22_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003f:
|
|
{
|
|
Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9((&V_1), Enumerator_Dispose_m65654D7F55A8D4D0742AE9DF0B0CF615A18EAEA9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0034_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:348>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_3;
|
|
L_3 = Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_inline((&V_1), Enumerator_get_Current_m01A7B62BF0D7599DDAB4919032163A800D963AD0_RuntimeMethod_var);
|
|
V_2 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:350>
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_4 = V_2;
|
|
UIToolkitInteroperabilityBridge_UpdatePanelGameObject_m8CA11880AF07EE22B1C2A763D50C7D2C4F21A0B8(__this, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:351>
|
|
bool L_5 = V_0;
|
|
BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* L_6 = V_2;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline(L_6, NULL);
|
|
V_0 = (bool)((int32_t)((int32_t)L_5|((((int32_t)L_7) == ((int32_t)0))? 1 : 0)));
|
|
}
|
|
|
|
IL_0034_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:348>
|
|
bool L_8;
|
|
L_8 = Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61((&V_1), Enumerator_MoveNext_m93EEFD7715FB911DCC347C3F0C3783FFE7BC3E61_RuntimeMethod_var);
|
|
if (L_8)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:354>
|
|
bool L_9 = V_0;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = __this->___m_HandlerTypes;
|
|
if (!((int32_t)((int32_t)L_10&2)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:356>
|
|
UIToolkitInteroperabilityBridge_CreateWorldSpacePanelGameObject_m2130D228F926BDE6F4759DF295C3E5C391FE2590(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:360>
|
|
UIToolkitInteroperabilityBridge_DestroyWorldSpacePanelGameObject_mBEA05C7CC73D74E1FCFCC2203D2B29111A2D5283(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:362>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68483
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIToolkitInteroperabilityBridge__ctor_m0302BF67105A11A4F0CC6FC655EBB48CF6B07B70 (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m6AB6D558AE10F5CF8EF8F00E6CC412419B46CE48_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m7AE9EF5905778DA5ADE989958F9B0BB519E0D15D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:34>
|
|
__this->___m_OverrideUIToolkitEvents = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:35>
|
|
__this->___m_HandlerTypes = 3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:36>
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0;
|
|
L_0 = LayerMask_op_Implicit_m01C8996A2CB2085328B9C33539C43139660D8222(((int32_t)-5), NULL);
|
|
__this->___m_WorldPickingLayers = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:37>
|
|
__this->___m_WorldPickingMaxDistance = (std::numeric_limits<float>::infinity());
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:38>
|
|
__this->___m_CreateDefaultPanelComponents = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:103>
|
|
HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153* L_1 = (HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153*)il2cpp_codegen_object_new(HashSet_1_t01DC0A3494E768FB6BFA0BFBF4A602B318303153_il2cpp_TypeInfo_var);
|
|
HashSet_1__ctor_m7AE9EF5905778DA5ADE989958F9B0BB519E0D15D(L_1, HashSet_1__ctor_m7AE9EF5905778DA5ADE989958F9B0BB519E0D15D_RuntimeMethod_var);
|
|
__this->___trackedPanels = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___trackedPanels), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:138>
|
|
Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189* L_2 = (Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189*)il2cpp_codegen_object_new(Dictionary_2_t4BCC3B1B5665C62B6C1B27B7727AA51955D0A189_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m6AB6D558AE10F5CF8EF8F00E6CC412419B46CE48(L_2, Dictionary_2__ctor_m6AB6D558AE10F5CF8EF8F00E6CC412419B46CE48_RuntimeMethod_var);
|
|
__this->___destroyedActions = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___destroyedActions), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:235>
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 L_3;
|
|
L_3 = Settings_get_Default_m218C2EEC536685296AC73BA0FF35D9D1864949B6_inline(NULL);
|
|
__this->___m_InputSettings = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_InputSettings))->___m_EventCameras), (void*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:252>
|
|
__this->___m_OldOverrideUIToolkitEvents = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:253>
|
|
__this->___m_OldHandlerTypes = 3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:254>
|
|
__this->___m_OldCreateDefaultPanelComponents = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:255>
|
|
__this->___m_OldDefaultEventCameraIsMainCamera = (bool)1;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68484
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass37_0__ctor_mCFCE0AB5E35E2C7B68F8CD18E5A66E871C544CE2 (U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68485
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass37_0_U3CCreatePanelGameObjectU3Eb__0_m98882BD2DDDDAC603522A0C4CAF9BC912C57AE69 (U3CU3Ec__DisplayClass37_0_tB2208FA9F28007D9F9441DEE645E8EE717C9C9D0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:146>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___go;
|
|
il2cpp_codegen_runtime_class_init_inline(UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68486
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* WorldDocumentRaycaster_get_eventCamera_m4F9B20D3AF3FDB7074EEBC6C6D2912187B561CF2 (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:21>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___m_EventCamera;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68487
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* WorldDocumentRaycaster_get_camera_m6DFF7320AFCD68BC9DE8C2F6B31139D2E544642D (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:29>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___m_EventCamera;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68488
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorldDocumentRaycaster_set_camera_m89E90A43F11F9F0E646BB4D1C04D9FFD2EF577E8 (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:30>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_value;
|
|
__this->___m_EventCamera = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventCamera), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68489
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorldDocumentRaycaster_Raycast_mE4D5E613F3EFE7C7B450BC98B425D21759406D79 (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_resultAppendList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* V_0 = NULL;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
float V_2 = 0.0f;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_5 = NULL;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* V_6 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_7 = NULL;
|
|
float V_8 = 0.0f;
|
|
bool V_9 = false;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_10 = NULL;
|
|
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* V_11 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* G_B3_0 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* G_B11_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B17_0 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B17_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B16_0 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B16_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B18_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B18_1 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B18_2 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B20_0 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B20_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B19_0 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B19_1 = NULL;
|
|
int32_t G_B21_0 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B21_1 = NULL;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* G_B21_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:42>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)(NULL));
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
|
|
L_2 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
NullCheck(L_2);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_3;
|
|
L_3 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_2, NULL);
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:43>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:44>
|
|
return;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:46>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___0_eventData;
|
|
bool L_7;
|
|
L_7 = VirtualFuncInvoker4< bool, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*, float*, int32_t* >::Invoke(22, __this, L_6, (&V_1), (&V_2), (&V_3));
|
|
if (L_7)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:47>
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:49>
|
|
float L_8 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_9;
|
|
L_9 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
NullCheck(L_9);
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_10;
|
|
L_10 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(L_9, NULL);
|
|
NullCheck(L_10);
|
|
float L_11;
|
|
L_11 = UIToolkitInteroperabilityBridge_get_worldPickingMaxDistance_m8DA2161842E394D83D784FD01090EB346A22C32B_inline(L_10, NULL);
|
|
float L_12;
|
|
L_12 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_8, L_11, NULL);
|
|
V_2 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:50>
|
|
int32_t L_13 = V_3;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_14;
|
|
L_14 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
NullCheck(L_14);
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_15;
|
|
L_15 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(L_14, NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = UIToolkitInteroperabilityBridge_get_worldPickingLayers_m3F5DC184A774D4B74A996AC69CF5B53BDB77EEA1(L_15, NULL);
|
|
V_3 = ((int32_t)(L_13&L_16));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:52>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_17 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = ___0_eventData;
|
|
NullCheck(L_17);
|
|
int32_t L_19;
|
|
L_19 = VirtualFuncInvoker1< int32_t, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(26, L_17, L_18);
|
|
V_4 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:54>
|
|
int32_t L_20 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_21;
|
|
L_21 = PointerDeviceState_GetCameraWithSoftPointerCapture_m98E12AA39783757ED5FF363A064A8A10F155F7C8(L_20, NULL);
|
|
V_5 = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:55>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_22 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_23;
|
|
L_23 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_22, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:57>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_24 = __this->___m_EventCamera;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_25;
|
|
L_25 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_24, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_25)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_26;
|
|
L_26 = Camera_get_main_m52C992F18E05355ABB9EEB64A4BF2215E12762DF(NULL);
|
|
G_B11_0 = L_26;
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_27 = __this->___m_EventCamera;
|
|
G_B11_0 = L_27;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
V_10 = G_B11_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:58>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_28 = V_5;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_29 = V_10;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_30;
|
|
L_30 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_28, L_29, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:59>
|
|
return;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:62>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:63>
|
|
il2cpp_codegen_runtime_class_init_inline(WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var);
|
|
PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* L_31 = ((WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_StaticFields*)il2cpp_codegen_static_fields_for(WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var))->___worldPicker;
|
|
int32_t L_32 = V_4;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_33 = V_1;
|
|
float L_34 = V_2;
|
|
int32_t L_35 = V_3;
|
|
NullCheck(L_31);
|
|
bool L_36;
|
|
L_36 = PhysicsDocumentPicker_TryPickWithCapture_mD7712ED9EC3D5CD944F57E3C16D8550C4E1C029A(L_31, L_32, L_33, L_34, L_35, (&V_11), (&V_6), (&V_7), (&V_8), (&V_9), NULL);
|
|
if (L_36)
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:64>
|
|
return;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:66>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:67>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:68>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:69>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:70>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:71>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:72>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:73>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:74>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:75>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:76>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:77>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_37 = ___1_resultAppendList;
|
|
il2cpp_codegen_initobj((&V_12), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_38 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_39;
|
|
L_39 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_38, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_39)
|
|
{
|
|
G_B17_0 = (&V_12);
|
|
G_B17_1 = L_37;
|
|
goto IL_00e1;
|
|
}
|
|
G_B16_0 = (&V_12);
|
|
G_B16_1 = L_37;
|
|
}
|
|
{
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_40 = V_6;
|
|
NullCheck(L_40);
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_41;
|
|
L_41 = UIDocument_get_containerPanel_m917B0EDBA00E1F0A86DBA66729855453DECC3DD4(L_40, NULL);
|
|
NullCheck(L_41);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_42;
|
|
L_42 = BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline(L_41, NULL);
|
|
G_B18_0 = L_42;
|
|
G_B18_1 = G_B16_0;
|
|
G_B18_2 = G_B16_1;
|
|
goto IL_00e7;
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_43;
|
|
L_43 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
G_B18_0 = L_43;
|
|
G_B18_1 = G_B17_0;
|
|
G_B18_2 = G_B17_1;
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline(G_B18_1, G_B18_0, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44;
|
|
L_44 = Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline((&V_1), NULL);
|
|
(&V_12)->___origin = L_44;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_45;
|
|
L_45 = Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline((&V_1), NULL);
|
|
float L_46 = V_8;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_47;
|
|
L_47 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline((&V_1), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_48;
|
|
L_48 = Vector3_op_Multiply_m7F3B0FA9256CE368D7636558EFEFC4AB0E1A0F41_inline(L_46, L_47, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_49;
|
|
L_49 = Vector3_op_Addition_m78C0EC70CB66E8DCAC225743D82B268DAEE92067_inline(L_45, L_48, NULL);
|
|
(&V_12)->___worldPosition = L_49;
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_50 = V_6;
|
|
(&V_12)->___document = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_12)->___document), (void*)L_50);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = V_7;
|
|
(&V_12)->___element = L_51;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_12)->___element), (void*)L_51);
|
|
(&V_12)->___module = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_12)->___module), (void*)__this);
|
|
float L_52 = V_8;
|
|
(&V_12)->___distance = L_52;
|
|
bool L_53 = V_9;
|
|
if (L_53)
|
|
{
|
|
G_B20_0 = (&V_12);
|
|
G_B20_1 = G_B18_2;
|
|
goto IL_0147;
|
|
}
|
|
G_B19_0 = (&V_12);
|
|
G_B19_1 = G_B18_2;
|
|
}
|
|
{
|
|
G_B21_0 = 0;
|
|
G_B21_1 = G_B19_0;
|
|
G_B21_2 = G_B19_1;
|
|
goto IL_014c;
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
G_B21_0 = ((int32_t)2147483647LL);
|
|
G_B21_1 = G_B20_0;
|
|
G_B21_2 = G_B20_1;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
G_B21_1->___sortingOrder = G_B21_0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_54 = V_12;
|
|
NullCheck(G_B21_2);
|
|
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(G_B21_2, L_54, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:78>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68490
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorldDocumentRaycaster_GetWorldRay_m49EAB8CD26D5DE0FEB396614CF01429B9951054B (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* ___1_worldRay, float* ___2_maxDistance, int32_t* ___3_layerMask, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:91>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___m_EventCamera;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
|
|
L_2 = Camera_get_main_m52C992F18E05355ABB9EEB64A4BF2215E12762DF(NULL);
|
|
G_B3_0 = L_2;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_3 = __this->___m_EventCamera;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
V_0 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:92>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:94>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* L_6 = ___1_worldRay;
|
|
il2cpp_codegen_initobj(L_6, sizeof(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:95>
|
|
float* L_7 = ___2_maxDistance;
|
|
*((float*)L_7) = (float)(0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:96>
|
|
int32_t* L_8 = ___3_layerMask;
|
|
*((int32_t*)L_8) = (int32_t)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:97>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:100>
|
|
float* L_9 = ___2_maxDistance;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
float L_11;
|
|
L_11 = Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD(L_10, NULL);
|
|
*((float*)L_9) = (float)L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:101>
|
|
int32_t* L_12 = ___3_layerMask;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8(L_13, NULL);
|
|
*((int32_t*)L_12) = (int32_t)L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:103>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = ___0_eventData;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
|
|
L_16 = MultipleDisplayUtilities_GetRelativeMousePositionForRaycast_mBD9CBF4855B536FF62D12DA8D774B196C2E7EC1C(L_15, NULL);
|
|
V_1 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:106>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17 = V_1;
|
|
float L_18 = L_17.___z;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80(L_19, NULL);
|
|
if ((((int32_t)il2cpp_codegen_cast_double_to_int<int32_t>(L_18)) == ((int32_t)L_20)))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:108>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* L_21 = ___1_worldRay;
|
|
il2cpp_codegen_initobj(L_21, sizeof(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:109>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:112>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* L_22 = ___1_worldRay;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_23 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_24 = V_1;
|
|
NullCheck(L_23);
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_25;
|
|
L_25 = Camera_ScreenPointToRay_m2887B9A49880B7AB670C57D66B67D6A6689FE315(L_23, L_24, NULL);
|
|
*(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)L_22 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:114>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68491
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorldDocumentRaycaster__ctor_m2DDC29E0BCF1A86A96769704CD0CA1234D763A2F (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68492
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorldDocumentRaycaster__cctor_m6109E75311504734DA486CCD80D6217F01BD4BC9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:33>
|
|
PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D* L_0 = (PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D*)il2cpp_codegen_object_new(PhysicsDocumentPicker_t6B9D461697BAEF92BAE3141E17ED34637074159D_il2cpp_TypeInfo_var);
|
|
PhysicsDocumentPicker__ctor_m41801B95CBA7EE5575F7F3C7CB641FC67981D747(L_0, NULL);
|
|
((WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_StaticFields*)il2cpp_codegen_static_fields_for(WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var))->___worldPicker = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_StaticFields*)il2cpp_codegen_static_fields_for(WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4_il2cpp_TypeInfo_var))->___worldPicker), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68493
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 AxisEventData_get_moveVector_m7979B5CF62B6B3B0C5F2DA8B328C499ED80ECC41 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:11>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CmoveVectorU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68494
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:11>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CmoveVectorU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68495
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mC8E219BB19708AC67C202C860DF2E6D08C29B8B9 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:16>
|
|
int32_t L_0 = __this->___U3CmoveDirU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68496
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:16>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmoveDirU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68497
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AxisEventData__ctor_mD9AFBD293F84F7032BAC2BDCB47FF5A780418CC5 (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:19>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = ___0_eventSystem;
|
|
BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:21>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:22>
|
|
AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline(__this, 4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:23>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68498
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData_Reset_mC3FF13B6FB1012E8FAB00250AE8CD2E1975EF6AC (AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:15>
|
|
__this->___m_Used = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:16>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68499
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData_Use_m5DBA1B649A757E09ACB14C3632998231C03795B8 (AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:26>
|
|
__this->___m_Used = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:27>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68500
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AbstractEventData_get_used_m0C95B1F392BD74E99F3AD87963647AA060EE5DDF (AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:34>
|
|
bool L_0 = __this->___m_Used;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68501
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractEventData__ctor_m3D5B26D1C8BC7ACDDF16F505CF7AE273B54584FC (AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68502
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:44>
|
|
AbstractEventData__ctor_m3D5B26D1C8BC7ACDDF16F505CF7AE273B54584FC(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:46>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = ___0_eventSystem;
|
|
__this->___m_EventSystem = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventSystem), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:47>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68503
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* BaseEventData_get_currentInputModule_mA46B583FC6DAA697F2DAA91A73D14B3E914AF1A5 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:54>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
NullCheck(L_0);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_1;
|
|
L_1 = EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68504
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseEventData_get_selectedObject_m0642DE5E08D7CCC49C67D66B296EEE060E357CE1 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:62>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68505
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseEventData_set_selectedObject_mF3EE53D700B0EA9444D1D7FAF0FB234B4D88A884 (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:63>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(L_0, L_1, __this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/BaseEventData.cs:63>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68506
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:62>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerEnterU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68507
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:62>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerEnterU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerEnterU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68508
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:70>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3ClastPressU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m0B9EDFBA95B410FBD8CA2A82306ED3EA6696AE64 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:70>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3ClastPressU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ClastPressU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68510
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_rawPointerPress_m8B7A6235A116E26EDDBBDB24473BE0F9634C7B71 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:75>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CrawPointerPressU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:75>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CrawPointerPressU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrawPointerPressU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68512
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:80>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerDragU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68513
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:80>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerDragU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerDragU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68514
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:85>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerClickU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68515
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:85>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerClickU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerClickU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68516
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:90>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerCurrentRaycastU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68517
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:90>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___0_value;
|
|
__this->___U3CpointerCurrentRaycastU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___element), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68518
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:95>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerPressRaycastU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68519
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:95>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___0_value;
|
|
__this->___U3CpointerPressRaycastU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___element), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68520
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:102>
|
|
bool L_0 = __this->___U3CeligibleForClickU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68521
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:102>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CeligibleForClickU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68522
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_displayIndex_m8B2088561EA850F1CAD124797F0F6E3756F584FA (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:107>
|
|
int32_t L_0 = __this->___U3CdisplayIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68523
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_displayIndex_mCEBCECBC08CCF4D1770189B0992B8A1847A8137D (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:107>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdisplayIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68524
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:112>
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68525
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:112>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpointerIdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68526
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:117>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68527
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:117>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68528
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:122>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68529
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:122>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CdeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68530
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:127>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68531
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:127>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CpressPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68532
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventData_get_worldPosition_m296F53ACF7665D00DE12A18E1A91E3FFDEB42101 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:134>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CworldPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68533
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_worldPosition_m917BBBF297B2D89BB6836985D466A93B863899FA (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:134>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CworldPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68534
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventData_get_worldNormal_m5C5939C06E4AAC48C134A59A9C8F03A6D6CD8884 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:140>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CworldNormalU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68535
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_worldNormal_mA342C6737631C9C902EFDF1F816AF5C6BE6B0EC7 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:140>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CworldNormalU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68536
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:145>
|
|
float L_0 = __this->___U3CclickTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68537
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:145>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CclickTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68538
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:171>
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68539
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:171>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CclickCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68540
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:176>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscrollDeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68541
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:176>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CscrollDeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68542
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_m3ED1F39E71630C9AB1F340C92F8FA39AA489E1C5 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:184>
|
|
bool L_0 = __this->___U3CuseDragThresholdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68543
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:184>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CuseDragThresholdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68544
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:189>
|
|
bool L_0 = __this->___U3CdraggingU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68545
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:189>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CdraggingU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68546
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mA8CBDAF2E16927E6952BC60040D56630BCC95B0B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:194>
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68547
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:194>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68548
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:204>
|
|
float L_0 = __this->___U3CpressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68549
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:204>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CpressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68550
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:209>
|
|
float L_0 = __this->___U3CtangentialPressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68551
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_tangentialPressure_m66792087B044033F0FF0FA4B2BA316233755EEF4 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:209>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtangentialPressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68552
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:217>
|
|
float L_0 = __this->___U3CaltitudeAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68553
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:217>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CaltitudeAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68554
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:225>
|
|
float L_0 = __this->___U3CazimuthAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68555
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:225>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CazimuthAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68556
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:230>
|
|
float L_0 = __this->___U3CtwistU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68557
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_twist_mE49469F4F730BA43906F2167E7ADDB9CB2F946E4 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:230>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtwistU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68558
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_tilt_m9F3341B8386EF98ECB4AA1F104DE90387DE25AF9 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:235>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CtiltU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68559
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_tilt_m51D7B90D6C480D7C39217BCBADBBE544D722B034 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:235>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CtiltU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68560
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerEventData_get_penStatus_mFDF49B3339E3F3A01407BE25CA2B3DF2F0E10996 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:240>
|
|
int32_t L_0 = __this->___U3CpenStatusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68561
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_penStatus_m875854DF53437651CADFA190BCE3ED14FF4D65BD (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:240>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpenStatusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68562
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:248>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68563
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:248>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68564
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:255>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusVarianceU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68565
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:255>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusVarianceU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68566
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_fullyExited_m8A648782FBCC4F948B2D6DEC3B35AFF59A7C794C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:259>
|
|
bool L_0 = __this->___U3CfullyExitedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68567
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_fullyExited_mDC23BED1E8A933E25E955A25109494A5D9F25C74 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:259>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfullyExitedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68568
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_get_reentered_m8B88B2F3A8C9FBBE878B458560F5BFF2D7DD142B (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:263>
|
|
bool L_0 = __this->___U3CreenteredU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68569
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_reentered_mE363C3D307806C3FF87DF730C14E82AF68A96D8A (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:263>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CreenteredU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68570
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_eventSystem, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:97>
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_0 = (List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B*)il2cpp_codegen_object_new(List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC(L_0, List_1__ctor_m447372C1EF7141193B93090A77395B786C72C7BC_RuntimeMethod_var);
|
|
__this->___hovered = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___hovered), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:266>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1 = ___0_eventSystem;
|
|
BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:268>
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:270>
|
|
PointerEventData_set_displayIndex_mCEBCECBC08CCF4D1770189B0992B8A1847A8137D_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:271>
|
|
PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline(__this, (-1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:272>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(__this, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:273>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(__this, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:274>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(__this, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:275>
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:276>
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:278>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:279>
|
|
PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:280>
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:281>
|
|
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:283>
|
|
PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:284>
|
|
PointerEventData_set_tangentialPressure_m66792087B044033F0FF0FA4B2BA316233755EEF4_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:285>
|
|
PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:286>
|
|
PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:287>
|
|
PointerEventData_set_twist_mE49469F4F730BA43906F2167E7ADDB9CB2F946E4_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:288>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), (0.0f), (0.0f), NULL);
|
|
PointerEventData_set_tilt_m51D7B90D6C480D7C39217BCBADBBE544D722B034_inline(__this, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:289>
|
|
PointerEventData_set_penStatus_m875854DF53437651CADFA190BCE3ED14FF4D65BD_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:290>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE_inline(__this, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:291>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E_inline(__this, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:292>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68571
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:299>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
float L_1;
|
|
L_1 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
|
|
return (bool)((((float)L_1) > ((float)(0.0f)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68572
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventData_IsScrolling_mFB78E050A248CDF5221482334808B82500D0A564 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:307>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
float L_1;
|
|
L_1 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
|
|
return (bool)((((float)L_1) > ((float)(0.0f)))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68573
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PointerEventData_get_enterEventCamera_m2EBF9CB2E5C1B169F6B6BB066C9CF5B99A7476CF (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:315>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0;
|
|
L_0 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(__this, NULL);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_1 = L_0.___module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_3;
|
|
L_3 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(__this, NULL);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_4 = L_3.___module;
|
|
NullCheck(L_4);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
|
|
L_5 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, L_4);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 68574
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:323>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0;
|
|
L_0 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(__this, NULL);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_1 = L_0.___module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_3;
|
|
L_3 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(__this, NULL);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_4 = L_3.___module;
|
|
NullCheck(L_4);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
|
|
L_5 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, L_4);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return (Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 68575
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:331>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_PointerPress;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68576
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:334>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_PointerPress;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:335>
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:337>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = __this->___m_PointerPress;
|
|
PointerEventData_set_lastPress_m0B9EDFBA95B410FBD8CA2A82306ED3EA6696AE64_inline(__this, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:338>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = ___0_value;
|
|
__this->___m_PointerPress = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PointerPress), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:339>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68577
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerEventData_ToString_m49B5681669B6866A981884B774BC48E87D64B48D (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral06A17D93E6D67BEA37EBBF3A9D7FC06B40689CD1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EC5A90CC65C8BDA58643C956BA4E6F8E4436A5A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral32CD35E27C7A609DEDFC112CE9A03B4A284C7CAE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3FDE48D43FDFF79D70DE4C76757AC588B51AF1F2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral495D4C60218BAD5538C974C04D9CD4FB8B7EC251);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral709C1BE385364BF7215290F6C80B9E13ED6C07AB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83952F2F926B6CE09028A693CFFB24D4EAD71048);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C5CA5F3D440697E7CE47F45B0AE3B6DB74C2054);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAAD329BEE4AA4299DC498EF86EE4D802F5F77951);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB0737AF70A35D88FED509B12B8D70C6A63CC1764);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4610CC39459DAF86ACCA195657A89E174A44377);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4705CCB6B015DADE9B7063D15E59D6BAE057C37);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBBA0B8A8F3B59A3EF510E986771C90FB46273A00);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC250738CF6553169DE970EACBEDFB060B58A41B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB944CF13C6D7A748C94693FCC0D72CC49F506A6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB1334B07CE2A0153E77054CF8FA3829A2097735);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE719647F3D6AE731B77236BB9CEAE35C140505FD);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED54BEFF73D847631728E4B5FD6F62359E25783C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED729CE3E8E8DA20DAF15510CF4F4A1A17CA6379);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF21660E57007B57EE52B4DC95B3B2B0C99E3E153);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
float V_4 = 0.0f;
|
|
int32_t V_5 = 0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B2_0 = NULL;
|
|
String_t* G_B2_1 = NULL;
|
|
StringBuilder_t* G_B2_2 = NULL;
|
|
StringBuilder_t* G_B2_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B1_0 = NULL;
|
|
String_t* G_B1_1 = NULL;
|
|
StringBuilder_t* G_B1_2 = NULL;
|
|
StringBuilder_t* G_B1_3 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
String_t* G_B3_1 = NULL;
|
|
StringBuilder_t* G_B3_2 = NULL;
|
|
StringBuilder_t* G_B3_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
StringBuilder_t* G_B5_2 = NULL;
|
|
StringBuilder_t* G_B5_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
StringBuilder_t* G_B4_2 = NULL;
|
|
StringBuilder_t* G_B4_3 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
StringBuilder_t* G_B6_2 = NULL;
|
|
StringBuilder_t* G_B6_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B8_0 = NULL;
|
|
String_t* G_B8_1 = NULL;
|
|
StringBuilder_t* G_B8_2 = NULL;
|
|
StringBuilder_t* G_B8_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
StringBuilder_t* G_B7_2 = NULL;
|
|
StringBuilder_t* G_B7_3 = NULL;
|
|
String_t* G_B9_0 = NULL;
|
|
String_t* G_B9_1 = NULL;
|
|
StringBuilder_t* G_B9_2 = NULL;
|
|
StringBuilder_t* G_B9_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B11_0 = NULL;
|
|
String_t* G_B11_1 = NULL;
|
|
StringBuilder_t* G_B11_2 = NULL;
|
|
StringBuilder_t* G_B11_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B10_0 = NULL;
|
|
String_t* G_B10_1 = NULL;
|
|
StringBuilder_t* G_B10_2 = NULL;
|
|
StringBuilder_t* G_B10_3 = NULL;
|
|
String_t* G_B12_0 = NULL;
|
|
String_t* G_B12_1 = NULL;
|
|
StringBuilder_t* G_B12_2 = NULL;
|
|
StringBuilder_t* G_B12_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:344>
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:345>
|
|
StringBuilder_t* L_1 = L_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(__this, NULL);
|
|
V_0 = L_2;
|
|
String_t* L_3;
|
|
L_3 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_0), NULL);
|
|
String_t* L_4;
|
|
L_4 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralAAD329BEE4AA4299DC498EF86EE4D802F5F77951, L_3, NULL);
|
|
NullCheck(L_1);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_1, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:346>
|
|
StringBuilder_t* L_6 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(__this, NULL);
|
|
V_0 = L_7;
|
|
String_t* L_8;
|
|
L_8 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_0), NULL);
|
|
String_t* L_9;
|
|
L_9 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralDB1334B07CE2A0153E77054CF8FA3829A2097735, L_8, NULL);
|
|
NullCheck(L_6);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_6, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:347>
|
|
StringBuilder_t* L_11 = L_6;
|
|
bool L_12;
|
|
L_12 = PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline(__this, NULL);
|
|
V_1 = L_12;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.boolean_class);
|
|
String_t* L_13;
|
|
L_13 = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63((&V_1), NULL);
|
|
String_t* L_14;
|
|
L_14 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralB4705CCB6B015DADE9B7063D15E59D6BAE057C37, L_13, NULL);
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_11, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:348>
|
|
StringBuilder_t* L_16 = L_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_17;
|
|
L_17 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18 = L_17;
|
|
if (L_18)
|
|
{
|
|
G_B2_0 = L_18;
|
|
G_B2_1 = _stringLiteral9C5CA5F3D440697E7CE47F45B0AE3B6DB74C2054;
|
|
G_B2_2 = L_16;
|
|
G_B2_3 = L_16;
|
|
goto IL_0081;
|
|
}
|
|
G_B1_0 = L_18;
|
|
G_B1_1 = _stringLiteral9C5CA5F3D440697E7CE47F45B0AE3B6DB74C2054;
|
|
G_B1_2 = L_16;
|
|
G_B1_3 = L_16;
|
|
}
|
|
{
|
|
G_B3_0 = ((String_t*)(NULL));
|
|
G_B3_1 = G_B1_1;
|
|
G_B3_2 = G_B1_2;
|
|
G_B3_3 = G_B1_3;
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B2_0);
|
|
G_B3_0 = L_19;
|
|
G_B3_1 = G_B2_1;
|
|
G_B3_2 = G_B2_2;
|
|
G_B3_3 = G_B2_3;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B3_1, G_B3_0, NULL);
|
|
NullCheck(G_B3_2);
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B3_2, L_20, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:349>
|
|
StringBuilder_t* L_22 = G_B3_3;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23;
|
|
L_23 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_24 = L_23;
|
|
if (L_24)
|
|
{
|
|
G_B5_0 = L_24;
|
|
G_B5_1 = _stringLiteralBC250738CF6553169DE970EACBEDFB060B58A41B;
|
|
G_B5_2 = L_22;
|
|
G_B5_3 = L_22;
|
|
goto IL_00a4;
|
|
}
|
|
G_B4_0 = L_24;
|
|
G_B4_1 = _stringLiteralBC250738CF6553169DE970EACBEDFB060B58A41B;
|
|
G_B4_2 = L_22;
|
|
G_B4_3 = L_22;
|
|
}
|
|
{
|
|
G_B6_0 = ((String_t*)(NULL));
|
|
G_B6_1 = G_B4_1;
|
|
G_B6_2 = G_B4_2;
|
|
G_B6_3 = G_B4_3;
|
|
goto IL_00a9;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
String_t* L_25;
|
|
L_25 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B5_0);
|
|
G_B6_0 = L_25;
|
|
G_B6_1 = G_B5_1;
|
|
G_B6_2 = G_B5_2;
|
|
G_B6_3 = G_B5_3;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
String_t* L_26;
|
|
L_26 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B6_1, G_B6_0, NULL);
|
|
NullCheck(G_B6_2);
|
|
StringBuilder_t* L_27;
|
|
L_27 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B6_2, L_26, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:350>
|
|
StringBuilder_t* L_28 = G_B6_3;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29;
|
|
L_29 = PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_30 = L_29;
|
|
if (L_30)
|
|
{
|
|
G_B8_0 = L_30;
|
|
G_B8_1 = _stringLiteral1EC5A90CC65C8BDA58643C956BA4E6F8E4436A5A;
|
|
G_B8_2 = L_28;
|
|
G_B8_3 = L_28;
|
|
goto IL_00c7;
|
|
}
|
|
G_B7_0 = L_30;
|
|
G_B7_1 = _stringLiteral1EC5A90CC65C8BDA58643C956BA4E6F8E4436A5A;
|
|
G_B7_2 = L_28;
|
|
G_B7_3 = L_28;
|
|
}
|
|
{
|
|
G_B9_0 = ((String_t*)(NULL));
|
|
G_B9_1 = G_B7_1;
|
|
G_B9_2 = G_B7_2;
|
|
G_B9_3 = G_B7_3;
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
NullCheck(G_B8_0);
|
|
String_t* L_31;
|
|
L_31 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B8_0);
|
|
G_B9_0 = L_31;
|
|
G_B9_1 = G_B8_1;
|
|
G_B9_2 = G_B8_2;
|
|
G_B9_3 = G_B8_3;
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
String_t* L_32;
|
|
L_32 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B9_1, G_B9_0, NULL);
|
|
NullCheck(G_B9_2);
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B9_2, L_32, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:351>
|
|
StringBuilder_t* L_34 = G_B9_3;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35;
|
|
L_35 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36 = L_35;
|
|
if (L_36)
|
|
{
|
|
G_B11_0 = L_36;
|
|
G_B11_1 = _stringLiteral06A17D93E6D67BEA37EBBF3A9D7FC06B40689CD1;
|
|
G_B11_2 = L_34;
|
|
G_B11_3 = L_34;
|
|
goto IL_00ea;
|
|
}
|
|
G_B10_0 = L_36;
|
|
G_B10_1 = _stringLiteral06A17D93E6D67BEA37EBBF3A9D7FC06B40689CD1;
|
|
G_B10_2 = L_34;
|
|
G_B10_3 = L_34;
|
|
}
|
|
{
|
|
G_B12_0 = ((String_t*)(NULL));
|
|
G_B12_1 = G_B10_1;
|
|
G_B12_2 = G_B10_2;
|
|
G_B12_3 = G_B10_3;
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
NullCheck(G_B11_0);
|
|
String_t* L_37;
|
|
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B11_0);
|
|
G_B12_0 = L_37;
|
|
G_B12_1 = G_B11_1;
|
|
G_B12_2 = G_B11_2;
|
|
G_B12_3 = G_B11_3;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
String_t* L_38;
|
|
L_38 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B12_1, G_B12_0, NULL);
|
|
NullCheck(G_B12_2);
|
|
StringBuilder_t* L_39;
|
|
L_39 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B12_2, L_38, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:352>
|
|
StringBuilder_t* L_40 = G_B12_3;
|
|
bool L_41;
|
|
L_41 = PointerEventData_get_useDragThreshold_m3ED1F39E71630C9AB1F340C92F8FA39AA489E1C5_inline(__this, NULL);
|
|
V_1 = L_41;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.boolean_class);
|
|
String_t* L_42;
|
|
L_42 = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63((&V_1), NULL);
|
|
String_t* L_43;
|
|
L_43 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral709C1BE385364BF7215290F6C80B9E13ED6C07AB, L_42, NULL);
|
|
NullCheck(L_40);
|
|
StringBuilder_t* L_44;
|
|
L_44 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_40, L_43, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:353>
|
|
StringBuilder_t* L_45 = L_40;
|
|
NullCheck(L_45);
|
|
StringBuilder_t* L_46;
|
|
L_46 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_45, _stringLiteral495D4C60218BAD5538C974C04D9CD4FB8B7EC251, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:354>
|
|
StringBuilder_t* L_47 = L_45;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_48;
|
|
L_48 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(__this, NULL);
|
|
V_2 = L_48;
|
|
String_t* L_49;
|
|
L_49 = RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428((&V_2), NULL);
|
|
NullCheck(L_47);
|
|
StringBuilder_t* L_50;
|
|
L_50 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_47, L_49, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:355>
|
|
StringBuilder_t* L_51 = L_47;
|
|
NullCheck(L_51);
|
|
StringBuilder_t* L_52;
|
|
L_52 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_51, _stringLiteral3FDE48D43FDFF79D70DE4C76757AC588B51AF1F2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:356>
|
|
StringBuilder_t* L_53 = L_51;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_54;
|
|
L_54 = PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline(__this, NULL);
|
|
V_2 = L_54;
|
|
String_t* L_55;
|
|
L_55 = RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428((&V_2), NULL);
|
|
NullCheck(L_53);
|
|
StringBuilder_t* L_56;
|
|
L_56 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_53, L_55, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:357>
|
|
StringBuilder_t* L_57 = L_53;
|
|
NullCheck(L_57);
|
|
StringBuilder_t* L_58;
|
|
L_58 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_57, _stringLiteralF21660E57007B57EE52B4DC95B3B2B0C99E3E153, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:358>
|
|
StringBuilder_t* L_59 = L_57;
|
|
int32_t L_60;
|
|
L_60 = PointerEventData_get_displayIndex_m8B2088561EA850F1CAD124797F0F6E3756F584FA_inline(__this, NULL);
|
|
V_3 = L_60;
|
|
String_t* L_61;
|
|
L_61 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_3), NULL);
|
|
NullCheck(L_59);
|
|
StringBuilder_t* L_62;
|
|
L_62 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_59, L_61, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:359>
|
|
StringBuilder_t* L_63 = L_59;
|
|
float L_64;
|
|
L_64 = PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3_inline(__this, NULL);
|
|
V_4 = L_64;
|
|
String_t* L_65;
|
|
L_65 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_4), NULL);
|
|
String_t* L_66;
|
|
L_66 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralB4610CC39459DAF86ACCA195657A89E174A44377, L_65, NULL);
|
|
NullCheck(L_63);
|
|
StringBuilder_t* L_67;
|
|
L_67 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_63, L_66, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:360>
|
|
StringBuilder_t* L_68 = L_63;
|
|
float L_69;
|
|
L_69 = PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C_inline(__this, NULL);
|
|
V_4 = L_69;
|
|
String_t* L_70;
|
|
L_70 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_4), NULL);
|
|
String_t* L_71;
|
|
L_71 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralBBA0B8A8F3B59A3EF510E986771C90FB46273A00, L_70, NULL);
|
|
NullCheck(L_68);
|
|
StringBuilder_t* L_72;
|
|
L_72 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_68, L_71, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:361>
|
|
StringBuilder_t* L_73 = L_68;
|
|
float L_74;
|
|
L_74 = PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE_inline(__this, NULL);
|
|
V_4 = L_74;
|
|
String_t* L_75;
|
|
L_75 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_4), NULL);
|
|
String_t* L_76;
|
|
L_76 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralED729CE3E8E8DA20DAF15510CF4F4A1A17CA6379, L_75, NULL);
|
|
NullCheck(L_73);
|
|
StringBuilder_t* L_77;
|
|
L_77 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_73, L_76, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:362>
|
|
StringBuilder_t* L_78 = L_73;
|
|
float L_79;
|
|
L_79 = PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42_inline(__this, NULL);
|
|
V_4 = L_79;
|
|
String_t* L_80;
|
|
L_80 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_4), NULL);
|
|
String_t* L_81;
|
|
L_81 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralED54BEFF73D847631728E4B5FD6F62359E25783C, L_80, NULL);
|
|
NullCheck(L_78);
|
|
StringBuilder_t* L_82;
|
|
L_82 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_78, L_81, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:363>
|
|
StringBuilder_t* L_83 = L_78;
|
|
float L_84;
|
|
L_84 = PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7_inline(__this, NULL);
|
|
V_4 = L_84;
|
|
String_t* L_85;
|
|
L_85 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_4), NULL);
|
|
String_t* L_86;
|
|
L_86 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralCB944CF13C6D7A748C94693FCC0D72CC49F506A6, L_85, NULL);
|
|
NullCheck(L_83);
|
|
StringBuilder_t* L_87;
|
|
L_87 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_83, L_86, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:364>
|
|
StringBuilder_t* L_88 = L_83;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_89;
|
|
L_89 = PointerEventData_get_tilt_m9F3341B8386EF98ECB4AA1F104DE90387DE25AF9_inline(__this, NULL);
|
|
V_0 = L_89;
|
|
String_t* L_90;
|
|
L_90 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_0), NULL);
|
|
String_t* L_91;
|
|
L_91 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralB0737AF70A35D88FED509B12B8D70C6A63CC1764, L_90, NULL);
|
|
NullCheck(L_88);
|
|
StringBuilder_t* L_92;
|
|
L_92 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_88, L_91, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:365>
|
|
StringBuilder_t* L_93 = L_88;
|
|
int32_t L_94;
|
|
L_94 = PointerEventData_get_penStatus_mFDF49B3339E3F3A01407BE25CA2B3DF2F0E10996_inline(__this, NULL);
|
|
V_5 = L_94;
|
|
Il2CppFakeBox<int32_t> L_95(PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8_il2cpp_TypeInfo_var, (&V_5));
|
|
String_t* L_96;
|
|
L_96 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_95), NULL);
|
|
String_t* L_97;
|
|
L_97 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral32CD35E27C7A609DEDFC112CE9A03B4A284C7CAE, L_96, NULL);
|
|
NullCheck(L_93);
|
|
StringBuilder_t* L_98;
|
|
L_98 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_93, L_97, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:366>
|
|
StringBuilder_t* L_99 = L_93;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_100;
|
|
L_100 = PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0_inline(__this, NULL);
|
|
V_0 = L_100;
|
|
String_t* L_101;
|
|
L_101 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_0), NULL);
|
|
String_t* L_102;
|
|
L_102 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralE719647F3D6AE731B77236BB9CEAE35C140505FD, L_101, NULL);
|
|
NullCheck(L_99);
|
|
StringBuilder_t* L_103;
|
|
L_103 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_99, L_102, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:367>
|
|
StringBuilder_t* L_104 = L_99;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_105;
|
|
L_105 = PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB_inline(__this, NULL);
|
|
V_0 = L_105;
|
|
String_t* L_106;
|
|
L_106 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_0), NULL);
|
|
String_t* L_107;
|
|
L_107 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral83952F2F926B6CE09028A693CFFB24D4EAD71048, L_106, NULL);
|
|
NullCheck(L_104);
|
|
StringBuilder_t* L_108;
|
|
L_108 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_104, L_107, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:368>
|
|
NullCheck(L_104);
|
|
String_t* L_109;
|
|
L_109 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_104);
|
|
return L_109;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68596
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4A71C17E55302D2FAE1A3E68F9B2131829FA80DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mC6D8545B680879430E005FFA6A71DCAD4902E1C1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:33>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_0 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m4A71C17E55302D2FAE1A3E68F9B2131829FA80DB_inline(L_0, List_1_get_Count_m4A71C17E55302D2FAE1A3E68F9B2131829FA80DB_RuntimeMethod_var);
|
|
if ((((int32_t)L_1) > ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
return (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*)NULL;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_2 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
NullCheck(L_2);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_3;
|
|
L_3 = List_1_get_Item_mC6D8545B680879430E005FFA6A71DCAD4902E1C1(L_2, 0, List_1_get_Item_mC6D8545B680879430E005FFA6A71DCAD4902E1C1_RuntimeMethod_var);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 68597
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_current_mCAAA4D0C90542AF31D363CC4ACE4D615D5D28233 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_mD395CBA5E8CAB522E8F3E3061877AAE555E0A21F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_m959EF5351B9F819545562751FCC8227B11E22AD8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mEA22AF56005A449E102C00710F3307753D35D1F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D6BCFE5E06B641A8978CC87B7FDAA9629C09C19);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:36>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_0 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = List_1_IndexOf_mD395CBA5E8CAB522E8F3E3061877AAE555E0A21F(L_0, L_1, List_1_IndexOf_mD395CBA5E8CAB522E8F3E3061877AAE555E0A21F_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:38>
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:40>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_4 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
List_1_RemoveAt_mEA22AF56005A449E102C00710F3307753D35D1F6(L_4, L_5, List_1_RemoveAt_mEA22AF56005A449E102C00710F3307753D35D1F6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:41>
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_6 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_7 = ___0_value;
|
|
NullCheck(L_6);
|
|
List_1_Insert_m959EF5351B9F819545562751FCC8227B11E22AD8(L_6, 0, L_7, List_1_Insert_m959EF5351B9F819545562751FCC8227B11E22AD8_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:43>
|
|
int32_t L_8 = V_0;
|
|
if ((((int32_t)L_8) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:45>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_9 = ___0_value;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_10 = L_9;
|
|
if (L_10)
|
|
{
|
|
G_B5_0 = L_10;
|
|
G_B5_1 = _stringLiteral8D6BCFE5E06B641A8978CC87B7FDAA9629C09C19;
|
|
goto IL_0039;
|
|
}
|
|
G_B4_0 = L_10;
|
|
G_B4_1 = _stringLiteral8D6BCFE5E06B641A8978CC87B7FDAA9629C09C19;
|
|
}
|
|
{
|
|
G_B6_0 = ((String_t*)(NULL));
|
|
G_B6_1 = G_B4_1;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
String_t* L_11;
|
|
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B5_0);
|
|
G_B6_0 = L_11;
|
|
G_B6_1 = G_B5_1;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
String_t* L_12;
|
|
L_12 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B6_1, G_B6_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_12, NULL);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:47>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68598
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:62>
|
|
bool L_0 = __this->___m_sendNavigationEvents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68599
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_sendNavigationEvents_m9309FBEDCBAA85162A202AADF3FDBB7A47D52D30 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:63>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_sendNavigationEvents = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:63>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68600
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:74>
|
|
int32_t L_0 = __this->___m_DragThreshold;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68601
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_pixelDragThreshold_m2D2A087B9A9992D7B624CDB98A6E30BE9D10EF63 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:75>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_DragThreshold = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:75>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68602
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:85>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0 = __this->___m_CurrentInputModule;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68603
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_firstSelectedGameObject_m15FB056EE7A99D8DD5891D40A6E3EF18719F0553 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:93>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_FirstSelected;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68604
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_set_firstSelectedGameObject_m626D151EC4AC93DE63E18689FDC13A03DCFB5AAE (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:94>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___m_FirstSelected = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FirstSelected), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:94>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68605
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:102>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CurrentSelected;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68606
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_lastSelectedGameObject_m494BAB623DA90318F7B37C2FFEAD1D8E17FBE735 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:108>
|
|
return (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 68607
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:121>
|
|
bool L_0 = __this->___m_HasFocus;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68608
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem__ctor_mEEF6F5A0BCA90CC9AD827AA3F2522783B71C6E50 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5D05D99F085C71FEEE22BD4A1C168E4EBE86ECE3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:22>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_0 = (List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F*)il2cpp_codegen_object_new(List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m5D05D99F085C71FEEE22BD4A1C168E4EBE86ECE3(L_0, List_1__ctor_m5D05D99F085C71FEEE22BD4A1C168E4EBE86ECE3_RuntimeMethod_var);
|
|
__this->___m_SystemInputModules = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SystemInputModules), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:55>
|
|
__this->___m_sendNavigationEvents = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:67>
|
|
__this->___m_DragThreshold = ((int32_t)10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:111>
|
|
__this->___m_HasFocus = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:330>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_1 = (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD*)il2cpp_codegen_object_new(UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD_il2cpp_TypeInfo_var);
|
|
UIToolkitInteroperabilityBridge__ctor_m0302BF67105A11A4F0CC6FC655EBB48CF6B07B70(L_1, NULL);
|
|
__this->___m_UIToolkitInterop = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UIToolkitInterop), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:124>
|
|
UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:125>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68609
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_UpdateModules_m2D91F02D546D50094DDB25BF0228A987E2EAFF91 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponents_TisBaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1_m861F588C20A9C5F4587028C0423B36D39726E4C5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m23DAE9F6384DC4628548353457630B4F80EDDE55_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:132>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_0 = __this->___m_SystemInputModules;
|
|
Component_GetComponents_TisBaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1_m861F588C20A9C5F4587028C0423B36D39726E4C5(__this, L_0, Component_GetComponents_TisBaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1_m861F588C20A9C5F4587028C0423B36D39726E4C5_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:133>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_1 = __this->___m_SystemInputModules;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_inline(L_1, List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:134>
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:136>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_3 = __this->___m_SystemInputModules;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_5;
|
|
L_5 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_3, L_4, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_7 = __this->___m_SystemInputModules;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_7);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_9;
|
|
L_9 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_7, L_8, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker0< bool >::Invoke(9, L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:139>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_11 = __this->___m_SystemInputModules;
|
|
int32_t L_12 = V_0;
|
|
NullCheck(L_11);
|
|
List_1_RemoveAt_m23DAE9F6384DC4628548353457630B4F80EDDE55(L_11, L_12, List_1_RemoveAt_m23DAE9F6384DC4628548353457630B4F80EDDE55_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:134>
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:134>
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:141>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68610
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_alreadySelecting_m3DB9F620A5E2976EBF1362F95C05C12031BACCC4 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:150>
|
|
bool L_0 = __this->___m_SelectionGuard;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68611
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_selected, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_pointer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_mF5887E085CDF21C7E46BCDEDDFAE8DAB8D6B2308_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m3F0363F6627EF6ECECB5439840122565E3A3086B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D7966737D63EC88E3F1482299F5E3DA9C325467);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB481E1177ABCEDA2138821AE6FDCB1DE23CE4F7A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B3_0 = NULL;
|
|
String_t* G_B3_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B2_0 = NULL;
|
|
String_t* G_B2_1 = NULL;
|
|
String_t* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:160>
|
|
bool L_0 = __this->___m_SelectionGuard;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:162>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___0_selected;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B3_0 = L_2;
|
|
G_B3_1 = _stringLiteral8D7966737D63EC88E3F1482299F5E3DA9C325467;
|
|
goto IL_0015;
|
|
}
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = _stringLiteral8D7966737D63EC88E3F1482299F5E3DA9C325467;
|
|
}
|
|
{
|
|
G_B4_0 = ((String_t*)(NULL));
|
|
G_B4_1 = G_B2_1;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
String_t* L_3;
|
|
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B3_0);
|
|
G_B4_0 = L_3;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
String_t* L_4;
|
|
L_4 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B4_1, G_B4_0, _stringLiteralB481E1177ABCEDA2138821AE6FDCB1DE23CE4F7A, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:163>
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:166>
|
|
__this->___m_SelectionGuard = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:167>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = ___0_selected;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = __this->___m_CurrentSelected;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_5, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:169>
|
|
__this->___m_SelectionGuard = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:170>
|
|
return;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:174>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8 = __this->___m_CurrentSelected;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_9 = ___1_pointer;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* L_10;
|
|
L_10 = ExecuteEvents_get_deselectHandler_m9CDD5F8B5269067CA38247DDD41B521A8FCEDFEF_inline(NULL);
|
|
bool L_11;
|
|
L_11 = ExecuteEvents_Execute_TisIDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_mF5887E085CDF21C7E46BCDEDDFAE8DAB8D6B2308(L_8, L_9, L_10, ExecuteEvents_Execute_TisIDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_mF5887E085CDF21C7E46BCDEDDFAE8DAB8D6B2308_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:175>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12 = ___0_selected;
|
|
__this->___m_CurrentSelected = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentSelected), (void*)L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:176>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_13 = __this->___m_CurrentSelected;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_14 = ___1_pointer;
|
|
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* L_15;
|
|
L_15 = ExecuteEvents_get_selectHandler_mCF588328D11715E24BC54DF464EF4F3D694B3939_inline(NULL);
|
|
bool L_16;
|
|
L_16 = ExecuteEvents_Execute_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m3F0363F6627EF6ECECB5439840122565E3A3086B(L_13, L_14, L_15, ExecuteEvents_Execute_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m3F0363F6627EF6ECECB5439840122565E3A3086B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:177>
|
|
__this->___m_SelectionGuard = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:178>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68612
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* EventSystem_get_baseEventDataCache_mF9AFC01C9D2B055F0816F6EEA2CC0011F1D82B7F (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:185>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = __this->___m_DummyData;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:186>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*)il2cpp_codegen_object_new(BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F_il2cpp_TypeInfo_var);
|
|
BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558(L_1, __this, NULL);
|
|
__this->___m_DummyData = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DummyData), (void*)L_1);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:188>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_2 = __this->___m_DummyData;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68613
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetSelectedGameObject_m91382EAC4D552C672CC07BE7EB1481F156045280 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_selected, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:198>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_selected;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1;
|
|
L_1 = EventSystem_get_baseEventDataCache_mF9AFC01C9D2B055F0816F6EEA2CC0011F1D82B7F(__this, NULL);
|
|
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(__this, L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:199>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68614
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventSystem_RaycastComparer_mBF2582FBEDA9A1B604EE4281C61CB5E3DF676795 (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_lhs, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_0 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:203>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_1 = L_0.___module;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_2 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_3 = L_2.___module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:205>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_5 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_6 = L_5.___module;
|
|
NullCheck(L_6);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_7;
|
|
L_7 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, L_6);
|
|
V_0 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:206>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_8 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_9 = L_8.___module;
|
|
NullCheck(L_9);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_10;
|
|
L_10 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, L_9);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:207>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_13 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_13, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
float L_16;
|
|
L_16 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_15, NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
float L_18;
|
|
L_18 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_17, NULL);
|
|
if ((((float)L_16) == ((float)L_18)))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:210>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
float L_20;
|
|
L_20 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_19, NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_21 = V_1;
|
|
NullCheck(L_21);
|
|
float L_22;
|
|
L_22 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_21, NULL);
|
|
if ((!(((float)L_20) < ((float)L_22))))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:211>
|
|
return 1;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:212>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
float L_24;
|
|
L_24 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_23, NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
float L_26;
|
|
L_26 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_25, NULL);
|
|
if ((!(((float)L_24) == ((float)L_26))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:213>
|
|
return 0;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:215>
|
|
return (-1);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:218>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_27 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_28 = L_27.___module;
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(20, L_28);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_30 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_31 = L_30.___module;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(20, L_31);
|
|
if ((((int32_t)L_29) == ((int32_t)L_32)))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:219>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_33 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_34 = L_33.___module;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(20, L_34);
|
|
V_2 = L_35;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_36 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_37 = L_36.___module;
|
|
NullCheck(L_37);
|
|
int32_t L_38;
|
|
L_38 = VirtualFuncInvoker0< int32_t >::Invoke(20, L_37);
|
|
int32_t L_39;
|
|
L_39 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_2), L_38, NULL);
|
|
return L_39;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:221>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_40 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_41 = L_40.___module;
|
|
NullCheck(L_41);
|
|
int32_t L_42;
|
|
L_42 = VirtualFuncInvoker0< int32_t >::Invoke(21, L_41);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_43 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_44 = L_43.___module;
|
|
NullCheck(L_44);
|
|
int32_t L_45;
|
|
L_45 = VirtualFuncInvoker0< int32_t >::Invoke(21, L_44);
|
|
if ((((int32_t)L_42) == ((int32_t)L_45)))
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:222>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_46 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_47 = L_46.___module;
|
|
NullCheck(L_47);
|
|
int32_t L_48;
|
|
L_48 = VirtualFuncInvoker0< int32_t >::Invoke(21, L_47);
|
|
V_2 = L_48;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_49 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_50 = L_49.___module;
|
|
NullCheck(L_50);
|
|
int32_t L_51;
|
|
L_51 = VirtualFuncInvoker0< int32_t >::Invoke(21, L_50);
|
|
int32_t L_52;
|
|
L_52 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_2), L_51, NULL);
|
|
return L_52;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:226>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_53 = ___0_lhs;
|
|
int32_t L_54 = L_53.___sortingLayer;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_55 = ___1_rhs;
|
|
int32_t L_56 = L_55.___sortingLayer;
|
|
if ((((int32_t)L_54) == ((int32_t)L_56)))
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:229>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_57 = ___1_rhs;
|
|
int32_t L_58 = L_57.___sortingLayer;
|
|
int32_t L_59;
|
|
L_59 = SortingLayer_GetLayerValueFromID_mEB8A5234102CD7B2C6158661A931EA120A38707C(L_58, NULL);
|
|
V_3 = L_59;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:230>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_60 = ___0_lhs;
|
|
int32_t L_61 = L_60.___sortingLayer;
|
|
int32_t L_62;
|
|
L_62 = SortingLayer_GetLayerValueFromID_mEB8A5234102CD7B2C6158661A931EA120A38707C(L_61, NULL);
|
|
V_4 = L_62;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:231>
|
|
int32_t L_63 = V_4;
|
|
int32_t L_64;
|
|
L_64 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_3), L_63, NULL);
|
|
return L_64;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:234>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_65 = ___0_lhs;
|
|
int32_t L_66 = L_65.___sortingOrder;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_67 = ___1_rhs;
|
|
int32_t L_68 = L_67.___sortingOrder;
|
|
if ((((int32_t)L_66) == ((int32_t)L_68)))
|
|
{
|
|
goto IL_0130;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:235>
|
|
int32_t* L_69 = (int32_t*)(&(&___1_rhs)->___sortingOrder);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_70 = ___0_lhs;
|
|
int32_t L_71 = L_70.___sortingOrder;
|
|
int32_t L_72;
|
|
L_72 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586(L_69, L_71, NULL);
|
|
return L_72;
|
|
}
|
|
|
|
IL_0130:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:238>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_73 = ___0_lhs;
|
|
int32_t L_74 = L_73.___depth;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_75 = ___1_rhs;
|
|
int32_t L_76 = L_75.___depth;
|
|
if ((((int32_t)L_74) == ((int32_t)L_76)))
|
|
{
|
|
goto IL_016e;
|
|
}
|
|
}
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_77 = ___0_lhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_78 = L_77.___module;
|
|
NullCheck(L_78);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_79;
|
|
L_79 = BaseRaycaster_get_rootRaycaster_m63E20D85A8B9867AC196768924F8BE579668BF28(L_78, NULL);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_80 = ___1_rhs;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_81 = L_80.___module;
|
|
NullCheck(L_81);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_82;
|
|
L_82 = BaseRaycaster_get_rootRaycaster_m63E20D85A8B9867AC196768924F8BE579668BF28(L_81, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_83;
|
|
L_83 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_79, L_82, NULL);
|
|
if (!L_83)
|
|
{
|
|
goto IL_016e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:239>
|
|
int32_t* L_84 = (int32_t*)(&(&___1_rhs)->___depth);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_85 = ___0_lhs;
|
|
int32_t L_86 = L_85.___depth;
|
|
int32_t L_87;
|
|
L_87 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586(L_84, L_86, NULL);
|
|
return L_87;
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:241>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_88 = ___0_lhs;
|
|
float L_89 = L_88.___distance;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_90 = ___1_rhs;
|
|
float L_91 = L_90.___distance;
|
|
if ((((float)L_89) == ((float)L_91)))
|
|
{
|
|
goto IL_018f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:242>
|
|
float* L_92 = (float*)(&(&___0_lhs)->___distance);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_93 = ___1_rhs;
|
|
float L_94 = L_93.___distance;
|
|
int32_t L_95;
|
|
L_95 = Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F(L_92, L_94, NULL);
|
|
return L_95;
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:246>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_96 = ___0_lhs;
|
|
int32_t L_97 = L_96.___sortingGroupID;
|
|
int32_t L_98;
|
|
L_98 = SortingGroup_get_invalidSortingGroupID_mEA453186185B225FA2410988959180BAEC604310(NULL);
|
|
if ((((int32_t)L_97) == ((int32_t)L_98)))
|
|
{
|
|
goto IL_01eb;
|
|
}
|
|
}
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_99 = ___1_rhs;
|
|
int32_t L_100 = L_99.___sortingGroupID;
|
|
int32_t L_101;
|
|
L_101 = SortingGroup_get_invalidSortingGroupID_mEA453186185B225FA2410988959180BAEC604310(NULL);
|
|
if ((((int32_t)L_100) == ((int32_t)L_101)))
|
|
{
|
|
goto IL_01eb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:248>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_102 = ___0_lhs;
|
|
int32_t L_103 = L_102.___sortingGroupID;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_104 = ___1_rhs;
|
|
int32_t L_105 = L_104.___sortingGroupID;
|
|
if ((((int32_t)L_103) == ((int32_t)L_105)))
|
|
{
|
|
goto IL_01ca;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:249>
|
|
int32_t* L_106 = (int32_t*)(&(&___0_lhs)->___sortingGroupID);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_107 = ___1_rhs;
|
|
int32_t L_108 = L_107.___sortingGroupID;
|
|
int32_t L_109;
|
|
L_109 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586(L_106, L_108, NULL);
|
|
return L_109;
|
|
}
|
|
|
|
IL_01ca:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:250>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_110 = ___0_lhs;
|
|
int32_t L_111 = L_110.___sortingGroupOrder;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_112 = ___1_rhs;
|
|
int32_t L_113 = L_112.___sortingGroupOrder;
|
|
if ((((int32_t)L_111) == ((int32_t)L_113)))
|
|
{
|
|
goto IL_01eb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:251>
|
|
int32_t* L_114 = (int32_t*)(&(&___1_rhs)->___sortingGroupOrder);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_115 = ___0_lhs;
|
|
int32_t L_116 = L_115.___sortingGroupOrder;
|
|
int32_t L_117;
|
|
L_117 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586(L_114, L_116, NULL);
|
|
return L_117;
|
|
}
|
|
|
|
IL_01eb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:255>
|
|
float* L_118 = (float*)(&(&___0_lhs)->___index);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_119 = ___1_rhs;
|
|
float L_120 = L_119.___index;
|
|
int32_t L_121;
|
|
L_121 = Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F(L_118, L_120, NULL);
|
|
return L_121;
|
|
}
|
|
}
|
|
// Method Definition Index: 68615
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_raycastResults, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBD9E514AE38BF6A31BE2054355A0ACC6003F6FFE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m709A412335F9ACB6D852EE8D7B26AFE787895DCB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:267>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_0 = ___1_raycastResults;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline(L_0, List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:268>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_1;
|
|
L_1 = RaycasterManager_GetRaycasters_m876BA9CA8DB8E6D351DC4A97473753503B7017DE_inline(NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:269>
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_mBD9E514AE38BF6A31BE2054355A0ACC6003F6FFE_inline(L_2, List_1_get_Count_mBD9E514AE38BF6A31BE2054355A0ACC6003F6FFE_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:270>
|
|
V_2 = 0;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:272>
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_4 = V_0;
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_6;
|
|
L_6 = List_1_get_Item_m709A412335F9ACB6D852EE8D7B26AFE787895DCB(L_4, L_5, List_1_get_Item_m709A412335F9ACB6D852EE8D7B26AFE787895DCB_RuntimeMethod_var);
|
|
V_3 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:273>
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_7 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_7, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_9 = V_3;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker0< bool >::Invoke(9, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:276>
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_11 = V_3;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___0_eventData;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_13 = ___1_raycastResults;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker2< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, List_1_t8292C421BBB00D7661DC07462822936152BAB446* >::Invoke(17, L_11, L_12, L_13);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:270>
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:270>
|
|
int32_t L_15 = V_2;
|
|
int32_t L_16 = V_1;
|
|
if ((((int32_t)L_15) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:279>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_17 = ___1_raycastResults;
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* L_18 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_RaycastComparer;
|
|
NullCheck(L_17);
|
|
List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC(L_17, L_18, List_1_Sort_m58ABF39C40B541D1F2EDDD8188C5216D2608B3BC_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:280>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68616
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_mC89BFEA46B0DA67F914B9B90356E63BFBE11EB38 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:287>
|
|
bool L_0;
|
|
L_0 = EventSystem_IsPointerOverGameObject_m238732B4FDEA343976D798FF04DB34C3221243C2(__this, (-1), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68617
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_IsPointerOverGameObject_m238732B4FDEA343976D798FF04DB34C3221243C2 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:324>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_2 = __this->___m_CurrentInputModule;
|
|
int32_t L_3 = ___0_pointerId;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = VirtualFuncInvoker1< bool, int32_t >::Invoke(20, L_2, L_3);
|
|
return L_4;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68618
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:335>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0 = __this->___m_UIToolkitInterop;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68619
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSystem_get_isOverridingUIToolkitEvents_mB20290C9C45F0D48239C04758518E5CA171F9F07 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:347>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0;
|
|
L_0 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = UIToolkitInteroperabilityBridge_get_overrideUIToolkitEvents_mC49A797AE660760974A355D7757D64983E145DA2_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ((UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77_StaticFields*)il2cpp_codegen_static_fields_for(UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77_il2cpp_TypeInfo_var))->___EnabledDocumentCount;
|
|
return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68620
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_SetUITookitEventSystemOverride_m31B7776BD35EFB75371E2B860CF6E34FCDCD6A59 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___0_activeEventSystem, bool ___1_sendEvents, bool ___2_createPanelGameObjectsOnStart, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* V_0 = NULL;
|
|
UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4 G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* G_B6_0 = NULL;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B13_0 = NULL;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B12_0 = NULL;
|
|
int32_t G_B14_0 = 0;
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* G_B14_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:388>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:389>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:390>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:391>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:392>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:393>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = ___0_activeEventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
bool L_2 = ___1_sendEvents;
|
|
bool L_3 = ___2_createPanelGameObjectsOnStart;
|
|
if (((int32_t)(((int32_t)((int32_t)L_1&(int32_t)L_2))&(int32_t)L_3)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88));
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_4 = ___0_activeEventSystem;
|
|
(&V_1)->___activeEventSystem = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_1)->___activeEventSystem), (void*)L_4);
|
|
bool L_5 = ___1_sendEvents;
|
|
(&V_1)->___sendEvents = L_5;
|
|
bool L_6 = ___2_createPanelGameObjectsOnStart;
|
|
(&V_1)->___createPanelGameObjectsOnStart = L_6;
|
|
UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 L_7 = V_1;
|
|
Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC((&L_8), L_7, Nullable_1__ctor_m1409085FAFAD3962F4D7B1AD25DDECBBFEB296DC_RuntimeMethod_var);
|
|
G_B3_0 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4));
|
|
Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4 L_9 = V_2;
|
|
G_B3_0 = L_9;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld = G_B3_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld))->___value))->___activeEventSystem), (void*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:395>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_10 = ___0_activeEventSystem;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_10, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_12;
|
|
L_12 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
G_B6_0 = L_12;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_13 = ___0_activeEventSystem;
|
|
G_B6_0 = L_13;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
V_0 = G_B6_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:396>
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_14;
|
|
L_14 = UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_15;
|
|
L_15 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_14, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_16;
|
|
L_16 = UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline(NULL);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_18;
|
|
L_18 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_16, L_17, NULL);
|
|
if (!L_18)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:398>
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_19;
|
|
L_19 = UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline(NULL);
|
|
NullCheck(((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*)CastclassClass((RuntimeObject*)L_19, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var)));
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_20;
|
|
L_20 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*)CastclassClass((RuntimeObject*)L_19, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var)), NULL);
|
|
NullCheck(L_20);
|
|
UIToolkitInteroperabilityBridge_set_overrideUIToolkitEvents_m021BC8EE329FA085B43E7AEDD17B44060F84FB3C(L_20, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:400>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_21 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_21, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
bool L_24;
|
|
L_24 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:402>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_26;
|
|
L_26 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(L_25, NULL);
|
|
bool L_27 = ___1_sendEvents;
|
|
NullCheck(L_26);
|
|
UIToolkitInteroperabilityBridge_set_overrideUIToolkitEvents_m021BC8EE329FA085B43E7AEDD17B44060F84FB3C(L_26, L_27, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:403>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_29;
|
|
L_29 = EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline(L_28, NULL);
|
|
bool L_30 = ___2_createPanelGameObjectsOnStart;
|
|
if (L_30)
|
|
{
|
|
G_B13_0 = L_29;
|
|
goto IL_00ad;
|
|
}
|
|
G_B12_0 = L_29;
|
|
}
|
|
{
|
|
G_B14_0 = 0;
|
|
G_B14_1 = G_B12_0;
|
|
goto IL_00ae;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
G_B14_0 = (-1);
|
|
G_B14_1 = G_B13_0;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
NullCheck(G_B14_1);
|
|
UIToolkitInteroperabilityBridge_set_handlerTypes_m99979539D1EEBF4106C30869CEB71CFC52305A53(G_B14_1, G_B14_0, NULL);
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:406>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68621
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnEnable_m4A1E4BD3E26E6DD1150AF17B8A4E14DA9FDA2D9C (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0F2953840C66949A6A45D89F9F41A47E323D4234_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:410>
|
|
UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:411>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_0 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
NullCheck(L_0);
|
|
List_1_Add_m0F2953840C66949A6A45D89F9F41A47E323D4234_inline(L_0, __this, List_1_Add_m0F2953840C66949A6A45D89F9F41A47E323D4234_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:414>
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_inline((&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld), Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:416>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_2 = (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD*)il2cpp_codegen_object_new(UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD_il2cpp_TypeInfo_var);
|
|
UIToolkitInteroperabilityBridge__ctor_m0302BF67105A11A4F0CC6FC655EBB48CF6B07B70(L_2, NULL);
|
|
__this->___m_UIToolkitInterop = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UIToolkitInterop), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:417>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 L_3;
|
|
L_3 = Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9((&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld), Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_RuntimeMethod_var);
|
|
bool L_4 = L_3.___sendEvents;
|
|
if (L_4)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:418>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_5 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_5);
|
|
UIToolkitInteroperabilityBridge_set_overrideUIToolkitEvents_m021BC8EE329FA085B43E7AEDD17B44060F84FB3C(L_5, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:419>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88 L_6;
|
|
L_6 = Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9((&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld), Nullable_1_get_Value_mCFBFE37239BA47927EC79A9EF09D50B789420CD9_RuntimeMethod_var);
|
|
bool L_7 = L_6.___createPanelGameObjectsOnStart;
|
|
if (L_7)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:420>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_8 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_8);
|
|
UIToolkitInteroperabilityBridge_set_handlerTypes_m99979539D1EEBF4106C30869CEB71CFC52305A53(L_8, 0, NULL);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:423>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_9 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_9);
|
|
UIToolkitInteroperabilityBridge_set_eventSystem_m386E6928C376FC25E2305B8624B84CE8D3513692(L_9, __this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:424>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_10 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_10);
|
|
UIToolkitInteroperabilityBridge_OnEnable_m3A6AE6F9BB30CFA55AE64E6BBF250BD64DFD7CE2(L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:426>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68622
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnDisable_m7667186DBAD79874E4B7CE04A5F0291C35FBE240 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m91D8F452D34DDF91A3A4DD18784AD6E48934F2AB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:431>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_0);
|
|
UIToolkitInteroperabilityBridge_OnDisable_m93C0737D0C6CC93FF4983EB5D486C1EA2CB8FB86(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:434>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_1 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:436>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_3 = __this->___m_CurrentInputModule;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(22, L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:437>
|
|
__this->___m_CurrentInputModule = (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentInputModule), (void*)(BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:440>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_4 = ((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = List_1_Remove_m91D8F452D34DDF91A3A4DD18784AD6E48934F2AB(L_4, __this, List_1_Remove_m91D8F452D34DDF91A3A4DD18784AD6E48934F2AB_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:442>
|
|
UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:443>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68623
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_Start_m392BF40F247855AA4D87C74F2CB5F9AC175F5556 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:447>
|
|
UIBehaviour_Start_mB12643ED6D859CD3682B4BF5B9CA7F72E8A72B45(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:450>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_0);
|
|
UIToolkitInteroperabilityBridge_Start_m37A5CB2B2F2901FD900B5E804F20113E443F579A(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:452>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68624
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_TickModules_mD3F159C0C33396BEB5789B633065005DE771028C (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:456>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_0 = __this->___m_SystemInputModules;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_inline(L_0, List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:457>
|
|
V_1 = 0;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:459>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_2 = __this->___m_SystemInputModules;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_4;
|
|
L_4 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_2, L_3, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:460>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_6 = __this->___m_SystemInputModules;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_8;
|
|
L_8 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_6, L_7, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
VirtualActionInvoker0::Invoke(24, L_8);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:457>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:457>
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_10) < ((int32_t)L_11)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:462>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68625
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_OnApplicationFocus_m85C0A5CBBCEC8D900365BDD4F3E3188ED0EE8DC9 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, bool ___0_hasFocus, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:466>
|
|
bool L_0 = ___0_hasFocus;
|
|
__this->___m_HasFocus = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:467>
|
|
bool L_1 = __this->___m_HasFocus;
|
|
if (L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:468>
|
|
EventSystem_TickModules_mD3F159C0C33396BEB5789B633065005DE771028C(__this, NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:469>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68626
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_Update_m9D0AC1A7236F0DA1CCA0A8FFE0D8D33D960D433C (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* V_5 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:474>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0 = __this->___m_UIToolkitInterop;
|
|
NullCheck(L_0);
|
|
UIToolkitInteroperabilityBridge_Update_m38B3898B262BF45D2C9ECA5D236C3B603C5B3F2E(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:477>
|
|
il2cpp_codegen_runtime_class_init_inline(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = EventSystem_get_current_mC87C69FB418563DC2A571A10E2F9DB59A6785016(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, __this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:478>
|
|
return;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:480>
|
|
EventSystem_TickModules_mD3F159C0C33396BEB5789B633065005DE771028C(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:482>
|
|
V_0 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:483>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_3 = __this->___m_SystemInputModules;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_inline(L_3, List_1_get_Count_mA9741D09FD948C14DEA8CB2170127A3ED149307A_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:484>
|
|
V_2 = 0;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:486>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_5 = __this->___m_SystemInputModules;
|
|
int32_t L_6 = V_2;
|
|
NullCheck(L_5);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_7;
|
|
L_7 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_5, L_6, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
V_3 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:487>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_8 = V_3;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker0< bool >::Invoke(25, L_8);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_10 = V_3;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = VirtualFuncInvoker0< bool >::Invoke(21, L_10);
|
|
if (!L_11)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:489>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_12 = __this->___m_CurrentInputModule;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_13 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_12, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:491>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_15 = V_3;
|
|
EventSystem_ChangeEventModule_m18F27ADCD2CF6656D771CB0413B7B4D768D38181(__this, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:492>
|
|
V_0 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:494>
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:484>
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:484>
|
|
int32_t L_17 = V_2;
|
|
int32_t L_18 = V_1;
|
|
if ((((int32_t)L_17) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:499>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_19 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_19, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:501>
|
|
V_4 = 0;
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:503>
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* L_21 = __this->___m_SystemInputModules;
|
|
int32_t L_22 = V_4;
|
|
NullCheck(L_21);
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_23;
|
|
L_23 = List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6(L_21, L_22, List_1_get_Item_mACF1100B04593A3900794607D59A4024DBD118B6_RuntimeMethod_var);
|
|
V_5 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:504>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_24 = V_5;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = VirtualFuncInvoker0< bool >::Invoke(25, L_24);
|
|
if (!L_25)
|
|
{
|
|
goto IL_00a6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:506>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_26 = V_5;
|
|
EventSystem_ChangeEventModule_m18F27ADCD2CF6656D771CB0413B7B4D768D38181(__this, L_26, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:507>
|
|
V_0 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:508>
|
|
goto IL_00b1;
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:501>
|
|
int32_t L_27 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:501>
|
|
int32_t L_28 = V_4;
|
|
int32_t L_29 = V_1;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:513>
|
|
bool L_30 = V_0;
|
|
if (L_30)
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_31 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_32;
|
|
L_32 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_31, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:514>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_33 = __this->___m_CurrentInputModule;
|
|
NullCheck(L_33);
|
|
VirtualActionInvoker0::Invoke(17, L_33);
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:530>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68627
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem_ChangeEventModule_m18F27ADCD2CF6656D771CB0413B7B4D768D38181 (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* ___0_module, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:534>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0 = __this->___m_CurrentInputModule;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_1 = ___0_module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:535>
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:537>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_3 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:538>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_5 = __this->___m_CurrentInputModule;
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker0::Invoke(22, L_5);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:540>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_6 = ___0_module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_6, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:541>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_8 = ___0_module;
|
|
NullCheck(L_8);
|
|
VirtualActionInvoker0::Invoke(23, L_8);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:542>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_9 = ___0_module;
|
|
__this->___m_CurrentInputModule = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentInputModule), (void*)L_9);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:543>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68628
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSystem_ToString_m0C3906BF8A1C2D7BCC31B09224890BC89B2AF35B (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB16AA06B63763841322A0E82B3DFC991782A196D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0109970118495EB328C4BDC2E4B01CAF6261504);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B2_0 = NULL;
|
|
String_t* G_B2_1 = NULL;
|
|
StringBuilder_t* G_B2_2 = NULL;
|
|
StringBuilder_t* G_B2_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B1_0 = NULL;
|
|
String_t* G_B1_1 = NULL;
|
|
StringBuilder_t* G_B1_2 = NULL;
|
|
StringBuilder_t* G_B1_3 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
String_t* G_B3_1 = NULL;
|
|
StringBuilder_t* G_B3_2 = NULL;
|
|
StringBuilder_t* G_B3_3 = NULL;
|
|
StringBuilder_t* G_B5_0 = NULL;
|
|
StringBuilder_t* G_B5_1 = NULL;
|
|
StringBuilder_t* G_B4_0 = NULL;
|
|
StringBuilder_t* G_B4_1 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
StringBuilder_t* G_B6_1 = NULL;
|
|
StringBuilder_t* G_B6_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:547>
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:548>
|
|
StringBuilder_t* L_1 = L_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_3;
|
|
G_B2_1 = _stringLiteralD0109970118495EB328C4BDC2E4B01CAF6261504;
|
|
G_B2_2 = L_1;
|
|
G_B2_3 = L_1;
|
|
goto IL_0018;
|
|
}
|
|
G_B1_0 = L_3;
|
|
G_B1_1 = _stringLiteralD0109970118495EB328C4BDC2E4B01CAF6261504;
|
|
G_B1_2 = L_1;
|
|
G_B1_3 = L_1;
|
|
}
|
|
{
|
|
G_B3_0 = ((String_t*)(NULL));
|
|
G_B3_1 = G_B1_1;
|
|
G_B3_2 = G_B1_2;
|
|
G_B3_3 = G_B1_3;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B2_0);
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B2_1;
|
|
G_B3_2 = G_B2_2;
|
|
G_B3_3 = G_B2_3;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
String_t* L_5;
|
|
L_5 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B3_1, G_B3_0, NULL);
|
|
NullCheck(G_B3_2);
|
|
StringBuilder_t* L_6;
|
|
L_6 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B3_2, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:549>
|
|
StringBuilder_t* L_7 = G_B3_3;
|
|
NullCheck(L_7);
|
|
StringBuilder_t* L_8;
|
|
L_8 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:550>
|
|
StringBuilder_t* L_9 = L_7;
|
|
NullCheck(L_9);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:551>
|
|
StringBuilder_t* L_11 = L_9;
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_12 = __this->___m_CurrentInputModule;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_13;
|
|
L_13 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_12, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_13)
|
|
{
|
|
G_B5_0 = L_11;
|
|
G_B5_1 = L_11;
|
|
goto IL_004c;
|
|
}
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = L_11;
|
|
}
|
|
{
|
|
G_B6_0 = _stringLiteralB16AA06B63763841322A0E82B3DFC991782A196D;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_14 = __this->___m_CurrentInputModule;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_14);
|
|
G_B6_0 = L_15;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
NullCheck(G_B6_1);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B6_1, G_B6_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:552>
|
|
NullCheck(G_B6_2);
|
|
String_t* L_17;
|
|
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B6_2);
|
|
return L_17;
|
|
}
|
|
}
|
|
// Method Definition Index: 68629
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSystem__cctor_mE933C88969E443D3DEE106C6E747F97F40D3B48F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_RaycastComparer_mBF2582FBEDA9A1B604EE4281C61CB5E3DF676795_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6A7DBF9210C6D1591760F3FD77E2B765747817B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:26>
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* L_0 = (List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3*)il2cpp_codegen_object_new(List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m6A7DBF9210C6D1591760F3FD77E2B765747817B6(L_0, List_1__ctor_m6A7DBF9210C6D1591760F3FD77E2B765747817B6_RuntimeMethod_var);
|
|
((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___m_EventSystems), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:258>
|
|
Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* L_1 = (Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC*)il2cpp_codegen_object_new(Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC_il2cpp_TypeInfo_var);
|
|
Comparison_1__ctor_mB0FAEA6338392B1FCA83DB09FCA47090BA250E0F(L_1, NULL, (intptr_t)((void*)EventSystem_RaycastComparer_mBF2582FBEDA9A1B604EE4281C61CB5E3DF676795_RuntimeMethod_var), NULL);
|
|
((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_RaycastComparer = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_RaycastComparer), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:361>
|
|
il2cpp_codegen_initobj((&((EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields*)il2cpp_codegen_static_fields_for(EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_il2cpp_TypeInfo_var))->___s_UIToolkitOverrideConfigOld), sizeof(Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4));
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_pinvoke(const UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88& unmarshaled, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___activeEventSystemException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___activeEventSystemException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_pinvoke_back(const UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_pinvoke& marshaled, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___activeEventSystemException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___activeEventSystemException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_pinvoke_cleanup(UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_com(const UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88& unmarshaled, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___activeEventSystemException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___activeEventSystemException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_com_back(const UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_com& marshaled, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___activeEventSystemException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88____activeEventSystem_FieldInfo_var, UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___activeEventSystemException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshal_com_cleanup(UIToolkitOverrideConfigOld_tE63BCF42BC8CC79144B2817BE309C5C19015FD88_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68630
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* EventTrigger_get_delegates_m0EF6EB8D0AB4964C9AB563D74387B1D5366B9004 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:193>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0;
|
|
L_0 = EventTrigger_get_triggers_m2361511923086BCD40339097448A70AFB22C4647(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68631
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_set_delegates_m47AE262A9A8E4F2F2824F2C877597DC4CE2A979A (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:193>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0 = ___0_value;
|
|
EventTrigger_set_triggers_m5F861F79BBA48C26CFB83BEA7E25580B21BDA815_inline(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:193>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68632
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger__ctor_m2A471D4099280D37183A1B668FF092B9517BA294 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:195>
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:196>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68633
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* EventTrigger_get_triggers_m2361511923086BCD40339097448A70AFB22C4647 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7A9119D875AEFEC730410862ACAA4BA3A6EEC5FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:205>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0 = __this->___m_Delegates;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:206>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_1 = (List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440*)il2cpp_codegen_object_new(List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m7A9119D875AEFEC730410862ACAA4BA3A6EEC5FA(L_1, List_1__ctor_m7A9119D875AEFEC730410862ACAA4BA3A6EEC5FA_RuntimeMethod_var);
|
|
__this->___m_Delegates = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Delegates), (void*)L_1);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:207>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_2 = __this->___m_Delegates;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68634
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_m5F861F79BBA48C26CFB83BEA7E25580B21BDA815 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:209>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0 = ___0_value;
|
|
__this->___m_Delegates = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Delegates), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:209>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68635
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, int32_t ___0_id, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF7BDF732F24313E73AD5BD2E4A32C7ECD657F7E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m73B6BE2E5D532A5B54C1CFD22C6ED462A13C9DBA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m2F130A58B680EA53FDE956184090404B10BF647C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Entry_t9B34433095405244EBB2447BBED208AF12286913* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:214>
|
|
V_0 = 0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:216>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0;
|
|
L_0 = EventTrigger_get_triggers_m2361511923086BCD40339097448A70AFB22C4647(__this, NULL);
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
Entry_t9B34433095405244EBB2447BBED208AF12286913* L_2;
|
|
L_2 = List_1_get_Item_m73B6BE2E5D532A5B54C1CFD22C6ED462A13C9DBA(L_0, L_1, List_1_get_Item_m73B6BE2E5D532A5B54C1CFD22C6ED462A13C9DBA_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:217>
|
|
Entry_t9B34433095405244EBB2447BBED208AF12286913* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___eventID;
|
|
int32_t L_5 = ___0_id;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
Entry_t9B34433095405244EBB2447BBED208AF12286913* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* L_7 = L_6->___callback;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:218>
|
|
Entry_t9B34433095405244EBB2447BBED208AF12286913* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* L_9 = L_8->___callback;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_10 = ___1_eventData;
|
|
NullCheck(L_9);
|
|
UnityEvent_1_Invoke_m2F130A58B680EA53FDE956184090404B10BF647C(L_9, L_10, UnityEvent_1_Invoke_m2F130A58B680EA53FDE956184090404B10BF647C_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:214>
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:214>
|
|
int32_t L_12 = V_0;
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_13;
|
|
L_13 = EventTrigger_get_triggers_m2361511923086BCD40339097448A70AFB22C4647(__this, NULL);
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = List_1_get_Count_mF7BDF732F24313E73AD5BD2E4A32C7ECD657F7E2_inline(L_13, List_1_get_Count_mF7BDF732F24313E73AD5BD2E4A32C7ECD657F7E2_RuntimeMethod_var);
|
|
if ((((int32_t)L_12) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:220>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68636
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerEnter_m78A0620B719E345A02F2A628EBC1D08ADAA5FD89 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:227>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 0, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:228>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68637
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerExit_mF15D24467BCC9686CD9DC11C728632F7ED098BF4 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:235>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 1, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:236>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68638
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDrag_mD4E2457101987E2E96C251EDBBAD8960BED20874 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:243>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 5, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:244>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68639
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDrop_mF111804E0134C1C873156D4B22E8479CDDEC0C1B (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:251>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 6, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:252>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68640
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerDown_m91957FC65D1AE1C5FD6B0548682DEE1B4283ECC0 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:259>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 2, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:260>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68641
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerUp_m63A37DEC73942B6C5863F79DED7A2BCDEF8B8DB6 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:267>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 3, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:268>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68642
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnPointerClick_m6006A8F9138007DF16AEA63968E865D8A2AF128E (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:275>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 4, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:276>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68643
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnSelect_m191AD9E9C686FABEEF036AAC0D89F27D7BACC8E4 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:283>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)9), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:284>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68644
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnDeselect_m647B65049C6C332711233F0B2F72C99E4AE2DE46 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:291>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)10), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:292>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68645
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnScroll_m45ED61FD7F6FAD70C71502A38D2479DEE50B1370 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:299>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 7, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:300>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68646
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnMove_mEE11502B46693D5F5C8E23380E0DF0D4B75EE9CF (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:307>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)11), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:308>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68647
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnUpdateSelected_mF5C79E9494D1F1F3D032FFB17B1D5B3701FB5BD7 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:315>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, 8, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:316>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68648
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnInitializePotentialDrag_mF57EC5149D92811696046CACFA2CD4422890AE78 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:323>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)12), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:324>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68649
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnBeginDrag_m370891394066DA8891BFA458D335A4B878988E7B (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:331>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)13), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:332>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68650
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnEndDrag_mFC87A35C4060855401A4C0C28612829D0894A8A8 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:339>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)14), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:340>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68651
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnSubmit_m2EC7EAB0AAD5AD0528511C8184A430FD91E95E0D (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:347>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)15), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:348>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68652
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventTrigger_OnCancel_m17724FAA28975B06DDDE55D06716DE33A1788144 (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:355>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = ___0_eventData;
|
|
EventTrigger_Execute_m8F637065284AB93B0D2C1090C63830AFD9CE25BE(__this, ((int32_t)16), L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:356>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68653
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TriggerEvent__ctor_mBC60D36344FFB96FBE826D229CE25D4C25E08440 (TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_mB475FD6BA1C41D56BD02E661756F1A8FBC703BA7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UnityEvent_1__ctor_mB475FD6BA1C41D56BD02E661756F1A8FBC703BA7(__this, UnityEvent_1__ctor_mB475FD6BA1C41D56BD02E661756F1A8FBC703BA7_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68654
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_m7325965EB4BD264BE16F837B6AA2693ECEDBB5E8 (Entry_t9B34433095405244EBB2447BBED208AF12286913* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:179>
|
|
__this->___eventID = 4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:184>
|
|
TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C* L_0 = (TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C*)il2cpp_codegen_object_new(TriggerEvent_tE2BBAD6142E192C28DD3583BAD759D4941A3FD9C_il2cpp_TypeInfo_var);
|
|
TriggerEvent__ctor_mBC60D36344FFB96FBE826D229CE25D4C25E08440(L_0, NULL);
|
|
__this->___callback = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___callback), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68656
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m316D0EE5A1936BFFD9999F4C145722DC6C121FF7 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:22>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:23>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68657
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m554281680E2DBC534055073ECCE46230E488A3E6 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:29>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:30>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68658
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m3DD6C7687A440E55EEF8B7D115DEF950728295B6 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:36>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:37>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68659
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m36FF8B992CDB75A825077B7A52AA7BE72318B37F (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:43>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:44>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68660
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mD0811E5B0A4F7D5A88E7ACF0A845CA107485F579 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:50>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:51>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68661
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m512ACDD06180A73819570FED3C2BEE0F0E2DA3F2 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:57>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:58>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68662
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mCD88FE48772FC6DA5E9FE9CAF910402F63090C35 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:64>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:65>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68663
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m3F3FEE80AD62CF4207EDA55D6998B98DFF8FFB64 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:71>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:72>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68664
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mBEB42D218E11F4B9834CAC70894631C305E6AF18 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:78>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:79>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68665
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m1A35D0185316601E2CE063420F4953C8D3D62D3A (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:85>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:86>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68666
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m6DD01624C34CF22057ECF1B0C7E561006DA6D2F3 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:92>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68667
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m08AB6D464ED66E7D539C957D84076F79D8ED5563 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:99>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684(L_1, ExecuteEvents_ValidateEventData_TisPointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_mF1CC601A9B55B857B9E07584D223CC9E0BB8A684_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(0, IScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:100>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68668
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mF1F3202132B706B56AE43B19577758BCA4EAEB88 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:106>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(0, IUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_il2cpp_TypeInfo_var, L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:107>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68669
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mBDDBAF4DEB956C013CD19E514088B6AC086783B2 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:113>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(0, ISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:114>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68670
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m070554B8CD391A49E8A51A4FC10C8CB8827E5627 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:120>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(0, IDeselectHandler_t1DAC043FE4AC6C9BD4E0128AD5CAC1C84F4AF661_il2cpp_TypeInfo_var, L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:121>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68671
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_mBC94A654B65C6B14834E3CD0FF0472DB5445E2F2 (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ValidateEventData_TisAxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_m80BB1F8ADE71FB047EC89D250431CE4090A8C37B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:127>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_2;
|
|
L_2 = ExecuteEvents_ValidateEventData_TisAxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_m80BB1F8ADE71FB047EC89D250431CE4090A8C37B(L_1, ExecuteEvents_ValidateEventData_TisAxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_m80BB1F8ADE71FB047EC89D250431CE4090A8C37B_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* >::Invoke(0, IMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_il2cpp_TypeInfo_var, L_0, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:128>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68672
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m6CE7DBF76F4858C3014295BB2EBBAD768EF5992E (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:134>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(0, ISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_il2cpp_TypeInfo_var, L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:135>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68673
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_Execute_m30F76D861B01F5DE4671B93C23B57989889EC8AC (RuntimeObject* ___0_handler, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:141>
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_1 = ___1_eventData;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(0, ICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_il2cpp_TypeInfo_var, L_0, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:142>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68674
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:146>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerMoveHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68675
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ExecuteEvents_get_pointerEnterHandler_m9F921E3357CE38A925DF20E9CD94B4C3AEE9AE48 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:151>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerEnterHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68676
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:156>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerExitHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68677
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:161>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerDownHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68678
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:166>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerUpHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68679
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:171>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerClickHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68680
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:176>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InitializePotentialDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68681
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ExecuteEvents_get_beginDragHandler_mB0BEAC09E4A8F31438B07FE68A5BF7267FF8C2FC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:181>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_BeginDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68682
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ExecuteEvents_get_dragHandler_m9193926B9685C80C0560C2E105FF6150C4EAE507 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:186>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68683
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:191>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_EndDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68684
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:196>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DropHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68685
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ExecuteEvents_get_scrollHandler_m51E902070611D3F81AD5F1F5762AE2C48E84AFE2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:201>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_ScrollHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68686
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ExecuteEvents_get_updateSelectedHandler_m8AF7543437082AD4F5690AAA77F2623AE28C3D09 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:206>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_UpdateSelectedHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68687
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ExecuteEvents_get_selectHandler_mCF588328D11715E24BC54DF464EF4F3D694B3939 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:211>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SelectHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68688
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ExecuteEvents_get_deselectHandler_m9CDD5F8B5269067CA38247DDD41B521A8FCEDFEF (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:216>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DeselectHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68689
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ExecuteEvents_get_moveHandler_mF717824AB0018BBED3C2DF3C67486E3B2B3836D2 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:221>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_MoveHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68690
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ExecuteEvents_get_submitHandler_mDCAAA40F0F6AEA385B375C1839B4DC37E5FC4A7A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:226>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SubmitHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68691
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ExecuteEvents_get_cancelHandler_mBCDFD10C95FC2BBC5DC5A512FEA1BBEECC2DAE12 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:231>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_CancelHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68692
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents_GetEventChain_m4FAD69B97B2D0AADFCA3AE06CA80E680B60632ED (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_root, RuntimeObject* ___1_eventChain, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tE791D3D97E67566E2D6F93E0626CB84C78DB7E9E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:236>
|
|
RuntimeObject* L_0 = ___1_eventChain;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(3, ICollection_1_tE791D3D97E67566E2D6F93E0626CB84C78DB7E9E_il2cpp_TypeInfo_var, L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:237>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___0_root;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:238>
|
|
return;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:240>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = ___0_root;
|
|
NullCheck(L_3);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4;
|
|
L_4 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:243>
|
|
RuntimeObject* L_5 = ___1_eventChain;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker1< Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* >::Invoke(2, ICollection_1_tE791D3D97E67566E2D6F93E0626CB84C78DB7E9E_il2cpp_TypeInfo_var, L_5, L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:244>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8;
|
|
L_8 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_7, NULL);
|
|
V_0 = L_8;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:241>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_9 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_9, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:246>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68699
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteEvents__cctor_mFF9D727E7E8EEEE34D6861D20720411F1CACE9C5 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m070554B8CD391A49E8A51A4FC10C8CB8827E5627_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m08AB6D464ED66E7D539C957D84076F79D8ED5563_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m1A35D0185316601E2CE063420F4953C8D3D62D3A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m30F76D861B01F5DE4671B93C23B57989889EC8AC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m316D0EE5A1936BFFD9999F4C145722DC6C121FF7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m36FF8B992CDB75A825077B7A52AA7BE72318B37F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m3DD6C7687A440E55EEF8B7D115DEF950728295B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m3F3FEE80AD62CF4207EDA55D6998B98DFF8FFB64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m512ACDD06180A73819570FED3C2BEE0F0E2DA3F2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m554281680E2DBC534055073ECCE46230E488A3E6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m6CE7DBF76F4858C3014295BB2EBBAD768EF5992E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_m6DD01624C34CF22057ECF1B0C7E561006DA6D2F3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mBC94A654B65C6B14834E3CD0FF0472DB5445E2F2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mBDDBAF4DEB956C013CD19E514088B6AC086783B2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mBEB42D218E11F4B9834CAC70894631C305E6AF18_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mCD88FE48772FC6DA5E9FE9CAF910402F63090C35_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mD0811E5B0A4F7D5A88E7ACF0A845CA107485F579_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_mF1F3202132B706B56AE43B19577758BCA4EAEB88_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mAB2DFCA15E16B709BBB33F98CB44C37E6E880973_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:18>
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_0 = (EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06*)il2cpp_codegen_object_new(EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m8615BFB2F6FF095B997D9ACCB86E0EBE59936519(L_0, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m316D0EE5A1936BFFD9999F4C145722DC6C121FF7_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerMoveHandler = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerMoveHandler), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:25>
|
|
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_1 = (EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9*)il2cpp_codegen_object_new(EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m8F063442EA496629C6DD529DEBF42184A383823B(L_1, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m554281680E2DBC534055073ECCE46230E488A3E6_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerEnterHandler = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerEnterHandler), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:32>
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_2 = (EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916*)il2cpp_codegen_object_new(EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mBE775DB34C4325716972DD3717D60CE6132E2BC5(L_2, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m3DD6C7687A440E55EEF8B7D115DEF950728295B6_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerExitHandler = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerExitHandler), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:39>
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_3 = (EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117*)il2cpp_codegen_object_new(EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m0887DD7CC2DE94DD5A8B5B8E7B1BA53DB6993C8C(L_3, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m36FF8B992CDB75A825077B7A52AA7BE72318B37F_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerDownHandler = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerDownHandler), (void*)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:46>
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_4 = (EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8*)il2cpp_codegen_object_new(EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m69F33B3515BC502485229E46A3D8D7B541B9B23E(L_4, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mD0811E5B0A4F7D5A88E7ACF0A845CA107485F579_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerUpHandler = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerUpHandler), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:53>
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_5 = (EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E*)il2cpp_codegen_object_new(EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mD9E103F30CD9D6E4EABBE1B2FDD28F9BC42BF74C(L_5, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m512ACDD06180A73819570FED3C2BEE0F0E2DA3F2_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerClickHandler = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerClickHandler), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:60>
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_6 = (EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD*)il2cpp_codegen_object_new(EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mB0E900EDF30BE8FE91220795A62A4DAE3D3E27A6(L_6, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mCD88FE48772FC6DA5E9FE9CAF910402F63090C35_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InitializePotentialDragHandler = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InitializePotentialDragHandler), (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:67>
|
|
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_7 = (EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403*)il2cpp_codegen_object_new(EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m8863B1C775BC7CA4955C97D0D3A8ABFA5F1AE8B2(L_7, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m3F3FEE80AD62CF4207EDA55D6998B98DFF8FFB64_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_BeginDragHandler = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_BeginDragHandler), (void*)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:74>
|
|
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_8 = (EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E*)il2cpp_codegen_object_new(EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mBDAF7D35F27B0F590CFD94DCF3CD8088620598F5(L_8, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mBEB42D218E11F4B9834CAC70894631C305E6AF18_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DragHandler = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DragHandler), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:81>
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_9 = (EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C*)il2cpp_codegen_object_new(EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m9DC416A4819AEB7B3441CE52CF9298EFFA3ACE47(L_9, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m1A35D0185316601E2CE063420F4953C8D3D62D3A_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_EndDragHandler = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_EndDragHandler), (void*)L_9);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:88>
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_10 = (EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733*)il2cpp_codegen_object_new(EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mD117CE829AD4C6B3879680E8C2E415C1454BE6ED(L_10, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m6DD01624C34CF22057ECF1B0C7E561006DA6D2F3_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DropHandler = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DropHandler), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:95>
|
|
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_11 = (EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65*)il2cpp_codegen_object_new(EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mB603A79374B5BC861255E37B443D7EC122E24F7F(L_11, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m08AB6D464ED66E7D539C957D84076F79D8ED5563_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_ScrollHandler = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_ScrollHandler), (void*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:102>
|
|
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_12 = (EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678*)il2cpp_codegen_object_new(EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_mD7AA369611F2B35A72D72FA81AB1D6E33AFE3334(L_12, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mF1F3202132B706B56AE43B19577758BCA4EAEB88_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_UpdateSelectedHandler = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_UpdateSelectedHandler), (void*)L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:109>
|
|
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* L_13 = (EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA*)il2cpp_codegen_object_new(EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m6F84DC7E9838A5FBF70C102868EEAB462E0ACFE4(L_13, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mBDDBAF4DEB956C013CD19E514088B6AC086783B2_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SelectHandler = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SelectHandler), (void*)L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:116>
|
|
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* L_14 = (EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690*)il2cpp_codegen_object_new(EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m43D4F0848F0914B452DB24F5A1DC08421A96E266(L_14, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m070554B8CD391A49E8A51A4FC10C8CB8827E5627_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DeselectHandler = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DeselectHandler), (void*)L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:123>
|
|
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_15 = (EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013*)il2cpp_codegen_object_new(EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m8F66D9647856871DA7BD78F313198EC19D2609E4(L_15, NULL, (intptr_t)((void*)ExecuteEvents_Execute_mBC94A654B65C6B14834E3CD0FF0472DB5445E2F2_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_MoveHandler = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_MoveHandler), (void*)L_15);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:130>
|
|
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_16 = (EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F*)il2cpp_codegen_object_new(EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m0B16B0B2CB59B5BBF3FF8C900B510DC04734124F(L_16, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m6CE7DBF76F4858C3014295BB2EBBAD768EF5992E_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SubmitHandler = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SubmitHandler), (void*)L_16);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:137>
|
|
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_17 = (EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA*)il2cpp_codegen_object_new(EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA_il2cpp_TypeInfo_var);
|
|
EventFunction_1__ctor_m4421FC2C41053E59F7483CB694162F07F57EEE99(L_17, NULL, (intptr_t)((void*)ExecuteEvents_Execute_m30F76D861B01F5DE4671B93C23B57989889EC8AC_RuntimeMethod_var), NULL);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_CancelHandler = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_CancelHandler), (void*)L_17);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:288>
|
|
List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D* L_18 = (List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D*)il2cpp_codegen_object_new(List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mAB2DFCA15E16B709BBB33F98CB44C37E6E880973(L_18, ((int32_t)30), List_1__ctor_mAB2DFCA15E16B709BBB33F98CB44C37E6E880973_RuntimeMethod_var);
|
|
((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InternalTransformList = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InternalTransformList), (void*)L_18);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68704
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BaseInput_get_compositionString_m2F5F37C4A3E1CBFB779113D038802AC2BA3E556E (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:15>
|
|
String_t* L_0;
|
|
L_0 = Input_get_compositionString_mC9E603E4FB61090827F77A3D509BF3AA0A48C9A9(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68705
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInput_get_imeCompositionMode_m61F7F9CF12191DE6328F900458CB1886AEDA2B08 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:23>
|
|
int32_t L_0;
|
|
L_0 = Input_get_imeCompositionMode_mAD9C0224B3845A9132D4265AF468FF203AA43BAC(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68706
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput_set_imeCompositionMode_m10C9A03CA5BE2DD16C356603A1D03EE197B29085 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:24>
|
|
int32_t L_0 = ___0_value;
|
|
Input_set_imeCompositionMode_m0399964447DDFE54E04F516A01696862F7174C9A(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:24>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68707
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 BaseInput_get_compositionCursorPos_m40F062B6C5FB3667DE689AA06AA0CA5DD52DBF7C (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:32>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Input_get_compositionCursorPos_mE1E48997CA0C30D206D08FAF06455123D8D24D15(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68708
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput_set_compositionCursorPos_m186F1B453469AC2FEE13F9B2144B1A59D4D7519E (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:33>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
Input_set_compositionCursorPos_m16A856BFBF1DAE42B0089696906F530334861E98(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:33>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68709
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_get_mousePresent_mCB00324CF55402907B52C63213CF397E53D03E71 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:41>
|
|
bool L_0;
|
|
L_0 = Input_get_mousePresent_mAD77FFD987CD5B998AFAD4DAECADBC76034026BF(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68710
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButtonDown_m6276D605B7C48000F3D61BF56BE9E3B5F86398AF (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, int32_t ___0_button, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:51>
|
|
int32_t L_0 = ___0_button;
|
|
bool L_1;
|
|
L_1 = Input_GetMouseButtonDown_m8DFC792D15FFF15D311614D5CC6C5D055E5A1DE3(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68711
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButtonUp_mBB470F97111BB7BCC1B543CD282F898C9033DAE4 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, int32_t ___0_button, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:59>
|
|
int32_t L_0 = ___0_button;
|
|
bool L_1;
|
|
L_1 = Input_GetMouseButtonUp_mBE89CC9C69BBEA9A863819E77EA54411B0476ED6(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68712
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetMouseButton_mD6EAA726BE691C40052FEDBFF51AEAA1DACAAB57 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, int32_t ___0_button, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:67>
|
|
int32_t L_0 = ___0_button;
|
|
bool L_1;
|
|
L_1 = Input_GetMouseButton_m4995DD4A2D4F916565C1B1B5AAF7DF17C126B3EA(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68713
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 BaseInput_get_mousePosition_mD75C96534C8B4EFF48A732F4826E6C9E09CB4540 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:75>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
|
|
L_0 = Input_get_mousePosition_mFF21FBD2647DAE2A23BD4C45571CA95D05A0A42C(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68714
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 BaseInput_get_mouseScrollDelta_mD764FCD7B05C6505AAB3161C3011A5EA51DEDC39 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:83>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Input_get_mouseScrollDelta_mD112408E9182AA0F529179FF31E21D8DCD5CFA74(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68715
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseInput_get_mouseScrollDeltaPerTick_m0FB0F8CF77BB9FAB531E0174690A74416DA20C4B (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:91>
|
|
return (1.0f);
|
|
}
|
|
}
|
|
// Method Definition Index: 68716
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_get_touchSupported_mA46B82A5BCB1A1BE47FB15BD4ACD522694DBDC1C (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:99>
|
|
bool L_0;
|
|
L_0 = Input_get_touchSupported_m2A4FA398A793861AE1BC5971A1363552AB33BEEF(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68717
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInput_get_touchCount_mCD103B50B46B7938389AE38F81C34F173B9F94FD (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:107>
|
|
int32_t L_0;
|
|
L_0 = Input_get_touchCount_m057388BFC67A0F4CA53764B1022867ED81D01E39(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68718
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t03E51455ED508492B3F278903A0114FA0E87B417 BaseInput_GetTouch_m1FA092A2BD2276B8F94A3058B3D8A9E301DDCBE6 (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:116>
|
|
int32_t L_0 = ___0_index;
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_1;
|
|
L_1 = Input_GetTouch_m75D99FE801A94279874FA8DC6B6ADAD35F5123B1(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68719
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseInput_GetAxisRaw_m817F925099FC5D22086D616249C0CB5C7F21445B (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, String_t* ___0_axisName, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:125>
|
|
String_t* L_0 = ___0_axisName;
|
|
float L_1;
|
|
L_1 = Input_GetAxisRaw_m47C0CF8E090561A2F407A4E11D5F2A45044EB8E4(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68720
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInput_GetButtonDown_m3B34561DB7A1E129F880B1E09CE8B844B1FF6FBC (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, String_t* ___0_buttonName, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInput.cs:134>
|
|
String_t* L_0 = ___0_buttonName;
|
|
bool L_1;
|
|
L_1 = Input_GetButtonDown_mEF5F80C9E8F04104E807D9CBD6F70CDB98751579(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68721
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInput__ctor_m7E497239A0A78CCAC04BE6EE9AA81D49D887787C (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68722
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_get_sendPointerHoverToParent_m3C22EF19BA6E95672ACD15F7E3FCD11277EBBF47 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:51>
|
|
bool L_0 = __this->___m_SendPointerHoverToParent;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68723
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_set_sendPointerHoverToParent_m1E97FE3C9AEECB53AFAB89429D6ABCFE7A9F1882 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:51>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_SendPointerHoverToParent = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:51>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68724
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponents_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m848C2D9953D650A43288700EC75E98A9D9ACDC64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m806BCC6ECD5CDF3BFD70F97C11B2B60215D82C2F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:68>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0 = __this->___m_InputOverride;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:69>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_2 = __this->___m_InputOverride;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:71>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3 = __this->___m_DefaultInput;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:73>
|
|
BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* L_5;
|
|
L_5 = Component_GetComponents_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m848C2D9953D650A43288700EC75E98A9D9ACDC64(__this, Component_GetComponents_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m848C2D9953D650A43288700EC75E98A9D9ACDC64_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:74>
|
|
V_0 = L_5;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:74>
|
|
BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_2 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:77>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_10 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_10, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_12 = V_2;
|
|
NullCheck(L_12);
|
|
Type_t* L_13;
|
|
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:79>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_17 = V_2;
|
|
__this->___m_DefaultInput = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DefaultInput), (void*)L_17);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:80>
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:74>
|
|
int32_t L_19 = V_1;
|
|
BaseInputU5BU5D_t99ED00D58A3DAA7B297CEF303FD3C63D26EAD074* L_20 = V_0;
|
|
NullCheck(L_20);
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:84>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_21 = __this->___m_DefaultInput;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_21, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:85>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23;
|
|
L_23 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
NullCheck(L_23);
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_24;
|
|
L_24 = GameObject_AddComponent_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m806BCC6ECD5CDF3BFD70F97C11B2B60215D82C2F(L_23, GameObject_AddComponent_TisBaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622_m806BCC6ECD5CDF3BFD70F97C11B2B60215D82C2F_RuntimeMethod_var);
|
|
__this->___m_DefaultInput = L_24;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DefaultInput), (void*)L_24);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:88>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_25 = __this->___m_DefaultInput;
|
|
return L_25;
|
|
}
|
|
}
|
|
// Method Definition Index: 68725
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* BaseInputModule_get_inputOverride_m92D66E309898C180BF887F6043CCE7AE63C6C44C (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:100>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0 = __this->___m_InputOverride;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68726
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_set_inputOverride_m876BAC421A4BC40FB5873FC386E361C4CFA53987 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:101>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0 = ___0_value;
|
|
__this->___m_InputOverride = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputOverride), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:101>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68727
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:106>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68728
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_OnEnable_m2F440F226F94D4D79905CD403F08C3AEEE99D965 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisEventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_mC0057F51AC54461AE48825268F70602D751EC73E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:111>
|
|
UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:112>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = Component_GetComponent_TisEventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_mC0057F51AC54461AE48825268F70602D751EC73E(__this, Component_GetComponent_TisEventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_mC0057F51AC54461AE48825268F70602D751EC73E_RuntimeMethod_var);
|
|
__this->___m_EventSystem = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventSystem), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:113>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1 = __this->___m_EventSystem;
|
|
NullCheck(L_1);
|
|
EventSystem_UpdateModules_m2D91F02D546D50094DDB25BF0228A987E2EAFF91(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:114>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68729
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_OnDisable_m370643AD83FFAD10B9E67301355F63B4FF7FB389 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:118>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
NullCheck(L_0);
|
|
EventSystem_UpdateModules_m2D91F02D546D50094DDB25BF0228A987E2EAFF91(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:119>
|
|
UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:120>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68731
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 BaseInputModule_FindFirstRaycast_mE07BDA14A7C9A8E3DFBFDAF449E5896597C9F6F5 (List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___0_candidates, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:132>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_0 = ___0_candidates;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline(L_0, List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:133>
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:135>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_2 = ___0_candidates;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_4;
|
|
L_4 = List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA(L_2, L_3, List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_RuntimeMethod_var);
|
|
V_2 = L_4;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
|
|
L_5 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:138>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_7 = ___0_candidates;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_9;
|
|
L_9 = List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA(L_7, L_8, List_1_get_Item_mD1048CD848E8C4A91EE63478805C4EF923CA82CA_RuntimeMethod_var);
|
|
return L_9;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:133>
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:133>
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:140>
|
|
il2cpp_codegen_initobj((&V_2), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_13 = V_2;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 68732
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_m8C99256812C74890B4F54BBCA5BE424A7D608E15 (float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:150>
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
int32_t L_2;
|
|
L_2 = BaseInputModule_DetermineMoveDirection_m6461EE20A0418E30EFA13CD293A2B0E7A95DBA54(L_0, L_1, (0.600000024f), NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68733
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_DetermineMoveDirection_m6461EE20A0418E30EFA13CD293A2B0E7A95DBA54 (float ___0_x, float ___1_y, float ___2_deadZone, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:162>
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_2), L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
float L_3;
|
|
L_3 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
|
|
float L_4 = ___2_deadZone;
|
|
float L_5 = ___2_deadZone;
|
|
if ((!(((float)L_3) < ((float)((float)il2cpp_codegen_multiply(L_4, L_5))))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:163>
|
|
return (int32_t)(4);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:165>
|
|
float L_6 = ___0_x;
|
|
float L_7;
|
|
L_7 = fabsf(L_6);
|
|
float L_8 = ___1_y;
|
|
float L_9;
|
|
L_9 = fabsf(L_8);
|
|
if ((!(((float)L_7) > ((float)L_9))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:167>
|
|
float L_10 = ___0_x;
|
|
if ((((float)L_10) > ((float)(0.0f))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
return (int32_t)(0);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return (int32_t)(2);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:170>
|
|
float L_11 = ___1_y;
|
|
if ((((float)L_11) > ((float)(0.0f))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return (int32_t)(3);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return (int32_t)(1);
|
|
}
|
|
}
|
|
// Method Definition Index: 68734
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseInputModule_FindCommonRoot_mBCC0541CA6E2BCFF051B90FE34F4F00C28CDFA10 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_g1, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_g2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_0 = NULL;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:181>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_g1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = ___1_g2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:182>
|
|
return (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:184>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = ___0_g1;
|
|
NullCheck(L_4);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
|
|
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
|
|
V_0 = L_5;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:187>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = ___1_g2;
|
|
NullCheck(L_6);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7;
|
|
L_7 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_6, NULL);
|
|
V_1 = L_7;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:190>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8 = V_0;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_9 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_8, L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:191>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12;
|
|
L_12 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_11, NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:192>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_14;
|
|
L_14 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_13, NULL);
|
|
V_1 = L_14;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:188>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_15 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:194>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_18;
|
|
L_18 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_17, NULL);
|
|
V_0 = L_18;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:185>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_19 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_19, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_20)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:196>
|
|
return (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL;
|
|
}
|
|
}
|
|
// Method Definition Index: 68735
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_currentPointerData, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_newEnterTarget, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m5FD94CEC31E280672B5C9C6095BD3B6235B9C70D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponentInParent_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m33A2601C5D3E027755778845E48FC5851FF1AEF8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m96F8E3A7752C3E8D7D05BB9998F71D144A39E60C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_7 = NULL;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_8 = NULL;
|
|
Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* G_B16_0 = NULL;
|
|
Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* G_B15_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B17_0 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B26_0 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B25_0 = NULL;
|
|
int32_t G_B27_0 = 0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B27_1 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B38_0 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B37_0 = NULL;
|
|
int32_t G_B39_0 = 0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* G_B39_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:208>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_currentPointerData;
|
|
NullCheck(L_2);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:210>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___0_currentPointerData;
|
|
NullCheck(L_5);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_6 = L_5->___hovered;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_inline(L_6, List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_RuntimeMethod_var);
|
|
V_3 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:211>
|
|
V_4 = 0;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:213>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_currentPointerData;
|
|
NullCheck(L_8);
|
|
PointerEventData_set_fullyExited_mDC23BED1E8A933E25E955A25109494A5D9F25C74_inline(L_8, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:214>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___0_currentPointerData;
|
|
NullCheck(L_9);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_10 = L_9->___hovered;
|
|
int32_t L_11 = V_4;
|
|
NullCheck(L_10);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12;
|
|
L_12 = List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979(L_10, L_11, List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979_RuntimeMethod_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_currentPointerData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_14;
|
|
L_14 = ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline(NULL);
|
|
bool L_15;
|
|
L_15 = ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15(L_12, L_13, L_14, ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:215>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___0_currentPointerData;
|
|
NullCheck(L_16);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_17 = L_16->___hovered;
|
|
int32_t L_18 = V_4;
|
|
NullCheck(L_17);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_19;
|
|
L_19 = List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979(L_17, L_18, List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979_RuntimeMethod_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_20 = ___0_currentPointerData;
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_21;
|
|
L_21 = ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline(NULL);
|
|
bool L_22;
|
|
L_22 = ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B(L_19, L_20, L_21, ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:211>
|
|
int32_t L_23 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:211>
|
|
int32_t L_24 = V_4;
|
|
int32_t L_25 = V_3;
|
|
if ((((int32_t)L_24) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:218>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___0_currentPointerData;
|
|
NullCheck(L_26);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_27 = L_26->___hovered;
|
|
NullCheck(L_27);
|
|
List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_inline(L_27, List_1_Clear_m32D399BDD753B5BD6CE27560249096418F3F0867_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:220>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_29;
|
|
L_29 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_28, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:222>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___0_currentPointerData;
|
|
NullCheck(L_30);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_30, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:223>
|
|
return;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:228>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_31 = ___0_currentPointerData;
|
|
NullCheck(L_31);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
|
|
L_32 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_31, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_32, L_33, NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_36;
|
|
L_36 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:230>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = ___0_currentPointerData;
|
|
NullCheck(L_37);
|
|
bool L_38;
|
|
L_38 = PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E(L_37, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:232>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = ___0_currentPointerData;
|
|
NullCheck(L_39);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_40 = L_39->___hovered;
|
|
NullCheck(L_40);
|
|
int32_t L_41;
|
|
L_41 = List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_inline(L_40, List_1_get_Count_m4C37ED2D928D63B80F55AF434730C2D64EEB9F22_RuntimeMethod_var);
|
|
V_5 = L_41;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:233>
|
|
V_6 = 0;
|
|
goto IL_00d7;
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:234>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_42 = ___0_currentPointerData;
|
|
NullCheck(L_42);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_43 = L_42->___hovered;
|
|
int32_t L_44 = V_6;
|
|
NullCheck(L_43);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_45;
|
|
L_45 = List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979(L_43, L_44, List_1_get_Item_mE8DBE527F24D9CFED839C34216C475B716169979_RuntimeMethod_var);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = ___0_currentPointerData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_47;
|
|
L_47 = ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline(NULL);
|
|
bool L_48;
|
|
L_48 = ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15(L_45, L_46, L_47, ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:233>
|
|
int32_t L_49 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_49, 1));
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:233>
|
|
int32_t L_50 = V_6;
|
|
int32_t L_51 = V_5;
|
|
if ((((int32_t)L_50) < ((int32_t)L_51)))
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:236>
|
|
return;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:239>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_52 = ___0_currentPointerData;
|
|
NullCheck(L_52);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_53;
|
|
L_53 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_52, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_54 = ___1_newEnterTarget;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_55;
|
|
L_55 = BaseInputModule_FindCommonRoot_mBCC0541CA6E2BCFF051B90FE34F4F00C28CDFA10(L_53, L_54, NULL);
|
|
V_0 = L_55;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:240>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_56 = ___1_newEnterTarget;
|
|
NullCheck(L_56);
|
|
RuntimeObject* L_57;
|
|
L_57 = GameObject_GetComponentInParent_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m33A2601C5D3E027755778845E48FC5851FF1AEF8(L_56, GameObject_GetComponentInParent_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m33A2601C5D3E027755778845E48FC5851FF1AEF8_RuntimeMethod_var);
|
|
Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* L_58 = ((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)CastclassClass((RuntimeObject*)L_57, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var));
|
|
if (L_58)
|
|
{
|
|
G_B16_0 = L_58;
|
|
goto IL_00fd;
|
|
}
|
|
G_B15_0 = L_58;
|
|
}
|
|
{
|
|
G_B17_0 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)(NULL));
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
NullCheck(G_B16_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_59;
|
|
L_59 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(G_B16_0, NULL);
|
|
G_B17_0 = L_59;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
V_1 = G_B17_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:243>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_60 = ___0_currentPointerData;
|
|
NullCheck(L_60);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_61;
|
|
L_61 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_60, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_62;
|
|
L_62 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_61, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_62)
|
|
{
|
|
goto IL_0207;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:248>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_63 = ___0_currentPointerData;
|
|
NullCheck(L_63);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_64;
|
|
L_64 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_63, NULL);
|
|
NullCheck(L_64);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_65;
|
|
L_65 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_64, NULL);
|
|
V_7 = L_65;
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:253>
|
|
bool L_66 = __this->___m_SendPointerHoverToParent;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_67 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_68;
|
|
L_68 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_67, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_69 = V_0;
|
|
NullCheck(L_69);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_70;
|
|
L_70 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_69, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_71 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_72;
|
|
L_72 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_70, L_71, NULL);
|
|
if (L_72)
|
|
{
|
|
goto IL_0207;
|
|
}
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:257>
|
|
bool L_73 = __this->___m_SendPointerHoverToParent;
|
|
if (L_73)
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_74 = V_1;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_75 = V_7;
|
|
NullCheck(L_75);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_76;
|
|
L_76 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_75, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_77;
|
|
L_77 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_74, L_76, NULL);
|
|
if (L_77)
|
|
{
|
|
goto IL_0207;
|
|
}
|
|
}
|
|
|
|
IL_0163:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:260>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_78 = ___0_currentPointerData;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_79 = V_7;
|
|
NullCheck(L_79);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_80;
|
|
L_80 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_79, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_81 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_82;
|
|
L_82 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_80, L_81, NULL);
|
|
if (!L_82)
|
|
{
|
|
G_B26_0 = L_78;
|
|
goto IL_0181;
|
|
}
|
|
G_B25_0 = L_78;
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_83 = ___0_currentPointerData;
|
|
NullCheck(L_83);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_84;
|
|
L_84 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_83, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_85 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_86;
|
|
L_86 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_84, L_85, NULL);
|
|
G_B27_0 = ((int32_t)(L_86));
|
|
G_B27_1 = G_B25_0;
|
|
goto IL_0182;
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
G_B27_0 = 0;
|
|
G_B27_1 = G_B26_0;
|
|
}
|
|
|
|
IL_0182:
|
|
{
|
|
NullCheck(G_B27_1);
|
|
PointerEventData_set_fullyExited_mDC23BED1E8A933E25E955A25109494A5D9F25C74_inline(G_B27_1, (bool)G_B27_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:261>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_87 = V_7;
|
|
NullCheck(L_87);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_88;
|
|
L_88 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_87, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_89 = ___0_currentPointerData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_90;
|
|
L_90 = ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline(NULL);
|
|
bool L_91;
|
|
L_91 = ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15(L_88, L_89, L_90, ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:262>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_92 = V_7;
|
|
NullCheck(L_92);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_93;
|
|
L_93 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_92, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_94 = ___0_currentPointerData;
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_95;
|
|
L_95 = ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline(NULL);
|
|
bool L_96;
|
|
L_96 = ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B(L_93, L_94, L_95, ExecuteEvents_Execute_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m2A609779B668E51A5FE801BED084B579E15D561B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:263>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_97 = ___0_currentPointerData;
|
|
NullCheck(L_97);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_98 = L_97->___hovered;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_99 = V_7;
|
|
NullCheck(L_99);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_100;
|
|
L_100 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_99, NULL);
|
|
NullCheck(L_98);
|
|
bool L_101;
|
|
L_101 = List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485(L_98, L_100, List_1_Remove_mCCE85D4D5326536C4B214C73D07030F4CCD18485_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:265>
|
|
bool L_102 = __this->___m_SendPointerHoverToParent;
|
|
if (!L_102)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:265>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_103 = V_7;
|
|
NullCheck(L_103);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_104;
|
|
L_104 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_103, NULL);
|
|
V_7 = L_104;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:268>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_105 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_106;
|
|
L_106 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_105, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_106)
|
|
{
|
|
goto IL_01e9;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_107 = V_0;
|
|
NullCheck(L_107);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_108;
|
|
L_108 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_107, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_109 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_110;
|
|
L_110 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_108, L_109, NULL);
|
|
if (L_110)
|
|
{
|
|
goto IL_0207;
|
|
}
|
|
}
|
|
|
|
IL_01e9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:271>
|
|
bool L_111 = __this->___m_SendPointerHoverToParent;
|
|
if (L_111)
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:271>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_112 = V_7;
|
|
NullCheck(L_112);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_113;
|
|
L_113 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_112, NULL);
|
|
V_7 = L_113;
|
|
}
|
|
|
|
IL_01fa:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:250>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_114 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_115;
|
|
L_115 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_114, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_115)
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
|
|
IL_0207:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:276>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_116 = ___0_currentPointerData;
|
|
NullCheck(L_116);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_117;
|
|
L_117 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_116, NULL);
|
|
V_2 = L_117;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:277>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_118 = ___0_currentPointerData;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_119 = ___1_newEnterTarget;
|
|
NullCheck(L_118);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_118, L_119, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:278>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_120 = ___1_newEnterTarget;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_121;
|
|
L_121 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_120, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_121)
|
|
{
|
|
goto IL_02fb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:280>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_122 = ___1_newEnterTarget;
|
|
NullCheck(L_122);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_123;
|
|
L_123 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_122, NULL);
|
|
V_8 = L_123;
|
|
goto IL_02ee;
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:284>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_124 = ___0_currentPointerData;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_125 = V_8;
|
|
NullCheck(L_125);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_126;
|
|
L_126 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_125, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_127 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_128;
|
|
L_128 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_126, L_127, NULL);
|
|
if (!L_128)
|
|
{
|
|
G_B38_0 = L_124;
|
|
goto IL_024d;
|
|
}
|
|
G_B37_0 = L_124;
|
|
}
|
|
{
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_129 = V_8;
|
|
NullCheck(L_129);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_130;
|
|
L_130 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_129, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_131 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_132;
|
|
L_132 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_130, L_131, NULL);
|
|
G_B39_0 = ((int32_t)(L_132));
|
|
G_B39_1 = G_B37_0;
|
|
goto IL_024e;
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
G_B39_0 = 0;
|
|
G_B39_1 = G_B38_0;
|
|
}
|
|
|
|
IL_024e:
|
|
{
|
|
NullCheck(G_B39_1);
|
|
PointerEventData_set_reentered_mE363C3D307806C3FF87DF730C14E82AF68A96D8A_inline(G_B39_1, (bool)G_B39_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:286>
|
|
bool L_133 = __this->___m_SendPointerHoverToParent;
|
|
if (!L_133)
|
|
{
|
|
goto IL_0266;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_134 = ___0_currentPointerData;
|
|
NullCheck(L_134);
|
|
bool L_135;
|
|
L_135 = PointerEventData_get_reentered_m8B88B2F3A8C9FBBE878B458560F5BFF2D7DD142B_inline(L_134, NULL);
|
|
if (L_135)
|
|
{
|
|
goto IL_02fb;
|
|
}
|
|
}
|
|
|
|
IL_0266:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:289>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_136 = V_8;
|
|
NullCheck(L_136);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_137;
|
|
L_137 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_136, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_138 = ___0_currentPointerData;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_139;
|
|
L_139 = ExecuteEvents_get_pointerEnterHandler_m9F921E3357CE38A925DF20E9CD94B4C3AEE9AE48_inline(NULL);
|
|
bool L_140;
|
|
L_140 = ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m5FD94CEC31E280672B5C9C6095BD3B6235B9C70D(L_137, L_138, L_139, ExecuteEvents_Execute_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m5FD94CEC31E280672B5C9C6095BD3B6235B9C70D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:290>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_141 = V_8;
|
|
NullCheck(L_141);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_142;
|
|
L_142 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_141, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_143 = ___0_currentPointerData;
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_144;
|
|
L_144 = ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline(NULL);
|
|
bool L_145;
|
|
L_145 = ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15(L_142, L_143, L_144, ExecuteEvents_Execute_TisIPointerMoveHandler_tA59687B0E8D1ECDE2A365B9FD3A1CF4A78500F85_m6876A0C9BE3BDB14A115622664F1B5804EF61B15_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:291>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_146 = ___0_currentPointerData;
|
|
NullCheck(L_146);
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* L_147 = L_146->___hovered;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_148 = V_8;
|
|
NullCheck(L_148);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_149;
|
|
L_149 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_148, NULL);
|
|
NullCheck(L_147);
|
|
List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_inline(L_147, L_149, List_1_Add_m43FBF207375C6E06B8C45ECE614F9B8008FB686E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:294>
|
|
bool L_150 = __this->___m_SendPointerHoverToParent;
|
|
if (L_150)
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
}
|
|
{
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_151 = V_8;
|
|
NullCheck(L_151);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_152;
|
|
L_152 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_151, NULL);
|
|
NullCheck(L_152);
|
|
RuntimeObject* L_153;
|
|
L_153 = GameObject_GetComponent_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m96F8E3A7752C3E8D7D05BB9998F71D144A39E60C(L_152, GameObject_GetComponent_TisIPointerEnterHandler_t4E892ED9F3BC7F8B69057B096E0C4FB97C0CF13F_m96F8E3A7752C3E8D7D05BB9998F71D144A39E60C_RuntimeMethod_var);
|
|
if (L_153)
|
|
{
|
|
goto IL_02fb;
|
|
}
|
|
}
|
|
|
|
IL_02b4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:297>
|
|
bool L_154 = __this->___m_SendPointerHoverToParent;
|
|
if (!L_154)
|
|
{
|
|
goto IL_02c5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:297>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_155 = V_8;
|
|
NullCheck(L_155);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_156;
|
|
L_156 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_155, NULL);
|
|
V_8 = L_156;
|
|
}
|
|
|
|
IL_02c5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:300>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_157 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_158;
|
|
L_158 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_157, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_158)
|
|
{
|
|
goto IL_02dd;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_159 = V_0;
|
|
NullCheck(L_159);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_160;
|
|
L_160 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_159, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_161 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_162;
|
|
L_162 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_160, L_161, NULL);
|
|
if (L_162)
|
|
{
|
|
goto IL_02fb;
|
|
}
|
|
}
|
|
|
|
IL_02dd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:303>
|
|
bool L_163 = __this->___m_SendPointerHoverToParent;
|
|
if (L_163)
|
|
{
|
|
goto IL_02ee;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:303>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_164 = V_8;
|
|
NullCheck(L_164);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_165;
|
|
L_165 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_164, NULL);
|
|
V_8 = L_165;
|
|
}
|
|
|
|
IL_02ee:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:282>
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_166 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_167;
|
|
L_167 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_166, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_167)
|
|
{
|
|
goto IL_022e;
|
|
}
|
|
}
|
|
|
|
IL_02fb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:306>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68736
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* BaseInputModule_GetAxisEventData_m99FD46006BB2D8FD6D1E10F606886FE017955293 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, float ___0_x, float ___1_y, float ___2_moveDeadZone, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:316>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_0 = __this->___m_AxisEventData;
|
|
if (L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:317>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_2 = (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938*)il2cpp_codegen_object_new(AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938_il2cpp_TypeInfo_var);
|
|
AxisEventData__ctor_mD9AFBD293F84F7032BAC2BDCB47FF5A780418CC5(L_2, L_1, NULL);
|
|
__this->___m_AxisEventData = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AxisEventData), (void*)L_2);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:319>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_3 = __this->___m_AxisEventData;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(4, L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:320>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_4 = __this->___m_AxisEventData;
|
|
float L_5 = ___0_x;
|
|
float L_6 = ___1_y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_7), L_5, L_6, NULL);
|
|
NullCheck(L_4);
|
|
AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline(L_4, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:321>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_8 = __this->___m_AxisEventData;
|
|
float L_9 = ___0_x;
|
|
float L_10 = ___1_y;
|
|
float L_11 = ___2_moveDeadZone;
|
|
int32_t L_12;
|
|
L_12 = BaseInputModule_DetermineMoveDirection_m6461EE20A0418E30EFA13CD293A2B0E7A95DBA54(L_9, L_10, L_11, NULL);
|
|
NullCheck(L_8);
|
|
AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline(L_8, L_12, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:322>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_13 = __this->___m_AxisEventData;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 68737
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* BaseInputModule_GetBaseEventData_mF750E3A63EC1080B933A2FA2CC21D683A68ED433 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:330>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0 = __this->___m_BaseEventData;
|
|
if (L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:331>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_1;
|
|
L_1 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_2 = (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*)il2cpp_codegen_object_new(BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F_il2cpp_TypeInfo_var);
|
|
BaseEventData__ctor_mE51C4DB618D8661AB2527EC5DE4D563D2284F558(L_2, L_1, NULL);
|
|
__this->___m_BaseEventData = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_BaseEventData), (void*)L_2);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:333>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_3 = __this->___m_BaseEventData;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(4, L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:334>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_4 = __this->___m_BaseEventData;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 68738
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_IsPointerOverGameObject_m1406F19FE6A3CAEECB2238427345E4CA32E1AD6F (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:344>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68739
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_ShouldActivateModule_m51B70F9097EF7FEB20B62D4D775F7FEA853185A1 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:352>
|
|
bool L_0;
|
|
L_0 = Behaviour_get_enabled_mAAC9F15E9EBF552217A5AE2681589CC0BFA300C1(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = GameObject_get_activeInHierarchy_m49250F4F168DCC5388D5BE4F6A5681386907B109(L_1, NULL);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68740
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_DeactivateModule_mAE698307DADBE4DE8A26BD3DE5F3F7E3D75B385D (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:359>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68741
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_ActivateModule_m2C693E95727E13FDF06D54FA8762A040175AC3BA (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:365>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68742
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule_UpdateModule_m201C2C266D80D7451D42E929A90EFC8C4B7358BE (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:371>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68743
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseInputModule_IsModuleSupported_m60644A4C84A8B0FA66E204E20D149A0BCFAD27A2 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:379>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68744
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_ConvertUIToolkitPointerId_m067C6EDDF29815FE295111E95A38F66860D1E441 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_sourcePointerData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:390>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:391>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:392>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_sourcePointerData;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline(L_0, NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)0)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerIdBase;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___0_sourcePointerData;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline(L_3, NULL);
|
|
return ((int32_t)il2cpp_codegen_add(L_2, L_4));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 68745
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 BaseInputModule_ConvertPointerEventScrollDeltaToTicks_m8C079F385CC514242F0713126C048819B7FC2782 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_scrollDelta, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:407>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_scrollDelta;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_1;
|
|
L_1 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_1);
|
|
float L_2;
|
|
L_2 = VirtualFuncInvoker0< float >::Invoke(28, L_1);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline(L_0, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 68746
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseInputModule_GetNavigationEventDeviceType_m9B81489FADA7F2D4800E7339CE1F21F654FB7293 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:427>
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68747
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseInputModule__ctor_m88DDBBE7BC4BB7170F5F8F00A0C9E2EC6328B819 (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8292C421BBB00D7661DC07462822936152BAB446_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:40>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_0 = (List_1_t8292C421BBB00D7661DC07462822936152BAB446*)il2cpp_codegen_object_new(List_1_t8292C421BBB00D7661DC07462822936152BAB446_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B(L_0, List_1__ctor_m95532062701811F50E0B0270E05E27297B2B3A7B_RuntimeMethod_var);
|
|
__this->___m_RaycastResultCache = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RaycastResultCache), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:45>
|
|
__this->___m_SendPointerHoverToParent = (bool)1;
|
|
UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68748
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_id, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** ___1_data, bool ___2_create, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m305891EF95C72E701559AF35E8FEC63AB6F60FE3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mCB659CC4F3197065FE376188D414B1985C1F02EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:43>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_0 = __this->___m_PointerData;
|
|
int32_t L_1 = ___0_id;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** L_2 = ___1_data;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mCB659CC4F3197065FE376188D414B1985C1F02EB(L_0, L_1, L_2, Dictionary_2_TryGetValue_mCB659CC4F3197065FE376188D414B1985C1F02EB_RuntimeMethod_var);
|
|
bool L_4 = ___2_create;
|
|
if (!((int32_t)(((((int32_t)L_3) == ((int32_t)0))? 1 : 0)&(int32_t)L_4)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:45>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:46>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:47>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:48>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** L_5 = ___1_data;
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_6;
|
|
L_6 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)il2cpp_codegen_object_new(PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
|
|
PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C(L_7, L_6, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = L_7;
|
|
int32_t L_9 = ___0_id;
|
|
NullCheck(L_8);
|
|
PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline(L_8, L_9, NULL);
|
|
*((RuntimeObject**)L_5) = (RuntimeObject*)L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:49>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_10 = __this->___m_PointerData;
|
|
int32_t L_11 = ___0_id;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB** L_12 = ___1_data;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = *((PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB**)L_12);
|
|
NullCheck(L_10);
|
|
Dictionary_2_Add_m305891EF95C72E701559AF35E8FEC63AB6F60FE3(L_10, L_11, L_13, Dictionary_2_Add_m305891EF95C72E701559AF35E8FEC63AB6F60FE3_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:50>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:52>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68749
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_RemovePointerData_m012713A1B4511855549793D6BA2B7998134B1BE9 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m0F563590CD7E2B91C7AC405B31C0C514C03EFB27_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:60>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_0 = __this->___m_PointerData;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_data;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline(L_1, NULL);
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_Remove_m0F563590CD7E2B91C7AC405B31C0C514C03EFB27(L_0, L_2, Dictionary_2_Remove_m0F563590CD7E2B91C7AC405B31C0C514C03EFB27_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:61>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* PointerInputModule_GetTouchPointerEventData_m55EBA8BD04214AAD8E98B9109D44610496A5B2E1 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, Touch_t03E51455ED508492B3F278903A0114FA0E87B417 ___0_input, bool* ___1_pressed, bool* ___2_released, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool* G_B2_0 = NULL;
|
|
bool* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
bool* G_B3_1 = NULL;
|
|
bool* G_B5_0 = NULL;
|
|
bool* G_B4_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
bool* G_B6_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:73>
|
|
int32_t L_0;
|
|
L_0 = Touch_get_fingerId_mC1DCE93BFA0574960A3AE5329AE6C5F7E06962BD((&___0_input), NULL);
|
|
bool L_1;
|
|
L_1 = PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5(__this, L_0, (&V_0), (bool)1, NULL);
|
|
V_1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:75>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker0::Invoke(4, L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:77>
|
|
bool* L_3 = ___1_pressed;
|
|
bool L_4 = V_1;
|
|
if (L_4)
|
|
{
|
|
G_B2_0 = L_3;
|
|
goto IL_0027;
|
|
}
|
|
G_B1_0 = L_3;
|
|
}
|
|
{
|
|
int32_t L_5;
|
|
L_5 = Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0((&___0_input), NULL);
|
|
G_B3_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
G_B3_0 = 1;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
*((int8_t*)G_B3_1) = (int8_t)G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:78>
|
|
bool* L_6 = ___2_released;
|
|
int32_t L_7;
|
|
L_7 = Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0((&___0_input), NULL);
|
|
if ((((int32_t)L_7) == ((int32_t)4)))
|
|
{
|
|
G_B5_0 = L_6;
|
|
goto IL_0040;
|
|
}
|
|
G_B4_0 = L_6;
|
|
}
|
|
{
|
|
int32_t L_8;
|
|
L_8 = Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0((&___0_input), NULL);
|
|
G_B6_0 = ((((int32_t)L_8) == ((int32_t)3))? 1 : 0);
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
*((int8_t*)G_B6_1) = (int8_t)G_B6_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:80>
|
|
bool L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:81>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A((&___0_input), NULL);
|
|
NullCheck(L_10);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_10, L_11, NULL);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:83>
|
|
bool* L_12 = ___1_pressed;
|
|
int32_t L_13 = *((uint8_t*)L_12);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:84>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_14);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_14, L_15, NULL);
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:86>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17;
|
|
L_17 = Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A((&___0_input), NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
|
|
L_19 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_18, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
|
|
L_20 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_17, L_19, NULL);
|
|
NullCheck(L_16);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_16, L_20, NULL);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:88>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
|
|
L_22 = Touch_get_position_m41B9EB0F3F3E1BE98CEB388253A9E31979CB964A((&___0_input), NULL);
|
|
NullCheck(L_21);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_21, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:90>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_23, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:92>
|
|
int32_t L_24;
|
|
L_24 = Touch_get_phase_mB82409FB2BE1C32ABDBA6A72E52A099D28AB70B0((&___0_input), NULL);
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)4))))
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:94>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_25 = V_0;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_26 = V_2;
|
|
NullCheck(L_25);
|
|
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_25, L_26, NULL);
|
|
goto IL_00da;
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:98>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_27;
|
|
L_27 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = V_0;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_29 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
NullCheck(L_27);
|
|
EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528(L_27, L_28, L_29, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:100>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_30 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_31;
|
|
L_31 = BaseInputModule_FindFirstRaycast_mE07BDA14A7C9A8E3DFBFDAF449E5896597C9F6F5(L_30, NULL);
|
|
V_3 = L_31;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:101>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = V_0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_33 = V_3;
|
|
NullCheck(L_32);
|
|
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_32, L_33, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:102>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_34 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
NullCheck(L_34);
|
|
List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline(L_34, List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:105>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = V_0;
|
|
float L_36;
|
|
L_36 = Touch_get_pressure_mB8214D0E920156CA4679BAC03E86106E8E4BDA5C((&___0_input), NULL);
|
|
NullCheck(L_35);
|
|
PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA_inline(L_35, L_36, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:106>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = V_0;
|
|
float L_38;
|
|
L_38 = Touch_get_altitudeAngle_m26DEF010E2CDC23F4FADE8E49A986D557C07D391((&___0_input), NULL);
|
|
NullCheck(L_37);
|
|
PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1_inline(L_37, L_38, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:107>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = V_0;
|
|
float L_40;
|
|
L_40 = Touch_get_azimuthAngle_m2F11532183492E608922A2F9D9EC9AC31D34F490((&___0_input), NULL);
|
|
NullCheck(L_39);
|
|
PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B_inline(L_39, L_40, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:108>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_41 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42;
|
|
L_42 = Vector2_get_one_m9097EB8DC23C26118A591AF16702796C3EF51DFB_inline(NULL);
|
|
float L_43;
|
|
L_43 = Touch_get_radius_m5BC9C50DABBB17B07742BAFC6CC36A6736AE7960((&___0_input), NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44;
|
|
L_44 = Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline(L_42, L_43, NULL);
|
|
NullCheck(L_41);
|
|
PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE_inline(L_41, L_44, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:109>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_45 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_46;
|
|
L_46 = Vector2_get_one_m9097EB8DC23C26118A591AF16702796C3EF51DFB_inline(NULL);
|
|
float L_47;
|
|
L_47 = Touch_get_radiusVariance_m6F54BE964B91C3B2F8FA2A483E1FDB644B282B21((&___0_input), NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_48;
|
|
L_48 = Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline(L_46, L_47, NULL);
|
|
NullCheck(L_45);
|
|
PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E_inline(L_45, L_48, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:111>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = V_0;
|
|
return L_49;
|
|
}
|
|
}
|
|
// Method Definition Index: 68751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_CopyFromTo_m4302FE47F12B3B8C59A3790BD0ADF2BFAAEA9BFD (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_from, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___1_to, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:119>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_from;
|
|
NullCheck(L_1);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_1, NULL);
|
|
NullCheck(L_0);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_0, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:120>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_from;
|
|
NullCheck(L_4);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_4, NULL);
|
|
NullCheck(L_3);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_3, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:121>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___0_from;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_7, NULL);
|
|
NullCheck(L_6);
|
|
PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline(L_6, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:122>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_from;
|
|
NullCheck(L_10);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_11;
|
|
L_11 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_10, NULL);
|
|
NullCheck(L_9);
|
|
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_9, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:123>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_from;
|
|
NullCheck(L_13);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_13, NULL);
|
|
NullCheck(L_12);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:125>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___0_from;
|
|
NullCheck(L_16);
|
|
float L_17;
|
|
L_17 = PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3_inline(L_16, NULL);
|
|
NullCheck(L_15);
|
|
PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA_inline(L_15, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:126>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___0_from;
|
|
NullCheck(L_19);
|
|
float L_20;
|
|
L_20 = PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C_inline(L_19, NULL);
|
|
NullCheck(L_18);
|
|
PointerEventData_set_tangentialPressure_m66792087B044033F0FF0FA4B2BA316233755EEF4_inline(L_18, L_20, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:127>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_22 = ___0_from;
|
|
NullCheck(L_22);
|
|
float L_23;
|
|
L_23 = PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE_inline(L_22, NULL);
|
|
NullCheck(L_21);
|
|
PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1_inline(L_21, L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:128>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_25 = ___0_from;
|
|
NullCheck(L_25);
|
|
float L_26;
|
|
L_26 = PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42_inline(L_25, NULL);
|
|
NullCheck(L_24);
|
|
PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B_inline(L_24, L_26, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:129>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = ___0_from;
|
|
NullCheck(L_28);
|
|
float L_29;
|
|
L_29 = PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7_inline(L_28, NULL);
|
|
NullCheck(L_27);
|
|
PointerEventData_set_twist_mE49469F4F730BA43906F2167E7ADDB9CB2F946E4_inline(L_27, L_29, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:130>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_31 = ___0_from;
|
|
NullCheck(L_31);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_32;
|
|
L_32 = PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0_inline(L_31, NULL);
|
|
NullCheck(L_30);
|
|
PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE_inline(L_30, L_32, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:131>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_33 = ___1_to;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = ___0_from;
|
|
NullCheck(L_34);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_35;
|
|
L_35 = PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB_inline(L_34, NULL);
|
|
NullCheck(L_33);
|
|
PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E_inline(L_33, L_35, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:132>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68752
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerInputModule_StateForMouseButton_mED5B48F98F706160F97A26511FB82BD84DBAB0CF (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_buttonId, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:140>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0;
|
|
L_0 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
int32_t L_1 = ___0_buttonId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = VirtualFuncInvoker1< bool, int32_t >::Invoke(23, L_0, L_1);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:141>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3;
|
|
L_3 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
int32_t L_4 = ___0_buttonId;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker1< bool, int32_t >::Invoke(24, L_3, L_4);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:142>
|
|
bool L_6 = V_0;
|
|
bool L_7 = V_1;
|
|
if (!((int32_t)((int32_t)L_6&(int32_t)L_7)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:143>
|
|
return (int32_t)(2);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:144>
|
|
bool L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:145>
|
|
return (int32_t)(0);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:146>
|
|
bool L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:147>
|
|
return (int32_t)(1);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:148>
|
|
return (int32_t)(3);
|
|
}
|
|
}
|
|
// Method Definition Index: 68753
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* PointerInputModule_GetMousePointerEventData_m77052AB014196BA4E66C8BBE27EC9AF739031EFE (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:264>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_0;
|
|
L_0 = VirtualFuncInvoker1< MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09*, int32_t >::Invoke(30, __this, 0);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68754
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* PointerInputModule_GetMousePointerEventData_m8D8111399CF7077AEBE4836AC701DDDF3F5ADFC5 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_3 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:274>
|
|
bool L_0;
|
|
L_0 = PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5(__this, (-1), (&V_0), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:276>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker0::Invoke(4, L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:278>
|
|
if (!L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:279>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3;
|
|
L_3 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_3);
|
|
NullCheck(L_2);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_2, L_4, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:281>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_5;
|
|
L_5 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_5);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_5);
|
|
V_1 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:282>
|
|
int32_t L_7;
|
|
L_7 = Cursor_get_lockState_m9AD145AFB215DFEDA0074AC1F129EF02CCE5B632(NULL);
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:285>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_9), (-1.0f), (-1.0f), NULL);
|
|
NullCheck(L_8);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_8, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:286>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_10);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_10, L_11, NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:290>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_14, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
L_16 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_13, L_15, NULL);
|
|
NullCheck(L_12);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_12, L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:291>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_1;
|
|
NullCheck(L_17);
|
|
PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline(L_17, L_18, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:293>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_20;
|
|
L_20 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_20);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
L_21 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(27, L_20);
|
|
NullCheck(L_19);
|
|
PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline(L_19, L_21, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:294>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_22, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:295>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_23;
|
|
L_23 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = V_0;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_25 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
NullCheck(L_23);
|
|
EventSystem_RaycastAll_mE93CC75909438D20D17A0EF98348A064FBFEA528(L_23, L_24, L_25, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:296>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_26 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_27;
|
|
L_27 = BaseInputModule_FindFirstRaycast_mE07BDA14A7C9A8E3DFBFDAF449E5896597C9F6F5(L_26, NULL);
|
|
V_2 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:297>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = V_0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_29 = V_2;
|
|
NullCheck(L_28);
|
|
PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline(L_28, L_29, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:298>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_30 = ((BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1*)__this)->___m_RaycastResultCache;
|
|
NullCheck(L_30);
|
|
List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_inline(L_30, List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:302>
|
|
bool L_31;
|
|
L_31 = PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5(__this, ((int32_t)-2), (&V_3), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:303>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = V_3;
|
|
NullCheck(L_32);
|
|
VirtualActionInvoker0::Invoke(4, L_32);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:305>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_33 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = V_3;
|
|
PointerInputModule_CopyFromTo_m4302FE47F12B3B8C59A3790BD0ADF2BFAAEA9BFD(__this, L_33, L_34, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:306>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = V_3;
|
|
NullCheck(L_35);
|
|
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_35, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:309>
|
|
bool L_36;
|
|
L_36 = PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5(__this, ((int32_t)-3), (&V_4), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:310>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = V_4;
|
|
NullCheck(L_37);
|
|
VirtualActionInvoker0::Invoke(4, L_37);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:312>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_38 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = V_4;
|
|
PointerInputModule_CopyFromTo_m4302FE47F12B3B8C59A3790BD0ADF2BFAAEA9BFD(__this, L_38, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:313>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_40 = V_4;
|
|
NullCheck(L_40);
|
|
PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline(L_40, 2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:315>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_41 = __this->___m_MouseState;
|
|
int32_t L_42;
|
|
L_42 = PointerInputModule_StateForMouseButton_mED5B48F98F706160F97A26511FB82BD84DBAB0CF(__this, 0, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_43 = V_0;
|
|
NullCheck(L_41);
|
|
MouseState_SetButtonState_m72DA468C8D10E76923FA5F993BBDBCFFF57E4326(L_41, 0, L_42, L_43, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:316>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_44 = __this->___m_MouseState;
|
|
int32_t L_45;
|
|
L_45 = PointerInputModule_StateForMouseButton_mED5B48F98F706160F97A26511FB82BD84DBAB0CF(__this, 1, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = V_3;
|
|
NullCheck(L_44);
|
|
MouseState_SetButtonState_m72DA468C8D10E76923FA5F993BBDBCFFF57E4326(L_44, 1, L_45, L_46, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:317>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_47 = __this->___m_MouseState;
|
|
int32_t L_48;
|
|
L_48 = PointerInputModule_StateForMouseButton_mED5B48F98F706160F97A26511FB82BD84DBAB0CF(__this, 2, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = V_4;
|
|
NullCheck(L_47);
|
|
MouseState_SetButtonState_m72DA468C8D10E76923FA5F993BBDBCFFF57E4326(L_47, 2, L_48, L_49, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:319>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_50 = __this->___m_MouseState;
|
|
return L_50;
|
|
}
|
|
}
|
|
// Method Definition Index: 68755
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* PointerInputModule_GetLastPointerEventData_m6355023718EB2DCF6D9C226A57B63B70CCEECAB4 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:328>
|
|
int32_t L_0 = ___0_id;
|
|
bool L_1;
|
|
L_1 = PointerInputModule_GetPointerData_m8D1C52EE44136560312932072786A2B5AA2C8BE5(__this, L_0, (&V_0), (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:329>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68756
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_ShouldStartDrag_m6260055DEAD5E28183E338BDA53C7F8A0521EC6B (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_pressPos, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_currentPos, float ___2_threshold, bool ___3_useDragThreshold, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:334>
|
|
bool L_0 = ___3_useDragThreshold;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:335>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:337>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___0_pressPos;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_currentPos;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
float L_4;
|
|
L_4 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
|
|
float L_5 = ___2_threshold;
|
|
float L_6 = ___2_threshold;
|
|
return (bool)((((int32_t)((!(((float)L_4) >= ((float)((float)il2cpp_codegen_multiply(L_5, L_6)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68757
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ProcessMove_m3555F333D82A446C2354D8855034323BF7C9208A (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B3_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:345>
|
|
int32_t L_0;
|
|
L_0 = Cursor_get_lockState_m9AD145AFB215DFEDA0074AC1F129EF02CCE5B632(NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_pointerEvent;
|
|
NullCheck(L_1);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_2;
|
|
L_2 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_1), NULL);
|
|
G_B3_0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
G_B3_0 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)(NULL));
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:346>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = V_0;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:347>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68758
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ProcessDrag_m73FE39BFACC950DCA7FDD7BDC67F45484DC01207 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m1543843C77436B385445DCDE0E472112C8E40F87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_mAE71323F63A667FE0A4F8B9B0E27C6012B28FFE8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:354>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:355>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:356>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_pointerEvent;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = PointerEventData_IsPointerMoving_m281B3698E618D116F3D1E7473BADFAE5B67C834E(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = Cursor_get_lockState_m9AD145AFB215DFEDA0074AC1F129EF02CCE5B632(NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)1)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___0_pointerEvent;
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:357>
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:359>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:360>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___0_pointerEvent;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_pointerEvent;
|
|
NullCheck(L_8);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline(L_8, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_pointerEvent;
|
|
NullCheck(L_10);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_10, NULL);
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_12;
|
|
L_12 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline(L_12, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_14 = ___0_pointerEvent;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = PointerEventData_get_useDragThreshold_m3ED1F39E71630C9AB1F340C92F8FA39AA489E1C5_inline(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = PointerInputModule_ShouldStartDrag_m6260055DEAD5E28183E338BDA53C7F8A0521EC6B(L_9, L_11, ((float)L_13), L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:362>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___0_pointerEvent;
|
|
NullCheck(L_17);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18;
|
|
L_18 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_17, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_20;
|
|
L_20 = ExecuteEvents_get_beginDragHandler_mB0BEAC09E4A8F31438B07FE68A5BF7267FF8C2FC_inline(NULL);
|
|
bool L_21;
|
|
L_21 = ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m1543843C77436B385445DCDE0E472112C8E40F87(L_18, L_19, L_20, ExecuteEvents_Execute_TisIBeginDragHandler_t0E0386CCAB531BD8291D12476D40D19AA98ED7EB_m1543843C77436B385445DCDE0E472112C8E40F87_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:363>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_22 = ___0_pointerEvent;
|
|
NullCheck(L_22);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_22, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:367>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = ___0_pointerEvent;
|
|
NullCheck(L_23);
|
|
bool L_24;
|
|
L_24 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:371>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_25 = ___0_pointerEvent;
|
|
NullCheck(L_25);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_26;
|
|
L_26 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_25, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = ___0_pointerEvent;
|
|
NullCheck(L_27);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28;
|
|
L_28 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_27, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_29;
|
|
L_29 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_26, L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:373>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___0_pointerEvent;
|
|
NullCheck(L_30);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
|
|
L_31 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_30, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_32 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_33;
|
|
L_33 = ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline(NULL);
|
|
bool L_34;
|
|
L_34 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6(L_31, L_32, L_33, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:375>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = ___0_pointerEvent;
|
|
NullCheck(L_35);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_35, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:376>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_36 = ___0_pointerEvent;
|
|
NullCheck(L_36);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_36, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:377>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_37 = ___0_pointerEvent;
|
|
NullCheck(L_37);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_37, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:379>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_38 = ___0_pointerEvent;
|
|
NullCheck(L_38);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_39;
|
|
L_39 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_38, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_40 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_41;
|
|
L_41 = ExecuteEvents_get_dragHandler_m9193926B9685C80C0560C2E105FF6150C4EAE507_inline(NULL);
|
|
bool L_42;
|
|
L_42 = ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_mAE71323F63A667FE0A4F8B9B0E27C6012B28FFE8(L_39, L_40, L_41, ExecuteEvents_Execute_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_mAE71323F63A667FE0A4F8B9B0E27C6012B28FFE8_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:381>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68759
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerInputModule_IsPointerOverGameObject_mBDCC057426289D69D4C6E1EF7F6849C112171883 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:385>
|
|
int32_t L_0 = ___0_pointerId;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1;
|
|
L_1 = PointerInputModule_GetLastPointerEventData_m6355023718EB2DCF6D9C226A57B63B70CCEECAB4(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:386>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:387>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:388>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68760
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_ClearSelection_mC5852667E5B9CA97C2A4CAB3D7C907344511C1D2 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_mBB95A511CAA4D6BCF1D6EC54722BCA4DA4B37CF9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_m3B581D1E2D9D47BCC3513DC77CC6C6F8718F13DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m9FC32AA198E53E701EEAF271527A221A8F363A86_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA415C7B94AC3728AFA7791318E9210FC5EEFAB58_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m8515E9D5662F47A89C296550439BBD4DA548AE6A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_GetEnumerator_m0124B7611A2B03F480EB52872F7A1B24F0CA6EDC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_0 = NULL;
|
|
Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:396>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_0;
|
|
L_0 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19, __this);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:398>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_1 = __this->___m_PointerData;
|
|
NullCheck(L_1);
|
|
ValueCollection_tE4A676F89CE73FFF8A0046F16CEAF380F9A9CA41* L_2;
|
|
L_2 = Dictionary_2_get_Values_m3B581D1E2D9D47BCC3513DC77CC6C6F8718F13DC(L_1, Dictionary_2_get_Values_m3B581D1E2D9D47BCC3513DC77CC6C6F8718F13DC_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
Enumerator_t148E30607578AED3ECC6FF3C89DD895C757B1294 L_3;
|
|
L_3 = ValueCollection_GetEnumerator_m0124B7611A2B03F480EB52872F7A1B24F0CA6EDC(L_2, ValueCollection_GetEnumerator_m0124B7611A2B03F480EB52872F7A1B24F0CA6EDC_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0035:
|
|
{
|
|
Enumerator_Dispose_m9FC32AA198E53E701EEAF271527A221A8F363A86((&V_1), Enumerator_Dispose_m9FC32AA198E53E701EEAF271527A221A8F363A86_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_002a_1;
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:398>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4;
|
|
L_4 = Enumerator_get_Current_m8515E9D5662F47A89C296550439BBD4DA548AE6A_inline((&V_1), Enumerator_get_Current_m8515E9D5662F47A89C296550439BBD4DA548AE6A_RuntimeMethod_var);
|
|
V_2 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:401>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = V_2;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_5, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
}
|
|
|
|
IL_002a_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:398>
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_mA415C7B94AC3728AFA7791318E9210FC5EEFAB58((&V_1), Enumerator_MoveNext_mA415C7B94AC3728AFA7791318E9210FC5EEFAB58_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_001a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:404>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_7 = __this->___m_PointerData;
|
|
NullCheck(L_7);
|
|
Dictionary_2_Clear_mBB95A511CAA4D6BCF1D6EC54722BCA4DA4B37CF9(L_7, Dictionary_2_Clear_mBB95A511CAA4D6BCF1D6EC54722BCA4DA4B37CF9_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:405>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_8;
|
|
L_8 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_9 = V_0;
|
|
NullCheck(L_8);
|
|
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(L_8, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:406>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68761
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerInputModule_ToString_m9C5DB37AC45C9F27B017E3B52C5CFE22F91CAF9D (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mB0B90B98092517427782C4EE347F7B8C1D24D0D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE06F03979CE317849E31F0F481193E60F4E121C8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED650AB7FFD78DC7116CF9662F8B7B237319848D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
Type_t* G_B2_0 = NULL;
|
|
String_t* G_B2_1 = NULL;
|
|
Type_t* G_B1_0 = NULL;
|
|
String_t* G_B1_1 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
String_t* G_B3_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:410>
|
|
Type_t* L_0;
|
|
L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
|
|
Type_t* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
G_B2_1 = _stringLiteralE06F03979CE317849E31F0F481193E60F4E121C8;
|
|
goto IL_0012;
|
|
}
|
|
G_B1_0 = L_1;
|
|
G_B1_1 = _stringLiteralE06F03979CE317849E31F0F481193E60F4E121C8;
|
|
}
|
|
{
|
|
G_B3_0 = ((String_t*)(NULL));
|
|
G_B3_1 = G_B1_1;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B2_0);
|
|
G_B3_0 = L_2;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B3_1, G_B3_0, NULL);
|
|
StringBuilder_t* L_4 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_4, L_3, NULL);
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:411>
|
|
StringBuilder_t* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
StringBuilder_t* L_6;
|
|
L_6 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:412>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_7 = __this->___m_PointerData;
|
|
NullCheck(L_7);
|
|
Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E L_8;
|
|
L_8 = Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034(L_7, Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034_RuntimeMethod_var);
|
|
V_1 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0086:
|
|
{
|
|
Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714((&V_1), Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_007b_1;
|
|
}
|
|
|
|
IL_0037_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:412>
|
|
KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 L_9;
|
|
L_9 = Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_inline((&V_1), Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:414>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10;
|
|
L_10 = KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_inline((&V_2), KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_RuntimeMethod_var);
|
|
if (!L_10)
|
|
{
|
|
goto IL_007b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:416>
|
|
StringBuilder_t* L_11 = V_0;
|
|
int32_t L_12;
|
|
L_12 = KeyValuePair_2_get_Key_mB0B90B98092517427782C4EE347F7B8C1D24D0D8_inline((&V_2), KeyValuePair_2_get_Key_mB0B90B98092517427782C4EE347F7B8C1D24D0D8_RuntimeMethod_var);
|
|
V_3 = L_12;
|
|
String_t* L_13;
|
|
L_13 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_3), NULL);
|
|
String_t* L_14;
|
|
L_14 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralED650AB7FFD78DC7116CF9662F8B7B237319848D, L_13, NULL);
|
|
NullCheck(L_11);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_11, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:417>
|
|
StringBuilder_t* L_16 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17;
|
|
L_17 = KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_inline((&V_2), KeyValuePair_2_get_Value_m7810F6242E1CF0E943BE64217D93F2BABC60715D_RuntimeMethod_var);
|
|
NullCheck(L_17);
|
|
String_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_17);
|
|
NullCheck(L_16);
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_16, L_18, NULL);
|
|
}
|
|
|
|
IL_007b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:412>
|
|
bool L_20;
|
|
L_20 = Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150((&V_1), Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150_RuntimeMethod_var);
|
|
if (L_20)
|
|
{
|
|
goto IL_0037_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:419>
|
|
StringBuilder_t* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
String_t* L_22;
|
|
L_22 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_21);
|
|
return L_22;
|
|
}
|
|
}
|
|
// Method Definition Index: 68762
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule_DeselectIfSelectionChanged_m8F111DD2317E33C4F0498F651BC52BD5C984A95B (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_currentOverGo, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___1_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m52B7AEEF7C492E4D682E977FFEC06325F230EE50_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:430>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_currentOverGo;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m52B7AEEF7C492E4D682E977FFEC06325F230EE50(L_0, ExecuteEvents_GetEventHandler_TisISelectHandler_tA3030316ED9DF4943103C3101AD95FCD7765700D_m52B7AEEF7C492E4D682E977FFEC06325F230EE50_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:433>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_2;
|
|
L_2 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:434>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_5;
|
|
L_5 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_6 = ___1_pointerEvent;
|
|
NullCheck(L_5);
|
|
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(L_5, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, L_6, NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:435>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68763
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerInputModule__ctor_mBF074492478BFC24F87EF2C941D6C11A8ACDAF11 (PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m1D9661C57D08A16BB4A93388888AA1FFAB621320_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:32>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_0 = (Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493*)il2cpp_codegen_object_new(Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m1D9661C57D08A16BB4A93388888AA1FFAB621320(L_0, Dictionary_2__ctor_m1D9661C57D08A16BB4A93388888AA1FFAB621320_RuntimeMethod_var);
|
|
__this->___m_PointerData = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PointerData), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:257>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_1 = (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09*)il2cpp_codegen_object_new(MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09_il2cpp_TypeInfo_var);
|
|
MouseState__ctor_mF4A8041A86E50D91202770E73CE0DAF12BB207D9(L_1, NULL);
|
|
__this->___m_MouseState = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_MouseState), (void*)L_1);
|
|
BaseInputModule__ctor_m88DDBBE7BC4BB7170F5F8F00A0C9E2EC6328B819(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68764
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:157>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_0 = __this->___m_EventData;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68765
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState_set_eventData_mA9D59CB9A1565A7D99569E87D88B90738FEF4E1F (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:158>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_0 = ___0_value;
|
|
__this->___m_EventData = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventData), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:158>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68766
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_m2210A465432D0F990F2380B6357AD2FBA4A7540D (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:163>
|
|
int32_t L_0 = __this->___m_Button;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68767
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState_set_button_mFAE3F16E2B027BD6B854F18E7C7C2D6CDAB023DE (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:164>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_Button = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:164>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68768
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ButtonState__ctor_m4D7C25C0E1FC598646FFBD436B9A2042DB41AC9E (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68769
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseState_AnyPressesThisFrame_m4887FF61D58D641496B95C83710C8A4E841970F3 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:176>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_0 = __this->___m_TrackedButtons;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_inline(L_0, List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:177>
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:179>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_2 = __this->___m_TrackedButtons;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_4;
|
|
L_4 = List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24(L_2, L_3, List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5;
|
|
L_5 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_4, NULL);
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:180>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:177>
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:177>
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:182>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68770
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseState_AnyReleasesThisFrame_m4FBA37A12735418AD0970F11BC44850517B05E93 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:187>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_0 = __this->___m_TrackedButtons;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_inline(L_0, List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:188>
|
|
V_1 = 0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:190>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_2 = __this->___m_TrackedButtons;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_4;
|
|
L_4 = List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24(L_2, L_3, List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5;
|
|
L_5 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_4, NULL);
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = MouseButtonEventData_ReleasedThisFrame_m5AD4F06D1CA6E0ACD6E84EEFAD4FB112098AFD51(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:191>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:188>
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:188>
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:193>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68771
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, int32_t ___0_button, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0BDDD3FAAF7827914A1A2A6A7D24CFA755C8E1E0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:198>
|
|
V_0 = (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503*)NULL;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:199>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_0 = __this->___m_TrackedButtons;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_inline(L_0, List_1_get_Count_m233342468962DDEB9AF56781CA53376E97591CA4_RuntimeMethod_var);
|
|
V_1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:200>
|
|
V_2 = 0;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:202>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_2 = __this->___m_TrackedButtons;
|
|
int32_t L_3 = V_2;
|
|
NullCheck(L_2);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_4;
|
|
L_4 = List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24(L_2, L_3, List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = ButtonState_get_button_m2210A465432D0F990F2380B6357AD2FBA4A7540D_inline(L_4, NULL);
|
|
int32_t L_6 = ___0_button;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:204>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_7 = __this->___m_TrackedButtons;
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_9;
|
|
L_9 = List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24(L_7, L_8, List_1_get_Item_m8ABD0D7036E193AF7F9275ABE1630C49E5002A24_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:205>
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:200>
|
|
int32_t L_10 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:200>
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12 = V_1;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:209>
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_13 = V_0;
|
|
if (L_13)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:211>
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_14 = (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503*)il2cpp_codegen_object_new(ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503_il2cpp_TypeInfo_var);
|
|
ButtonState__ctor_m4D7C25C0E1FC598646FFBD436B9A2042DB41AC9E(L_14, NULL);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_15 = L_14;
|
|
int32_t L_16 = ___0_button;
|
|
NullCheck(L_15);
|
|
ButtonState_set_button_mFAE3F16E2B027BD6B854F18E7C7C2D6CDAB023DE_inline(L_15, L_16, NULL);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_17 = L_15;
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_18 = (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154*)il2cpp_codegen_object_new(MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154_il2cpp_TypeInfo_var);
|
|
MouseButtonEventData__ctor_m9EDAC7F39F1D3CFBB93403DDE620A5147C4469A2(L_18, NULL);
|
|
NullCheck(L_17);
|
|
ButtonState_set_eventData_mA9D59CB9A1565A7D99569E87D88B90738FEF4E1F_inline(L_17, L_18, NULL);
|
|
V_0 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:212>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_19 = __this->___m_TrackedButtons;
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_20 = V_0;
|
|
NullCheck(L_19);
|
|
List_1_Add_m0BDDD3FAAF7827914A1A2A6A7D24CFA755C8E1E0_inline(L_19, L_20, List_1_Add_m0BDDD3FAAF7827914A1A2A6A7D24CFA755C8E1E0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:214>
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_21 = V_0;
|
|
return L_21;
|
|
}
|
|
}
|
|
// Method Definition Index: 68772
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState_SetButtonState_m72DA468C8D10E76923FA5F993BBDBCFFF57E4326 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, int32_t ___0_button, int32_t ___1_stateForMouseButton, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___2_data, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:219>
|
|
int32_t L_0 = ___0_button;
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_1;
|
|
L_1 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:220>
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_3;
|
|
L_3 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_2, NULL);
|
|
int32_t L_4 = ___1_stateForMouseButton;
|
|
NullCheck(L_3);
|
|
L_3->___buttonState = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:221>
|
|
NullCheck(L_2);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5;
|
|
L_5 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_2, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___2_data;
|
|
NullCheck(L_5);
|
|
L_5->___buttonData = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___buttonData), (void*)L_6);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:222>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68773
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseState__ctor_mF4A8041A86E50D91202770E73CE0DAF12BB207D9 (MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4E26266DF028F44B765A8CB0C5DA32AA2C04B209_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:172>
|
|
List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3* L_0 = (List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3*)il2cpp_codegen_object_new(List_1_t6D515F3BEDA0E1BF16E735CE960F740AB8ACBDD3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m4E26266DF028F44B765A8CB0C5DA32AA2C04B209(L_0, List_1__ctor_m4E26266DF028F44B765A8CB0C5DA32AA2C04B209_RuntimeMethod_var);
|
|
__this->___m_TrackedButtons = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TrackedButtons), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68774
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:245>
|
|
int32_t L_0 = __this->___buttonState;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->___buttonState;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68775
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseButtonEventData_ReleasedThisFrame_m5AD4F06D1CA6E0ACD6E84EEFAD4FB112098AFD51 (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:253>
|
|
int32_t L_0 = __this->___buttonState;
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->___buttonState;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)2))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68776
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseButtonEventData__ctor_m9EDAC7F39F1D3CFBB93403DDE620A5147C4469A2 (MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68777
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule__ctor_m77BAC1DB71B81FFCD2791DE706BD4FE239F47C27 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:47>
|
|
__this->___m_HorizontalAxis = _stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_HorizontalAxis), (void*)_stringLiteral7F8C014BD4810CC276D0F9F81A1E759C7B098B1E);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:53>
|
|
__this->___m_VerticalAxis = _stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_VerticalAxis), (void*)_stringLiteral265E15F1F86F1C766555899D5771CF29055DE75A);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:59>
|
|
__this->___m_SubmitButton = _stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SubmitButton), (void*)_stringLiteral190CDBBC7377A308B78E27EF91319FD2DA386895);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:65>
|
|
__this->___m_CancelButton = _stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CancelButton), (void*)_stringLiteral93717CD8FCD45BAB4F15D3BACC989A6A93BA2674);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:68>
|
|
__this->___m_InputActionsPerSecond = (10.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:71>
|
|
__this->___m_RepeatDelay = (0.5f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:29>
|
|
PointerInputModule__ctor_mBF074492478BFC24F87EF2C941D6C11A8ACDAF11(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:31>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68778
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StandaloneInputModule_get_inputMode_m38D63EDD9DE39E7AFE1821BDE201625C292C66D9 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:43>
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68779
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_get_allowActivationOnMobileDevice_m03E7DC8FCBE7B43A223EADABB454445C91664A1B (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:81>
|
|
bool L_0 = __this->___m_ForceModuleActive;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68780
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_allowActivationOnMobileDevice_mFFFF3E19FBD199ED9BFAEC535E5BD11F5027FF25 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:82>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ForceModuleActive = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:82>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68781
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_get_forceModuleActive_m381A5525E48FD280EB91ECEEEF138E7603C004B8 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:95>
|
|
bool L_0 = __this->___m_ForceModuleActive;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68782
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_forceModuleActive_m4C3FD8550258266795D24863D8B531F2402500DD (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:96>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ForceModuleActive = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:96>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68783
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StandaloneInputModule_get_inputActionsPerSecond_m584ABC794A3864BF91EEB27E62ED6E8081DEE0A5 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:104>
|
|
float L_0 = __this->___m_InputActionsPerSecond;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68784
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_inputActionsPerSecond_mF367AFA55FF576533999F2DFB60514D7247228FF (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:105>
|
|
float L_0 = ___0_value;
|
|
__this->___m_InputActionsPerSecond = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:105>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68785
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StandaloneInputModule_get_repeatDelay_mDB85393BD9AA45BF8C5B94F5E3A523F5480D1F6F (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:116>
|
|
float L_0 = __this->___m_RepeatDelay;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68786
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_repeatDelay_m236DB6414CFAE01609187B97E955D95A32F0CB40 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:117>
|
|
float L_0 = ___0_value;
|
|
__this->___m_RepeatDelay = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:117>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68787
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_horizontalAxis_mDB47CA6F06F26837BBC4853877F69817590161F0 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:125>
|
|
String_t* L_0 = __this->___m_HorizontalAxis;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68788
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_horizontalAxis_mF71F2B0B425BD0455AF54F39EEEE43DD80DE27EC (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:126>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_HorizontalAxis = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_HorizontalAxis), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:126>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68789
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_verticalAxis_m5F00ECDA3B18F48BCBD6F9E7B4AD67A1F56CFAC2 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:134>
|
|
String_t* L_0 = __this->___m_VerticalAxis;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68790
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_verticalAxis_mB0FE6DC9517F0ABF0107F72FC04A322FD91C2AC0 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:135>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_VerticalAxis = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_VerticalAxis), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:135>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68791
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_submitButton_mAF097B352341EB53A42F71052F3469F205243D40 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:143>
|
|
String_t* L_0 = __this->___m_SubmitButton;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68792
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_submitButton_m571CB829C6D76AD062BA105D0903F08CEA0BCCC7 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:144>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_SubmitButton = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SubmitButton), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:144>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68793
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StandaloneInputModule_get_cancelButton_mE6F80897FDAA6D931803BF6C3A9E4A45877E5585 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:152>
|
|
String_t* L_0 = __this->___m_CancelButton;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68794
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_set_cancelButton_m63A06532F16A21785B3BD5AD3B79509B4441B7EF (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:153>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_CancelButton = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CancelButton), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:153>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68795
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m423AA5752E528E3B32F105EE2B341FCF5E9F8285 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:161>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68796
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_UpdateModule_m8B42D289F6AB3EBE6071FB5B904A7449118EAA6B (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:167>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m423AA5752E528E3B32F105EE2B341FCF5E9F8285(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:169>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = __this->___m_InputPointerEvent;
|
|
if (!L_3)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_4);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
|
|
L_5 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_5, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:171>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = __this->___m_InputPointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_10);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_11;
|
|
L_11 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_10, NULL);
|
|
V_0 = L_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12;
|
|
L_12 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_0), NULL);
|
|
StandaloneInputModule_ReleaseMouse_mC5C3083C356ACD5CD420A58662D99A6CACC5FAF5(__this, L_9, L_12, NULL);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:174>
|
|
__this->___m_InputPointerEvent = (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)(PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:176>
|
|
return;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:179>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = __this->___m_MousePosition;
|
|
__this->___m_LastMousePosition = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:180>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_14;
|
|
L_14 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_14);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_14);
|
|
__this->___m_MousePosition = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:181>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68797
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ReleaseMouse_mC5C3083C356ACD5CD420A58662D99A6CACC5FAF5 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_currentOverGo, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:185>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_pointerEvent;
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_0, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_3;
|
|
L_3 = ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline(NULL);
|
|
bool L_4;
|
|
L_4 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6(L_1, L_2, L_3, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:187>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = ___1_currentOverGo;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6;
|
|
L_6 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_5, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:190>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___0_pointerEvent;
|
|
NullCheck(L_7);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
|
|
L_8 = PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline(L_7, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_8, L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = ___0_pointerEvent;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline(L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:192>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_pointerEvent;
|
|
NullCheck(L_13);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline(L_13, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_16;
|
|
L_16 = ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5_inline(NULL);
|
|
bool L_17;
|
|
L_17 = ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6(L_14, L_15, L_16, ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:194>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_18 = ___0_pointerEvent;
|
|
NullCheck(L_18);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_19;
|
|
L_19 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_18, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_19, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = ___0_pointerEvent;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:196>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_23 = ___1_currentOverGo;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_25;
|
|
L_25 = ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_26;
|
|
L_26 = ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57(L_23, L_24, L_25, ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:199>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = ___0_pointerEvent;
|
|
NullCheck(L_27);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_27, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:200>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = ___0_pointerEvent;
|
|
NullCheck(L_28);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_28, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:201>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_29 = ___0_pointerEvent;
|
|
NullCheck(L_29);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_29, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:202>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___0_pointerEvent;
|
|
NullCheck(L_30);
|
|
PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline(L_30, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:204>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_31 = ___0_pointerEvent;
|
|
NullCheck(L_31);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
|
|
L_32 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_31, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_33;
|
|
L_33 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_32, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_33)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = ___0_pointerEvent;
|
|
NullCheck(L_34);
|
|
bool L_35;
|
|
L_35 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_34, NULL);
|
|
if (!L_35)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:205>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_36 = ___0_pointerEvent;
|
|
NullCheck(L_36);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_37;
|
|
L_37 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_36, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_38 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_39;
|
|
L_39 = ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline(NULL);
|
|
bool L_40;
|
|
L_40 = ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E(L_37, L_38, L_39, ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:207>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_41 = ___0_pointerEvent;
|
|
NullCheck(L_41);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_41, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:208>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_42 = ___0_pointerEvent;
|
|
NullCheck(L_42);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_42, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:214>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_43 = ___1_currentOverGo;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_44 = ___0_pointerEvent;
|
|
NullCheck(L_44);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_45;
|
|
L_45 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_44, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_46;
|
|
L_46 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_43, L_45, NULL);
|
|
if (!L_46)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:216>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_47 = ___0_pointerEvent;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_47, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:217>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_48 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_49 = ___1_currentOverGo;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_48, L_49, NULL);
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:220>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_50 = ___0_pointerEvent;
|
|
__this->___m_InputPointerEvent = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)L_50);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:221>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68798
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ShouldActivateModule_m6E9E205A37636246BFE65CAC33E1EF703A4D99AF (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:225>
|
|
bool L_0;
|
|
L_0 = BaseInputModule_ShouldActivateModule_m51B70F9097EF7FEB20B62D4D775F7FEA853185A1(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:226>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:228>
|
|
bool L_1 = __this->___m_ForceModuleActive;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:229>
|
|
bool L_2 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3;
|
|
L_3 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_4 = __this->___m_SubmitButton;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_3, L_4);
|
|
V_0 = (bool)((int32_t)((int32_t)L_2|(int32_t)L_5));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:230>
|
|
bool L_6 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_7;
|
|
L_7 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_8 = __this->___m_CancelButton;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_7, L_8);
|
|
V_0 = (bool)((int32_t)((int32_t)L_6|(int32_t)L_9));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:231>
|
|
bool L_10 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_11;
|
|
L_11 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_12 = __this->___m_HorizontalAxis;
|
|
NullCheck(L_11);
|
|
float L_13;
|
|
L_13 = VirtualFuncInvoker1< float, String_t* >::Invoke(32, L_11, L_12);
|
|
bool L_14;
|
|
L_14 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_13, (0.0f), NULL);
|
|
V_0 = (bool)((int32_t)((int32_t)L_10|((((int32_t)L_14) == ((int32_t)0))? 1 : 0)));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:232>
|
|
bool L_15 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_16;
|
|
L_16 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_17 = __this->___m_VerticalAxis;
|
|
NullCheck(L_16);
|
|
float L_18;
|
|
L_18 = VirtualFuncInvoker1< float, String_t* >::Invoke(32, L_16, L_17);
|
|
bool L_19;
|
|
L_19 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_18, (0.0f), NULL);
|
|
V_0 = (bool)((int32_t)((int32_t)L_15|((((int32_t)L_19) == ((int32_t)0))? 1 : 0)));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:233>
|
|
bool L_20 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = __this->___m_MousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = __this->___m_LastMousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23;
|
|
L_23 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_21, L_22, NULL);
|
|
V_1 = L_23;
|
|
float L_24;
|
|
L_24 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_1), NULL);
|
|
V_0 = (bool)((int32_t)((int32_t)L_20|((((float)L_24) > ((float)(0.0f)))? 1 : 0)));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:234>
|
|
bool L_25 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_26;
|
|
L_26 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_26);
|
|
bool L_27;
|
|
L_27 = VirtualFuncInvoker1< bool, int32_t >::Invoke(23, L_26, 0);
|
|
V_0 = (bool)((int32_t)((int32_t)L_25|(int32_t)L_27));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:236>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_28;
|
|
L_28 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker0< int32_t >::Invoke(30, L_28);
|
|
if ((((int32_t)L_29) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00bd;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:237>
|
|
V_0 = (bool)1;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:239>
|
|
bool L_30 = V_0;
|
|
return L_30;
|
|
}
|
|
}
|
|
// Method Definition Index: 68799
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ActivateModule_m1F28B8DB0FC20082694221BE5B1B275E9B7224BB (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:247>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m423AA5752E528E3B32F105EE2B341FCF5E9F8285(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:248>
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:250>
|
|
BaseInputModule_ActivateModule_m2C693E95727E13FDF06D54FA8762A040175AC3BA(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:251>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3;
|
|
L_3 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_3);
|
|
__this->___m_MousePosition = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:252>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_5;
|
|
L_5 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_5);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_5);
|
|
__this->___m_LastMousePosition = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:254>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_7;
|
|
L_7 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_7);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
|
|
L_8 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_7, NULL);
|
|
V_0 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:255>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_9, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:256>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_11;
|
|
L_11 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_11);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_12;
|
|
L_12 = EventSystem_get_firstSelectedGameObject_m15FB056EE7A99D8DD5891D40A6E3EF18719F0553_inline(L_11, NULL);
|
|
V_0 = L_12;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:258>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_13;
|
|
L_13 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = V_0;
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_15;
|
|
L_15 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19, __this);
|
|
NullCheck(L_13);
|
|
EventSystem_SetSelectedGameObject_m9675415B7B3FE13B35E2CCB220F0C8AF04ECA173(L_13, L_14, L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:259>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68800
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_DeactivateModule_m064C1EB615C0E0B0EDFC6F6F5079E55270DF1468 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:266>
|
|
BaseInputModule_DeactivateModule_mAE698307DADBE4DE8A26BD3DE5F3F7E3D75B385D(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:267>
|
|
PointerInputModule_ClearSelection_mC5852667E5B9CA97C2A4CAB3D7C907344511C1D2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:268>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68801
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_Process_mBD949CC45BBCAB5A0FAF5E24F3BB4C3B22FF3E81 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:272>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = StandaloneInputModule_ShouldIgnoreEventsOnNoFocus_m423AA5752E528E3B32F105EE2B341FCF5E9F8285(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:273>
|
|
return;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:275>
|
|
bool L_3;
|
|
L_3 = StandaloneInputModule_SendUpdateEventToSelectedObject_mE1C4AEB5B19378C2BF97DD3EAF4AA9C0EC5E7520(__this, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:281>
|
|
bool L_4;
|
|
L_4 = StandaloneInputModule_ProcessTouchEvents_m042FC6B13874B1EE6699BBB51F02FE3A435A25F0(__this, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_5;
|
|
L_5 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = VirtualFuncInvoker0< bool >::Invoke(22, L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:282>
|
|
StandaloneInputModule_ProcessMouseEvent_mCE1BA96E47D9A4448614CB9DAF5A406754F655DD(__this, NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:284>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_7;
|
|
L_7 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline(L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:286>
|
|
bool L_9 = V_0;
|
|
if (L_9)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:287>
|
|
bool L_10 = V_0;
|
|
bool L_11;
|
|
L_11 = StandaloneInputModule_SendMoveEventToSelectedObject_mC71D1E623B1DB82DC4E035277AC5FFA7CD64E981(__this, NULL);
|
|
V_0 = (bool)((int32_t)((int32_t)L_10|(int32_t)L_11));
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:289>
|
|
bool L_12 = V_0;
|
|
if (L_12)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:290>
|
|
bool L_13;
|
|
L_13 = StandaloneInputModule_SendSubmitEventToSelectedObject_m7121ACC09ABA46FF5CDDEAE7B26507BE06A2953F(__this, NULL);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:292>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68802
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ProcessTouchEvents_m042FC6B13874B1EE6699BBB51F02FE3A435A25F0 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:296>
|
|
V_0 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:298>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0;
|
|
L_0 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_2;
|
|
L_2 = VirtualFuncInvoker1< Touch_t03E51455ED508492B3F278903A0114FA0E87B417, int32_t >::Invoke(31, L_0, L_1);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:300>
|
|
int32_t L_3;
|
|
L_3 = Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745((&V_1), NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:305>
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_4 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5;
|
|
L_5 = PointerInputModule_GetTouchPointerEventData_m55EBA8BD04214AAD8E98B9109D44610496A5B2E1(__this, L_4, (&V_3), (&V_2), NULL);
|
|
V_4 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:307>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = V_4;
|
|
bool L_7 = V_3;
|
|
bool L_8 = V_2;
|
|
StandaloneInputModule_ProcessTouchPress_mD72A0807626DA04E47313F9553249DD4A32625E3(__this, L_6, L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:309>
|
|
bool L_9 = V_2;
|
|
if (L_9)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:311>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = V_4;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(31, __this, L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:312>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = V_4;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_11);
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:315>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_4;
|
|
PointerInputModule_RemovePointerData_m012713A1B4511855549793D6BA2B7998134B1BE9(__this, L_12, NULL);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:296>
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:296>
|
|
int32_t L_14 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_15;
|
|
L_15 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(30, L_15);
|
|
if ((((int32_t)L_14) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:317>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_17;
|
|
L_17 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(30, L_17);
|
|
return (bool)((((int32_t)L_18) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68803
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessTouchPress_mD72A0807626DA04E47313F9553249DD4A32625E3 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, bool ___1_pressed, bool ___2_released, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_3 = NULL;
|
|
float V_4 = 0.0f;
|
|
int32_t V_5 = 0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_6 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:331>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_pointerEvent;
|
|
NullCheck(L_0);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1;
|
|
L_1 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_1), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:334>
|
|
bool L_3 = ___1_pressed;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0145;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:336>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_pointerEvent;
|
|
NullCheck(L_4);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_4, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:337>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___0_pointerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_5);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_5, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:338>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___0_pointerEvent;
|
|
NullCheck(L_7);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_7, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:339>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_pointerEvent;
|
|
NullCheck(L_8);
|
|
PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline(L_8, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:340>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_pointerEvent;
|
|
NullCheck(L_10);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_10, NULL);
|
|
NullCheck(L_9);
|
|
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_9, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:341>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_pointerEvent;
|
|
NullCheck(L_13);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_14;
|
|
L_14 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_13, NULL);
|
|
NullCheck(L_12);
|
|
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:343>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___0_pointerEvent;
|
|
PointerInputModule_DeselectIfSelectionChanged_m8F111DD2317E33C4F0498F651BC52BD5C984A95B(__this, L_15, L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:345>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___0_pointerEvent;
|
|
NullCheck(L_17);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18;
|
|
L_18 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_17, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_19 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_18, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:348>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_22 = V_0;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_21, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:349>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_24 = V_0;
|
|
NullCheck(L_23);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_23, L_24, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:352>
|
|
float L_25;
|
|
L_25 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___0_pointerEvent;
|
|
NullCheck(L_26);
|
|
float L_27;
|
|
L_27 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_26, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:353>
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_25, L_27))) >= ((float)(0.300000012f)))))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:355>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_28 = ___0_pointerEvent;
|
|
NullCheck(L_28);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_28, 0, NULL);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:361>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_30 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_31;
|
|
L_31 = ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
|
|
L_32 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C(L_29, L_30, L_31, ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
V_2 = L_32;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:363>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34;
|
|
L_34 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_33, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_3 = L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:366>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_36;
|
|
L_36 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_35, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:367>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_37 = V_3;
|
|
V_2 = L_37;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:371>
|
|
float L_38;
|
|
L_38 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
V_4 = L_38;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:373>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_39 = V_2;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_40 = ___0_pointerEvent;
|
|
NullCheck(L_40);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_41;
|
|
L_41 = PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline(L_40, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_42;
|
|
L_42 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_39, L_41, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:375>
|
|
float L_43 = V_4;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_44 = ___0_pointerEvent;
|
|
NullCheck(L_44);
|
|
float L_45;
|
|
L_45 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_44, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:376>
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_43, L_45))) < ((float)(0.300000012f)))))
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:377>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_47 = L_46;
|
|
NullCheck(L_47);
|
|
int32_t L_48;
|
|
L_48 = PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline(L_47, NULL);
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_48, 1));
|
|
int32_t L_49 = V_5;
|
|
NullCheck(L_47);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_47, L_49, NULL);
|
|
goto IL_00eb;
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:379>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_50 = ___0_pointerEvent;
|
|
NullCheck(L_50);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_50, 1, NULL);
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:381>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___0_pointerEvent;
|
|
float L_52 = V_4;
|
|
NullCheck(L_51);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_51, L_52, NULL);
|
|
goto IL_00fc;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:385>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = ___0_pointerEvent;
|
|
NullCheck(L_53);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_53, 1, NULL);
|
|
}
|
|
|
|
IL_00fc:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:388>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_54 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_55 = V_2;
|
|
NullCheck(L_54);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_54, L_55, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:389>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_56 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_57 = V_0;
|
|
NullCheck(L_56);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_56, L_57, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:390>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_58 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_59 = V_3;
|
|
NullCheck(L_58);
|
|
PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline(L_58, L_59, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:392>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_60 = ___0_pointerEvent;
|
|
float L_61 = V_4;
|
|
NullCheck(L_60);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_60, L_61, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:395>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_62 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_63 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_64;
|
|
L_64 = ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA(L_63, ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
NullCheck(L_62);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_62, L_64, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:397>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_65 = ___0_pointerEvent;
|
|
NullCheck(L_65);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_66;
|
|
L_66 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_65, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_67;
|
|
L_67 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_66, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_67)
|
|
{
|
|
goto IL_0145;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:398>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_68 = ___0_pointerEvent;
|
|
NullCheck(L_68);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_69;
|
|
L_69 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_68, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_70 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_71;
|
|
L_71 = ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD_inline(NULL);
|
|
bool L_72;
|
|
L_72 = ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C(L_69, L_70, L_71, ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0145:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:402>
|
|
bool L_73 = ___2_released;
|
|
if (!L_73)
|
|
{
|
|
goto IL_021c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:405>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_74 = ___0_pointerEvent;
|
|
NullCheck(L_74);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_75;
|
|
L_75 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_74, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_76 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_77;
|
|
L_77 = ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline(NULL);
|
|
bool L_78;
|
|
L_78 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6(L_75, L_76, L_77, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:410>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_79 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_80;
|
|
L_80 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_79, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_6 = L_80;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:413>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_81 = ___0_pointerEvent;
|
|
NullCheck(L_81);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_82;
|
|
L_82 = PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline(L_81, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_83 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_84;
|
|
L_84 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_82, L_83, NULL);
|
|
if (!L_84)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_85 = ___0_pointerEvent;
|
|
NullCheck(L_85);
|
|
bool L_86;
|
|
L_86 = PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline(L_85, NULL);
|
|
if (!L_86)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:415>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_87 = ___0_pointerEvent;
|
|
NullCheck(L_87);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_88;
|
|
L_88 = PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline(L_87, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_89 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_90;
|
|
L_90 = ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5_inline(NULL);
|
|
bool L_91;
|
|
L_91 = ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6(L_88, L_89, L_90, ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:418>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_92 = ___0_pointerEvent;
|
|
NullCheck(L_92);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_93;
|
|
L_93 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_92, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_94;
|
|
L_94 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_93, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_94)
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_95 = ___0_pointerEvent;
|
|
NullCheck(L_95);
|
|
bool L_96;
|
|
L_96 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:420>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_97 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_98 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_99;
|
|
L_99 = ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_100;
|
|
L_100 = ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57(L_97, L_98, L_99, ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01b1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:423>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_101 = ___0_pointerEvent;
|
|
NullCheck(L_101);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_101, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:424>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_102 = ___0_pointerEvent;
|
|
NullCheck(L_102);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_102, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:425>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_103 = ___0_pointerEvent;
|
|
NullCheck(L_103);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_103, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:426>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_104 = ___0_pointerEvent;
|
|
NullCheck(L_104);
|
|
PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline(L_104, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:428>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_105 = ___0_pointerEvent;
|
|
NullCheck(L_105);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_106;
|
|
L_106 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_105, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_107;
|
|
L_107 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_106, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_107)
|
|
{
|
|
goto IL_01f5;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_108 = ___0_pointerEvent;
|
|
NullCheck(L_108);
|
|
bool L_109;
|
|
L_109 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_108, NULL);
|
|
if (!L_109)
|
|
{
|
|
goto IL_01f5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:429>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_110 = ___0_pointerEvent;
|
|
NullCheck(L_110);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_111;
|
|
L_111 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_110, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_112 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_113;
|
|
L_113 = ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline(NULL);
|
|
bool L_114;
|
|
L_114 = ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E(L_111, L_112, L_113, ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01f5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:431>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_115 = ___0_pointerEvent;
|
|
NullCheck(L_115);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_115, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:432>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_116 = ___0_pointerEvent;
|
|
NullCheck(L_116);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_116, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:435>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_117 = ___0_pointerEvent;
|
|
NullCheck(L_117);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_118;
|
|
L_118 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_117, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_119 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_120;
|
|
L_120 = ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_121;
|
|
L_121 = ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92(L_118, L_119, L_120, ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:436>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_122 = ___0_pointerEvent;
|
|
NullCheck(L_122);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_122, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
}
|
|
|
|
IL_021c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:439>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_123 = ___0_pointerEvent;
|
|
__this->___m_InputPointerEvent = L_123;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)L_123);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:440>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68804
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendSubmitEventToSelectedObject_m7121ACC09ABA46FF5CDDEAE7B26507BE06A2953F (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m6BCE3E1FAE7620DC9F22722FA5CCE5AB35BAA5B0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_mA153EBDD6059AC5FF4C3ADD0A0628D816CD112CC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:448>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:449>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:451>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_3;
|
|
L_3 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19, __this);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:452>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_4;
|
|
L_4 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_5 = __this->___m_SubmitButton;
|
|
NullCheck(L_4);
|
|
bool L_6;
|
|
L_6 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_4, L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:453>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_7;
|
|
L_7 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_7);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
|
|
L_8 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_7, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_9 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_10;
|
|
L_10 = ExecuteEvents_get_submitHandler_mDCAAA40F0F6AEA385B375C1839B4DC37E5FC4A7A_inline(NULL);
|
|
bool L_11;
|
|
L_11 = ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_mA153EBDD6059AC5FF4C3ADD0A0628D816CD112CC(L_8, L_9, L_10, ExecuteEvents_Execute_TisISubmitHandler_t284A0ACB300A060611C40F4E200B378CED930B75_mA153EBDD6059AC5FF4C3ADD0A0628D816CD112CC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:455>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_12;
|
|
L_12 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_13 = __this->___m_CancelButton;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_12, L_13);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:456>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_15;
|
|
L_15 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_15);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_16;
|
|
L_16 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_15, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_18;
|
|
L_18 = ExecuteEvents_get_cancelHandler_mBCDFD10C95FC2BBC5DC5A512FEA1BBEECC2DAE12_inline(NULL);
|
|
bool L_19;
|
|
L_19 = ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m6BCE3E1FAE7620DC9F22722FA5CCE5AB35BAA5B0(L_16, L_17, L_18, ExecuteEvents_Execute_TisICancelHandler_t38E5C3314DB0B186ED23AC3FD6A774EDEC323244_m6BCE3E1FAE7620DC9F22722FA5CCE5AB35BAA5B0_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:457>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_20 = V_0;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = VirtualFuncInvoker0< bool >::Invoke(6, L_20);
|
|
return L_21;
|
|
}
|
|
}
|
|
// Method Definition Index: 68805
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 StandaloneInputModule_GetRawMoveVector_mFF583B1720780B7D8D2DD3248F947ED8D855610B (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:462>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:463>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_1;
|
|
L_1 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_2 = __this->___m_HorizontalAxis;
|
|
NullCheck(L_1);
|
|
float L_3;
|
|
L_3 = VirtualFuncInvoker1< float, String_t* >::Invoke(32, L_1, L_2);
|
|
(&V_0)->___x = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:464>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_4;
|
|
L_4 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_5 = __this->___m_VerticalAxis;
|
|
NullCheck(L_4);
|
|
float L_6;
|
|
L_6 = VirtualFuncInvoker1< float, String_t* >::Invoke(32, L_4, L_5);
|
|
(&V_0)->___y = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:466>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_7;
|
|
L_7 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_8 = __this->___m_HorizontalAxis;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_7, L_8);
|
|
if (!L_9)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:468>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
|
|
float L_11 = L_10.___x;
|
|
if ((!(((float)L_11) < ((float)(0.0f)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:469>
|
|
(&V_0)->___x = (-1.0f);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:470>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_0;
|
|
float L_13 = L_12.___x;
|
|
if ((!(((float)L_13) > ((float)(0.0f)))))
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:471>
|
|
(&V_0)->___x = (1.0f);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:473>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_14;
|
|
L_14 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
String_t* L_15 = __this->___m_VerticalAxis;
|
|
NullCheck(L_14);
|
|
bool L_16;
|
|
L_16 = VirtualFuncInvoker1< bool, String_t* >::Invoke(33, L_14, L_15);
|
|
if (!L_16)
|
|
{
|
|
goto IL_00c0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:475>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17 = V_0;
|
|
float L_18 = L_17.___y;
|
|
if ((!(((float)L_18) < ((float)(0.0f)))))
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:476>
|
|
(&V_0)->___y = (-1.0f);
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:477>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_0;
|
|
float L_20 = L_19.___y;
|
|
if ((!(((float)L_20) > ((float)(0.0f)))))
|
|
{
|
|
goto IL_00c0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:478>
|
|
(&V_0)->___y = (1.0f);
|
|
}
|
|
|
|
IL_00c0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:480>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_0;
|
|
return L_21;
|
|
}
|
|
}
|
|
// Method Definition Index: 68806
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendMoveEventToSelectedObject_mC71D1E623B1DB82DC4E035277AC5FFA7CD64E981 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m77205DFCC4110B95CC241F556BE89F612EFFD2CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:489>
|
|
float L_0;
|
|
L_0 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:491>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = StandaloneInputModule_GetRawMoveVector_mFF583B1720780B7D8D2DD3248F947ED8D855610B(__this, NULL);
|
|
V_1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:492>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = V_1;
|
|
float L_3 = L_2.___x;
|
|
bool L_4;
|
|
L_4 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_3, (0.0f), NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_1;
|
|
float L_6 = L_5.___y;
|
|
bool L_7;
|
|
L_7 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_6, (0.0f), NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:494>
|
|
__this->___m_ConsecutiveMoveCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:495>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:498>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = __this->___m_LastMoveVector;
|
|
float L_10;
|
|
L_10 = Vector2_Dot_mC1E68FDB4FB462A279A303C043B8FD0AC11C8458_inline(L_8, L_9, NULL);
|
|
V_2 = (bool)((((float)L_10) > ((float)(0.0f)))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:501>
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = __this->___m_ConsecutiveMoveCount;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:503>
|
|
float L_13 = V_0;
|
|
float L_14 = __this->___m_PrevActionTime;
|
|
float L_15 = __this->___m_RepeatDelay;
|
|
if ((!(((float)L_13) <= ((float)((float)il2cpp_codegen_add(L_14, L_15))))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:504>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:509>
|
|
float L_16 = V_0;
|
|
float L_17 = __this->___m_PrevActionTime;
|
|
float L_18 = __this->___m_InputActionsPerSecond;
|
|
if ((!(((float)L_16) <= ((float)((float)il2cpp_codegen_add(L_17, ((float)((1.0f)/L_18))))))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:510>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:513>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_1;
|
|
float L_20 = L_19.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_1;
|
|
float L_22 = L_21.___y;
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_23;
|
|
L_23 = VirtualFuncInvoker3< AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938*, float, float, float >::Invoke(18, __this, L_20, L_22, (0.600000024f));
|
|
V_3 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:515>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_24 = V_3;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = AxisEventData_get_moveDir_mC8E219BB19708AC67C202C860DF2E6D08C29B8B9_inline(L_24, NULL);
|
|
if ((((int32_t)L_25) == ((int32_t)4)))
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:517>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_26;
|
|
L_26 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_26);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_27;
|
|
L_27 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_26, NULL);
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_28 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_29;
|
|
L_29 = ExecuteEvents_get_moveHandler_mF717824AB0018BBED3C2DF3C67486E3B2B3836D2_inline(NULL);
|
|
bool L_30;
|
|
L_30 = ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m77205DFCC4110B95CC241F556BE89F612EFFD2CA(L_27, L_28, L_29, ExecuteEvents_Execute_TisIMoveHandler_t6C9BB42118BAEEDF258B967391CCCD6A5C7976AB_m77205DFCC4110B95CC241F556BE89F612EFFD2CA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:518>
|
|
bool L_31 = V_2;
|
|
if (L_31)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:519>
|
|
__this->___m_ConsecutiveMoveCount = 0;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:520>
|
|
int32_t L_32 = __this->___m_ConsecutiveMoveCount;
|
|
__this->___m_ConsecutiveMoveCount = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:521>
|
|
float L_33 = V_0;
|
|
__this->___m_PrevActionTime = L_33;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:522>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = V_1;
|
|
__this->___m_LastMoveVector = L_34;
|
|
goto IL_00eb;
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:526>
|
|
__this->___m_ConsecutiveMoveCount = 0;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:529>
|
|
AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* L_35 = V_3;
|
|
NullCheck(L_35);
|
|
bool L_36;
|
|
L_36 = VirtualFuncInvoker0< bool >::Invoke(6, L_35);
|
|
return L_36;
|
|
}
|
|
}
|
|
// Method Definition Index: 68807
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_mCE1BA96E47D9A4448614CB9DAF5A406754F655DD (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:534>
|
|
StandaloneInputModule_ProcessMouseEvent_m8A8214EB9286BA31C18F515BCC3349DF740B2BBA(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:535>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68808
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_ForceAutoSelect_m8A0FD9795D64CAF49AED184D30FA5C7AB6439C75 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:540>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68809
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMouseEvent_m8A8214EB9286BA31C18F515BCC3349DF740B2BBA (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m764A9EE16005FFF9BB7A28EF762E6EB9CFDDA7B9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m3BFE4214B6075DAE2F291E508DC912DC72262D2E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* V_0 = NULL;
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* V_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:548>
|
|
int32_t L_0 = ___0_id;
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_1;
|
|
L_1 = VirtualFuncInvoker1< MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09*, int32_t >::Invoke(30, __this, L_0);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:549>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_3;
|
|
L_3 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_2, 0, NULL);
|
|
NullCheck(L_3);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_4;
|
|
L_4 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_3, NULL);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:551>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = L_5->___buttonData;
|
|
NullCheck(L_6);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_7;
|
|
L_7 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_6, NULL);
|
|
V_2 = L_7;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
|
|
L_8 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_2), NULL);
|
|
__this->___m_CurrentFocusedGameObject = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentFocusedGameObject), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:554>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_9 = V_1;
|
|
StandaloneInputModule_ProcessMousePress_m24665E707FEF5C80719847D62A8A8AEABE27C6C5(__this, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:555>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = L_10->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(31, __this, L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:556>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = L_12->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_13);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:559>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_15;
|
|
L_15 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_14, 1, NULL);
|
|
NullCheck(L_15);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_16;
|
|
L_16 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_15, NULL);
|
|
StandaloneInputModule_ProcessMousePress_m24665E707FEF5C80719847D62A8A8AEABE27C6C5(__this, L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:560>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_18;
|
|
L_18 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_17, 1, NULL);
|
|
NullCheck(L_18);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_19;
|
|
L_19 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_18, NULL);
|
|
NullCheck(L_19);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_20 = L_19->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_20);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:561>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_22;
|
|
L_22 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_21, 2, NULL);
|
|
NullCheck(L_22);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_23;
|
|
L_23 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_22, NULL);
|
|
StandaloneInputModule_ProcessMousePress_m24665E707FEF5C80719847D62A8A8AEABE27C6C5(__this, L_23, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:562>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_25;
|
|
L_25 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_24, 2, NULL);
|
|
NullCheck(L_25);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_26;
|
|
L_26 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_25, NULL);
|
|
NullCheck(L_26);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = L_26->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_27);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:564>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_28 = V_1;
|
|
NullCheck(L_28);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_29 = L_28->___buttonData;
|
|
NullCheck(L_29);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_30;
|
|
L_30 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_29, NULL);
|
|
V_3 = L_30;
|
|
float L_31;
|
|
L_31 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_3), NULL);
|
|
bool L_32;
|
|
L_32 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_31, (0.0f), NULL);
|
|
if (L_32)
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:566>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_34 = L_33->___buttonData;
|
|
NullCheck(L_34);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_35;
|
|
L_35 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_34, NULL);
|
|
V_2 = L_35;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
|
|
L_36 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_37;
|
|
L_37 = ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m3BFE4214B6075DAE2F291E508DC912DC72262D2E(L_36, ExecuteEvents_GetEventHandler_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m3BFE4214B6075DAE2F291E508DC912DC72262D2E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:567>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_38 = V_1;
|
|
NullCheck(L_38);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = L_38->___buttonData;
|
|
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_40;
|
|
L_40 = ExecuteEvents_get_scrollHandler_m51E902070611D3F81AD5F1F5762AE2C48E84AFE2_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_41;
|
|
L_41 = ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m764A9EE16005FFF9BB7A28EF762E6EB9CFDDA7B9(L_37, L_39, L_40, ExecuteEvents_ExecuteHierarchy_TisIScrollHandler_t762CB73017D561E11CF6759ED9FD8C9F24B3D13F_m764A9EE16005FFF9BB7A28EF762E6EB9CFDDA7B9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:569>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68810
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StandaloneInputModule_SendUpdateEventToSelectedObject_mE1C4AEB5B19378C2BF97DD3EAF4AA9C0EC5E7520 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m8AFB13536731ABE80F6AE964DA907EE6B27F055E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:573>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:574>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:576>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_3;
|
|
L_3 = VirtualFuncInvoker0< BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* >::Invoke(19, __this);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:577>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_4;
|
|
L_4 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_4);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
|
|
L_5 = EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline(L_4, NULL);
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_6 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_7;
|
|
L_7 = ExecuteEvents_get_updateSelectedHandler_m8AF7543437082AD4F5690AAA77F2623AE28C3D09_inline(NULL);
|
|
bool L_8;
|
|
L_8 = ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m8AFB13536731ABE80F6AE964DA907EE6B27F055E(L_5, L_6, L_7, ExecuteEvents_Execute_TisIUpdateSelectedHandler_tBBACEC3A6478F7DA4B682AFDA8CF59C6C3FCC9CC_m8AFB13536731ABE80F6AE964DA907EE6B27F055E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:578>
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker0< bool >::Invoke(6, L_9);
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 68811
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StandaloneInputModule_ProcessMousePress_m24665E707FEF5C80719847D62A8A8AEABE27C6C5 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_4 = NULL;
|
|
float V_5 = 0.0f;
|
|
int32_t V_6 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:586>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = L_0->___buttonData;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:587>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_3;
|
|
L_3 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_2), NULL);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:590>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5 = ___0_data;
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D(L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_013e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:592>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_7, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:593>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_8);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_8, L_9, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:594>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_10, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:595>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline(L_11, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:596>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_13, NULL);
|
|
NullCheck(L_12);
|
|
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:597>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_15 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_17;
|
|
L_17 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_16, NULL);
|
|
NullCheck(L_15);
|
|
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_15, L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:599>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = V_0;
|
|
PointerInputModule_DeselectIfSelectionChanged_m8F111DD2317E33C4F0498F651BC52BD5C984A95B(__this, L_18, L_19, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:601>
|
|
float L_20;
|
|
L_20 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
float L_22;
|
|
L_22 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_21, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:602>
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_20, L_22))) >= ((float)(0.300000012f)))))
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:604>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_23, 0, NULL);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:610>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_24 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_25 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_26;
|
|
L_26 = ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_27;
|
|
L_27 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C(L_24, L_25, L_26, ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
V_3 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:611>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28 = V_1;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29;
|
|
L_29 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_28, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_4 = L_29;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:614>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_30 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_31;
|
|
L_31 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_30, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:615>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32 = V_4;
|
|
V_3 = L_32;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:619>
|
|
float L_33;
|
|
L_33 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
V_5 = L_33;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:621>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34 = V_3;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = V_0;
|
|
NullCheck(L_35);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
|
|
L_36 = PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline(L_35, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00e6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:623>
|
|
float L_38 = V_5;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = V_0;
|
|
NullCheck(L_39);
|
|
float L_40;
|
|
L_40 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:624>
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_38, L_40))) < ((float)(0.300000012f)))))
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:625>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_41 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_42 = L_41;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline(L_42, NULL);
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_43, 1));
|
|
int32_t L_44 = V_6;
|
|
NullCheck(L_42);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_42, L_44, NULL);
|
|
goto IL_00dc;
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:627>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_45 = V_0;
|
|
NullCheck(L_45);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_45, 1, NULL);
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:629>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = V_0;
|
|
float L_47 = V_5;
|
|
NullCheck(L_46);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_46, L_47, NULL);
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:633>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_48 = V_0;
|
|
NullCheck(L_48);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_48, 1, NULL);
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:636>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_50 = V_3;
|
|
NullCheck(L_49);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_49, L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:637>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_52 = V_1;
|
|
NullCheck(L_51);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_51, L_52, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:638>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_54 = V_4;
|
|
NullCheck(L_53);
|
|
PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline(L_53, L_54, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:640>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_55 = V_0;
|
|
float L_56 = V_5;
|
|
NullCheck(L_55);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_55, L_56, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:643>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_57 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_58 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_59;
|
|
L_59 = ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA(L_58, ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
NullCheck(L_57);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_57, L_59, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:645>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_60 = V_0;
|
|
NullCheck(L_60);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_61;
|
|
L_61 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_60, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_62;
|
|
L_62 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_61, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_62)
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:646>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_63 = V_0;
|
|
NullCheck(L_63);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_64;
|
|
L_64 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_63, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_65 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_66;
|
|
L_66 = ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD_inline(NULL);
|
|
bool L_67;
|
|
L_67 = ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C(L_64, L_65, L_66, ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:648>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_68 = V_0;
|
|
__this->___m_InputPointerEvent = L_68;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)L_68);
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:652>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_69 = ___0_data;
|
|
NullCheck(L_69);
|
|
bool L_70;
|
|
L_70 = MouseButtonEventData_ReleasedThisFrame_m5AD4F06D1CA6E0ACD6E84EEFAD4FB112098AFD51(L_69, NULL);
|
|
if (!L_70)
|
|
{
|
|
goto IL_014e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:654>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_71 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_72 = V_1;
|
|
StandaloneInputModule_ReleaseMouse_mC5C3083C356ACD5CD420A58662D99A6CACC5FAF5(__this, L_71, L_72, NULL);
|
|
}
|
|
|
|
IL_014e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:656>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68812
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* StandaloneInputModule_GetCurrentFocusedGameObject_m6E67A53E66DE554CCD13A943638815631A3E8E87 (StandaloneInputModule_tD8B581E4A0A2A25B99EB002FF669C4EEED350530* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/StandaloneInputModule.cs:660>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CurrentFocusedGameObject;
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68813
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule__ctor_mCBE23B5A3A8CE1CD042A061D7E070B04A45E3075 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:11>
|
|
PointerInputModule__ctor_mBF074492478BFC24F87EF2C941D6C11A8ACDAF11(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:12>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68814
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_get_allowActivationOnStandalone_m2F9A65E10F7BE98D250CC3D6C9CABA3BCCE95995 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:26>
|
|
bool L_0 = __this->___m_ForceModuleActive;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68815
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_set_allowActivationOnStandalone_m5AB9798D9B6071B37FC67E0D1A81A58A0A59D7AD (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:27>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ForceModuleActive = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:27>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68816
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m7200F7B6C80EDD69987615B8356B6B2497461FCA (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:32>
|
|
bool L_0 = __this->___m_ForceModuleActive;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68817
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_set_forceModuleActive_m32676A04010774CA55055EE93A05ED6C6388D2C2 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:33>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ForceModuleActive = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:33>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68818
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_UpdateModule_mE6F4F74D770ACFEF3C46611C71CBE705342EA608 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:38>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0;
|
|
L_0 = BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:40>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = __this->___m_InputPointerEvent;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:41>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = __this->___m_InputPointerEvent;
|
|
NullCheck(L_8);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9;
|
|
L_9 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_8, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = __this->___m_InputPointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_11;
|
|
L_11 = ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline(NULL);
|
|
bool L_12;
|
|
L_12 = ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E(L_9, L_10, L_11, ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:43>
|
|
__this->___m_InputPointerEvent = (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)(PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)NULL);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:46>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = __this->___m_MousePosition;
|
|
__this->___m_LastMousePosition = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:47>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_14;
|
|
L_14 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_14);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, L_14);
|
|
__this->___m_MousePosition = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:48>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68819
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_IsModuleSupported_m795B5298EC90DC063A96147CF3B3287EC27C9799 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:52>
|
|
bool L_0;
|
|
L_0 = TouchInputModule_get_forceModuleActive_m7200F7B6C80EDD69987615B8356B6B2497461FCA_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_1;
|
|
L_1 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = VirtualFuncInvoker0< bool >::Invoke(29, L_1);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68820
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_ShouldActivateModule_m4B17231DE579430D27088D6592378FB7547ADBDC (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:57>
|
|
bool L_0;
|
|
L_0 = BaseInputModule_ShouldActivateModule_m51B70F9097EF7FEB20B62D4D775F7FEA853185A1(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:58>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:60>
|
|
bool L_1 = __this->___m_ForceModuleActive;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:61>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:63>
|
|
bool L_2;
|
|
L_2 = TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:65>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_3;
|
|
L_3 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = VirtualFuncInvoker1< bool, int32_t >::Invoke(23, L_3, 0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:67>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = __this->___m_MousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = __this->___m_LastMousePosition;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_5, L_6, NULL);
|
|
V_0 = L_7;
|
|
float L_8;
|
|
L_8 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:68>
|
|
return (bool)((int32_t)((int32_t)L_4|((((float)L_8) > ((float)(0.0f)))? 1 : 0)));
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:71>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_9;
|
|
L_9 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(30, L_9);
|
|
return (bool)((((int32_t)L_10) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68821
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:76>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0;
|
|
L_0 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker0< bool >::Invoke(29, L_0);
|
|
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 68822
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_Process_m3C0CB50AB7D9E92B519787F7742AE0976FB36841 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:81>
|
|
bool L_0;
|
|
L_0 = TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:82>
|
|
TouchInputModule_FakeTouches_m264BF2C70234CD04B0162FE4CED673B1A77A84F9(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:84>
|
|
TouchInputModule_ProcessTouchEvents_mBB28D85996F6280141E39A462BC35EF01373E514(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:85>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68823
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_FakeTouches_m264BF2C70234CD04B0162FE4CED673B1A77A84F9 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:92>
|
|
MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09* L_0;
|
|
L_0 = VirtualFuncInvoker1< MouseState_tCCE70861DE1EEECF949AFE8E2A922541D4E08A09*, int32_t >::Invoke(30, __this, 0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:94>
|
|
NullCheck(L_0);
|
|
ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* L_1;
|
|
L_1 = MouseState_GetButtonState_mD25E7D214B0499DBBE3B3E532CD7085C1A021E51(L_0, 0, NULL);
|
|
NullCheck(L_1);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_2;
|
|
L_2 = ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline(L_1, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:97>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:98>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = L_5->___buttonData;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_6);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:100>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = L_8->___buttonData;
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = MouseButtonEventData_PressedThisFrame_mEE5DC95537AAEB346C57DCA85917E0701A44388D(L_10, NULL);
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = MouseButtonEventData_ReleasedThisFrame_m5AD4F06D1CA6E0ACD6E84EEFAD4FB112098AFD51(L_12, NULL);
|
|
TouchInputModule_ProcessTouchPress_m1DC51E52E6B419F02626EB567A60411A0FCFA517(__this, L_9, L_11, L_13, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:103>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_14;
|
|
L_14 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = VirtualFuncInvoker1< bool, int32_t >::Invoke(25, L_14, 0);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:105>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = L_16->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(31, __this, L_17);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:106>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = L_18->___buttonData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_19);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:108>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68824
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchEvents_mBB28D85996F6280141E39A462BC35EF01373E514 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_4 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:115>
|
|
V_0 = 0;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:117>
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_0;
|
|
L_0 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_2;
|
|
L_2 = VirtualFuncInvoker1< Touch_t03E51455ED508492B3F278903A0114FA0E87B417, int32_t >::Invoke(31, L_0, L_1);
|
|
V_1 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:119>
|
|
int32_t L_3;
|
|
L_3 = Touch_get_type_mB505EF2DCF13160DFA0C6AAF406DCB4CBED20745((&V_1), NULL);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:124>
|
|
Touch_t03E51455ED508492B3F278903A0114FA0E87B417 L_4 = V_1;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5;
|
|
L_5 = PointerInputModule_GetTouchPointerEventData_m55EBA8BD04214AAD8E98B9109D44610496A5B2E1(__this, L_4, (&V_3), (&V_2), NULL);
|
|
V_4 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:126>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = V_4;
|
|
bool L_7 = V_3;
|
|
bool L_8 = V_2;
|
|
TouchInputModule_ProcessTouchPress_m1DC51E52E6B419F02626EB567A60411A0FCFA517(__this, L_6, L_7, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:128>
|
|
bool L_9 = V_2;
|
|
if (L_9)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:130>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = V_4;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(31, __this, L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:131>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_11 = V_4;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(32, __this, L_11);
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:134>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = V_4;
|
|
PointerInputModule_RemovePointerData_m012713A1B4511855549793D6BA2B7998134B1BE9(__this, L_12, NULL);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:115>
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:115>
|
|
int32_t L_14 = V_0;
|
|
BaseInput_t69C46B0AA3C24F1CA842A0D03CACACC4EC788622* L_15;
|
|
L_15 = BaseInputModule_get_input_mCB3F78528AA14A7AD7E957870DBB0152B4BF13FB(__this, NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(30, L_15);
|
|
if ((((int32_t)L_14) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:136>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68825
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_ProcessTouchPress_m1DC51E52E6B419F02626EB567A60411A0FCFA517 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_pointerEvent, bool ___1_pressed, bool ___2_released, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
|
|
float V_3 = 0.0f;
|
|
int32_t V_4 = 0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_5 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:140>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_pointerEvent;
|
|
NullCheck(L_0);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_1;
|
|
L_1 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline((&V_1), NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:143>
|
|
bool L_3 = ___1_pressed;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0125;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:145>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_pointerEvent;
|
|
NullCheck(L_4);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_4, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:146>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5 = ___0_pointerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NullCheck(L_5);
|
|
PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline(L_5, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:147>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___0_pointerEvent;
|
|
NullCheck(L_7);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_7, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:148>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_pointerEvent;
|
|
NullCheck(L_8);
|
|
PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline(L_8, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:149>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_9 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_10 = ___0_pointerEvent;
|
|
NullCheck(L_10);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_10, NULL);
|
|
NullCheck(L_9);
|
|
PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline(L_9, L_11, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:150>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_12 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_pointerEvent;
|
|
NullCheck(L_13);
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_14;
|
|
L_14 = PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline(L_13, NULL);
|
|
NullCheck(L_12);
|
|
PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline(L_12, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:152>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___0_pointerEvent;
|
|
PointerInputModule_DeselectIfSelectionChanged_m8F111DD2317E33C4F0498F651BC52BD5C984A95B(__this, L_15, L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:154>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___0_pointerEvent;
|
|
NullCheck(L_17);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_18;
|
|
L_18 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_17, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_19 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_18, L_19, NULL);
|
|
if (!L_20)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:157>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_21 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_22 = V_0;
|
|
BaseInputModule_HandlePointerExitAndEnter_m0815F06EAF8F937916E0656D66A69844CB211298(__this, L_21, L_22, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:158>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_23 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_24 = V_0;
|
|
NullCheck(L_23);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_23, L_24, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:164>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_25 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_26 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_27;
|
|
L_27 = ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_28;
|
|
L_28 = ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C(L_25, L_26, L_27, ExecuteEvents_ExecuteHierarchy_TisIPointerDownHandler_t42CC83619BB6295404D44090142F7726003CE573_mF031AC46543C02039764EDB1B0673DFA36B1F58C_RuntimeMethod_var);
|
|
V_2 = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:167>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_29 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_30;
|
|
L_30 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_29, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:168>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_32;
|
|
L_32 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_31, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_2 = L_32;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:172>
|
|
float L_33;
|
|
L_33 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
V_3 = L_33;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:174>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_34 = V_2;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_35 = ___0_pointerEvent;
|
|
NullCheck(L_35);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
|
|
L_36 = PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline(L_35, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_34, L_36, NULL);
|
|
if (!L_37)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:176>
|
|
float L_38 = V_3;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_39 = ___0_pointerEvent;
|
|
NullCheck(L_39);
|
|
float L_40;
|
|
L_40 = PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline(L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:177>
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_38, L_40))) < ((float)(0.300000012f)))))
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:178>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_41 = ___0_pointerEvent;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_42 = L_41;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline(L_42, NULL);
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_43, 1));
|
|
int32_t L_44 = V_4;
|
|
NullCheck(L_42);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_42, L_44, NULL);
|
|
goto IL_00cd;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:180>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_45 = ___0_pointerEvent;
|
|
NullCheck(L_45);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_45, 1, NULL);
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:182>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_46 = ___0_pointerEvent;
|
|
float L_47 = V_3;
|
|
NullCheck(L_46);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_46, L_47, NULL);
|
|
goto IL_00dd;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:186>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_48 = ___0_pointerEvent;
|
|
NullCheck(L_48);
|
|
PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline(L_48, 1, NULL);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:189>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_49 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_50 = V_2;
|
|
NullCheck(L_49);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_49, L_50, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:190>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_51 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_52 = V_0;
|
|
NullCheck(L_51);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_51, L_52, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:192>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_53 = ___0_pointerEvent;
|
|
float L_54 = V_3;
|
|
NullCheck(L_53);
|
|
PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline(L_53, L_54, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:195>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_55 = ___0_pointerEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_56 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_57;
|
|
L_57 = ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA(L_56, ExecuteEvents_GetEventHandler_TisIDragHandler_t9FF2B3D79AB401D7E2485254973D15C0F117D00D_m9AA4E18082F53C60962F70D75570F1D400C37FBA_RuntimeMethod_var);
|
|
NullCheck(L_55);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_55, L_57, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:197>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_58 = ___0_pointerEvent;
|
|
NullCheck(L_58);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_59;
|
|
L_59 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_58, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_60;
|
|
L_60 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_59, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_60)
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:198>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_61 = ___0_pointerEvent;
|
|
NullCheck(L_61);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_62;
|
|
L_62 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_61, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_63 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_64;
|
|
L_64 = ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD_inline(NULL);
|
|
bool L_65;
|
|
L_65 = ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C(L_62, L_63, L_64, ExecuteEvents_Execute_TisIInitializePotentialDragHandler_tAFCBB3BBC98C928ED8D5703C39F4781446AB8E9E_mABD9E1ECC8C04235760B3855DF03F2308F62071C_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:200>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_66 = ___0_pointerEvent;
|
|
__this->___m_InputPointerEvent = L_66;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)L_66);
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:204>
|
|
bool L_67 = ___2_released;
|
|
if (!L_67)
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:207>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_68 = ___0_pointerEvent;
|
|
NullCheck(L_68);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_69;
|
|
L_69 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_68, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_70 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_71;
|
|
L_71 = ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline(NULL);
|
|
bool L_72;
|
|
L_72 = ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6(L_69, L_70, L_71, ExecuteEvents_Execute_TisIPointerUpHandler_tB2D4D0ABEAFF77BE8D0159D638D85E1AF7BAF210_mBB70745D5D17BF6402CABEFF0F52911F88C197A6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:212>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_73 = V_0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_74;
|
|
L_74 = ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E(L_73, ExecuteEvents_GetEventHandler_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m3363BED905E60A4545A8CA5B8C68BA709E99536E_RuntimeMethod_var);
|
|
V_5 = L_74;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:215>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_75 = ___0_pointerEvent;
|
|
NullCheck(L_75);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_76;
|
|
L_76 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_75, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_77 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_78;
|
|
L_78 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_76, L_77, NULL);
|
|
if (!L_78)
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_79 = ___0_pointerEvent;
|
|
NullCheck(L_79);
|
|
bool L_80;
|
|
L_80 = PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline(L_79, NULL);
|
|
if (!L_80)
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:217>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_81 = ___0_pointerEvent;
|
|
NullCheck(L_81);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_82;
|
|
L_82 = PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline(L_81, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_83 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_84;
|
|
L_84 = ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5_inline(NULL);
|
|
bool L_85;
|
|
L_85 = ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6(L_82, L_83, L_84, ExecuteEvents_Execute_TisIPointerClickHandler_t77341AA19DE37C26F5F619DE8BD28B70D5A2B5D8_m024FB23AA1DBB1B7A5E1935FA35A1E4FF57AC5F6_RuntimeMethod_var);
|
|
goto IL_0193;
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:219>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_86 = ___0_pointerEvent;
|
|
NullCheck(L_86);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_87;
|
|
L_87 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_86, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_88;
|
|
L_88 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_87, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_88)
|
|
{
|
|
goto IL_0193;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_89 = ___0_pointerEvent;
|
|
NullCheck(L_89);
|
|
bool L_90;
|
|
L_90 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_89, NULL);
|
|
if (!L_90)
|
|
{
|
|
goto IL_0193;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:221>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_91 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_92 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_93;
|
|
L_93 = ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_94;
|
|
L_94 = ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57(L_91, L_92, L_93, ExecuteEvents_ExecuteHierarchy_TisIDropHandler_t9F3B358BA4812886852E9AB85A653ABF73B9AA35_m0C0E2A729F88D6AB5AC2B4FD9C4E33D181A52A57_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0193:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:224>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_95 = ___0_pointerEvent;
|
|
NullCheck(L_95);
|
|
PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline(L_95, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:225>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_96 = ___0_pointerEvent;
|
|
NullCheck(L_96);
|
|
PointerEventData_set_pointerPress_m51241AAA6E5F87ADEBBB8DB7D4452CE45200BEE8(L_96, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:226>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_97 = ___0_pointerEvent;
|
|
NullCheck(L_97);
|
|
PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline(L_97, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:228>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_98 = ___0_pointerEvent;
|
|
NullCheck(L_98);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_99;
|
|
L_99 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_98, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_100;
|
|
L_100 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_99, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_100)
|
|
{
|
|
goto IL_01d0;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_101 = ___0_pointerEvent;
|
|
NullCheck(L_101);
|
|
bool L_102;
|
|
L_102 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_101, NULL);
|
|
if (!L_102)
|
|
{
|
|
goto IL_01d0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:229>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_103 = ___0_pointerEvent;
|
|
NullCheck(L_103);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_104;
|
|
L_104 = PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline(L_103, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_105 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_106;
|
|
L_106 = ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline(NULL);
|
|
bool L_107;
|
|
L_107 = ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E(L_104, L_105, L_106, ExecuteEvents_Execute_TisIEndDragHandler_t9A93E4A27E7CEED446E5FE3DACF39B1A552C23A9_m6AA443D4F53AF0FEBAC269F761A158635243467E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01d0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:231>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_108 = ___0_pointerEvent;
|
|
NullCheck(L_108);
|
|
PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline(L_108, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:232>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_109 = ___0_pointerEvent;
|
|
NullCheck(L_109);
|
|
PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline(L_109, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:235>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_110 = ___0_pointerEvent;
|
|
NullCheck(L_110);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_111;
|
|
L_111 = PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline(L_110, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_112 = ___0_pointerEvent;
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_113;
|
|
L_113 = ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline(NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_114;
|
|
L_114 = ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92(L_111, L_112, L_113, ExecuteEvents_ExecuteHierarchy_TisIPointerExitHandler_t1AA3FC124CC77401AF27435A3D6E611F5C7A57EE_m50CEB3F041077A74C37270714BBF0CC3EB37DD92_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:236>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_115 = ___0_pointerEvent;
|
|
NullCheck(L_115);
|
|
PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline(L_115, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:238>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_116 = ___0_pointerEvent;
|
|
__this->___m_InputPointerEvent = L_116;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_InputPointerEvent), (void*)L_116);
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:240>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68826
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchInputModule_DeactivateModule_m7CF377DBC376C3EC560523E76514E9F47CCC9DEE (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:244>
|
|
BaseInputModule_DeactivateModule_mAE698307DADBE4DE8A26BD3DE5F3F7E3D75B385D(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:245>
|
|
PointerInputModule_ClearSelection_mC5852667E5B9CA97C2A4CAB3D7C907344511C1D2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:246>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68827
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchInputModule_ToString_m1AD08DB012D85A33FC0EA3322D5AA5EB98CD1956 (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_ToString_m5F8161F26E20B830F794E3C0B87C0570D011D4AD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55489C2AE4CD8276F5514C1F5C0FC0E6C828316F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9778C320E07EB86C3995D33DDB63310A2DC91762);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* V_1 = NULL;
|
|
Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StringBuilder_t* G_B2_0 = NULL;
|
|
StringBuilder_t* G_B1_0 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
StringBuilder_t* G_B3_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:250>
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:251>
|
|
StringBuilder_t* L_1 = V_0;
|
|
bool L_2;
|
|
L_2 = TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0016;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
G_B3_0 = _stringLiteral55489C2AE4CD8276F5514C1F5C0FC0E6C828316F;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
G_B3_0 = _stringLiteral9778C320E07EB86C3995D33DDB63310A2DC91762;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
StringBuilder_t* L_3;
|
|
L_3 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(G_B3_1, G_B3_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:252>
|
|
bool L_4;
|
|
L_4 = TouchInputModule_UseFakeInput_m66A84384ADA044187F239B1CFC143C42E5E56774(__this, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:254>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_5;
|
|
L_5 = PointerInputModule_GetLastPointerEventData_m6355023718EB2DCF6D9C226A57B63B70CCEECAB4(__this, (-1), NULL);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:255>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:256>
|
|
StringBuilder_t* L_7 = V_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_8);
|
|
NullCheck(L_7);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_7, L_9, NULL);
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:260>
|
|
Dictionary_2_t489B023479196B8FC9709A9F834FC38729BD9493* L_11 = ((PointerInputModule_tD71E11FA989C22D83883E120EAA4F05929907556*)__this)->___m_PointerData;
|
|
NullCheck(L_11);
|
|
Enumerator_tAC6F215019B1EAEAEE81308CEBA6052DECD5EE7E L_12;
|
|
L_12 = Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034(L_11, Dictionary_2_GetEnumerator_m5127D66D8AB03E7A21778DD898242C65F0EED034_RuntimeMethod_var);
|
|
V_2 = L_12;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0078:
|
|
{
|
|
Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714((&V_2), Enumerator_Dispose_m939CB6214446517A933B0216F1C64AB86E291714_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_006d_1;
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:260>
|
|
KeyValuePair_2_tC51A92A69CB9B2F98A91443EE066E405EDCA4296 L_13;
|
|
L_13 = Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_inline((&V_2), Enumerator_get_Current_mEC2B6AFDB80F9344C20DF0D6A63925642A413615_RuntimeMethod_var);
|
|
V_3 = L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:261>
|
|
StringBuilder_t* L_14 = V_0;
|
|
String_t* L_15;
|
|
L_15 = KeyValuePair_2_ToString_m5F8161F26E20B830F794E3C0B87C0570D011D4AD((&V_3), KeyValuePair_2_ToString_m5F8161F26E20B830F794E3C0B87C0570D011D4AD_RuntimeMethod_var);
|
|
NullCheck(L_14);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_14, L_15, NULL);
|
|
}
|
|
|
|
IL_006d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:260>
|
|
bool L_17;
|
|
L_17 = Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150((&V_2), Enumerator_MoveNext_m69F94D82492DD2778B91F594B491223C02265150_RuntimeMethod_var);
|
|
if (L_17)
|
|
{
|
|
goto IL_0051_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:263>
|
|
StringBuilder_t* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
String_t* L_19;
|
|
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_18);
|
|
return L_19;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68828
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_AddRaycaster_mD2EE52F55FBDB3BEAAF583C4445D4D16B09B6350 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_baseRaycaster, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m82AF5EAB1EA13F21CE5250B008E4EBCFEDAB6D53_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:11>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_0 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_1 = ___0_baseRaycaster;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C(L_0, L_1, List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:12>
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:14>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_3 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_4 = ___0_baseRaycaster;
|
|
NullCheck(L_3);
|
|
List_1_Add_m82AF5EAB1EA13F21CE5250B008E4EBCFEDAB6D53_inline(L_3, L_4, List_1_Add_m82AF5EAB1EA13F21CE5250B008E4EBCFEDAB6D53_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:15>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68829
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* RaycasterManager_GetRaycasters_m876BA9CA8DB8E6D351DC4A97473753503B7017DE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:22>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_0 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68830
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager_RemoveRaycasters_m0800E0ACE007AD43B62D10C1029EC85E7DE28999 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___0_baseRaycaster, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m585A9E471D1C60EE46BA224A58947647F1E2B83B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:27>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_0 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_1 = ___0_baseRaycaster;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C(L_0, L_1, List_1_Contains_m1F747311B8D41F5857768B1D6D5C51C43CA8BE4C_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:28>
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:29>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_3 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_4 = ___0_baseRaycaster;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = List_1_Remove_m585A9E471D1C60EE46BA224A58947647F1E2B83B(L_3, L_4, List_1_Remove_m585A9E471D1C60EE46BA224A58947647F1E2B83B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:30>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68831
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycasterManager__cctor_m06146026A557346F1469D15E855918E746125F90 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m53B48CB7A08406A33847E0C3D9D7511DE8FB0D41_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t02E640552264E3DEAE676267B620815D33BCD0DF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:7>
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_0 = (List_1_t02E640552264E3DEAE676267B620815D33BCD0DF*)il2cpp_codegen_object_new(List_1_t02E640552264E3DEAE676267B620815D33BCD0DF_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m53B48CB7A08406A33847E0C3D9D7511DE8FB0D41(L_0, List_1__ctor_m53B48CB7A08406A33847E0C3D9D7511DE8FB0D41_RuntimeMethod_var);
|
|
((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68834
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_priority_m79C109ECC138B84A60F9CFA40242628A8B29C838 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:32>
|
|
return 0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68835
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_sortOrderPriority_m4E0BEBF85F720AE4B7C78E99CCD786779C3E7226 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:40>
|
|
return ((int32_t)-2147483648LL);
|
|
}
|
|
}
|
|
// Method Definition Index: 68836
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseRaycaster_get_renderOrderPriority_m03C407856FF76393AB6EE26FA173131B8F36CA66 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:48>
|
|
return ((int32_t)-2147483648LL);
|
|
}
|
|
}
|
|
// Method Definition Index: 68837
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* BaseRaycaster_get_rootRaycaster_m63E20D85A8B9867AC196768924F8BE579668BF28 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentsInParent_TisBaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832_mA869CA05E07609C8F435F1D779B138F3F2425F8C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:58>
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_0 = __this->___m_RootRaycaster;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:60>
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* L_2;
|
|
L_2 = Component_GetComponentsInParent_TisBaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832_mA869CA05E07609C8F435F1D779B138F3F2425F8C(__this, Component_GetComponentsInParent_TisBaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832_mA869CA05E07609C8F435F1D779B138F3F2425F8C_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:61>
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
if (!(((RuntimeArray*)L_3)->max_length))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:62>
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* L_4 = V_0;
|
|
BaseRaycasterU5BU5D_tAE62D3FF1A5FF9DE20B2756DA4F4F8981925A799* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_5)->max_length)), 1));
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
__this->___m_RootRaycaster = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RootRaycaster), (void*)L_7);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:65>
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_8 = __this->___m_RootRaycaster;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 68838
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BaseRaycaster_ToString_m12811CE16AB7E07C949B78CDE309C4B2E44B5377 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E8BE7BC315CC297C7A3C2864B3A2ED1BD553384);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70F1769C72FCAF144F53009F7DA60ED467C29635);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75B536F4B16F980DC1BE8BFB67378A32681C6F79);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D2B27E9061DE91A9190184698F3F04E23827CA1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B2_0 = NULL;
|
|
int32_t G_B2_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B2_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B1_0 = NULL;
|
|
int32_t G_B1_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B1_3 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
int32_t G_B3_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_3 = NULL;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* G_B4_0 = NULL;
|
|
int32_t G_B4_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_3 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:71>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:72>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:73>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:74>
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral70F1769C72FCAF144F53009F7DA60ED467C29635);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = L_3;
|
|
if (L_4)
|
|
{
|
|
G_B2_0 = L_4;
|
|
G_B2_1 = 1;
|
|
G_B2_2 = L_2;
|
|
G_B2_3 = L_2;
|
|
goto IL_001d;
|
|
}
|
|
G_B1_0 = L_4;
|
|
G_B1_1 = 1;
|
|
G_B1_2 = L_2;
|
|
G_B1_3 = L_2;
|
|
}
|
|
{
|
|
G_B3_0 = ((String_t*)(NULL));
|
|
G_B3_1 = G_B1_1;
|
|
G_B3_2 = G_B1_2;
|
|
G_B3_3 = G_B1_3;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B2_0);
|
|
G_B3_0 = L_5;
|
|
G_B3_1 = G_B2_1;
|
|
G_B3_2 = G_B2_2;
|
|
G_B3_3 = G_B2_3;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
NullCheck(G_B3_2);
|
|
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (String_t*)G_B3_0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = G_B3_3;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral9D2B27E9061DE91A9190184698F3F04E23827CA1);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_6;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_8;
|
|
L_8 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B5_0 = L_9;
|
|
G_B5_1 = 3;
|
|
G_B5_2 = L_7;
|
|
G_B5_3 = L_7;
|
|
goto IL_003a;
|
|
}
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = 3;
|
|
G_B4_2 = L_7;
|
|
G_B4_3 = L_7;
|
|
}
|
|
{
|
|
G_B6_0 = ((String_t*)(NULL));
|
|
G_B6_1 = G_B4_1;
|
|
G_B6_2 = G_B4_2;
|
|
G_B6_3 = G_B4_3;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
String_t* L_10;
|
|
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B5_0);
|
|
G_B6_0 = L_10;
|
|
G_B6_1 = G_B5_1;
|
|
G_B6_2 = G_B5_2;
|
|
G_B6_3 = G_B5_3;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
NullCheck(G_B6_2);
|
|
(G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (String_t*)G_B6_0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = G_B6_3;
|
|
NullCheck(L_11);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral2E8BE7BC315CC297C7A3C2864B3A2ED1BD553384);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = L_11;
|
|
int32_t L_13;
|
|
L_13 = VirtualFuncInvoker0< int32_t >::Invoke(20, __this);
|
|
V_0 = L_13;
|
|
String_t* L_14;
|
|
L_14 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_14);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = L_12;
|
|
NullCheck(L_15);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral75B536F4B16F980DC1BE8BFB67378A32681C6F79);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_15;
|
|
int32_t L_17;
|
|
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(21, __this);
|
|
V_0 = L_17;
|
|
String_t* L_18;
|
|
L_18 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_18);
|
|
String_t* L_19;
|
|
L_19 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_16, NULL);
|
|
return L_19;
|
|
}
|
|
}
|
|
// Method Definition Index: 68839
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnEnable_m87CCF1ACD4116BB8BC0D9DB427F5B07C6FDE3D96 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:79>
|
|
UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:80>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
RaycasterManager_AddRaycaster_mD2EE52F55FBDB3BEAAF583C4445D4D16B09B6350(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:81>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68840
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnDisable_mC90A700D5F78DDAD0DD926983C2A8D7C50A5D880 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:85>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
RaycasterManager_RemoveRaycasters_m0800E0ACE007AD43B62D10C1029EC85E7DE28999(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:86>
|
|
UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:87>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68841
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnCanvasHierarchyChanged_m20A82CFED659012D1F052C5026B8294B44D99BD7 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:91>
|
|
UIBehaviour_OnCanvasHierarchyChanged_mCAC018CB33FA00E857288B64E3722226638A1229(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:92>
|
|
__this->___m_RootRaycaster = (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RootRaycaster), (void*)(BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68842
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster_OnTransformParentChanged_m121068CDDBC97032FF51C4ED944D4C126CB58F7F (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:97>
|
|
UIBehaviour_OnTransformParentChanged_mAD56D3C6049A1746F00DC2643D1666F7DE921384(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:98>
|
|
__this->___m_RootRaycaster = (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RootRaycaster), (void*)(BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/BaseRaycaster.cs:99>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68843
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683 (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68844
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2DRaycaster__ctor_mF2F12F2AF9DDCA74EB09349D038A67F3D3F88CF9 (Physics2DRaycaster_t8E0FE5BD8DC96C60EE4BA334B0607B63A69761A7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:26>
|
|
PhysicsRaycaster__ctor_mB7D4BAC26DC219A10060B35498EE9D5F05AD0E80(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:27>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68845
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2DRaycaster_Raycast_m9F6AA9C9DC7A34C01959F2053446D3FFCE567630 (Physics2DRaycaster_t8E0FE5BD8DC96C60EE4BA334B0607B63A69761A7* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_resultAppendList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisRenderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF_m026EB44DB6238F13E2AFBECF1FBBE924CB1B040A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpriteRenderer_t1DD7FE258F072E1FA87D6577BA27225892B8047B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpriteShapeRenderer_tE998BB73CF661079736CCC23617E597AB230A4AC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TilemapRenderer_t1A45FD335E86172CFBB77D657E1D6705A477A6CB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* V_6 = NULL;
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* V_7 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* V_9 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B22_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B21_0 = NULL;
|
|
int32_t G_B23_0 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B23_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B25_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B24_0 = NULL;
|
|
int32_t G_B26_0 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B26_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B28_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B27_0 = NULL;
|
|
int32_t G_B29_0 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B29_1 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B31_0 = NULL;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B30_0 = NULL;
|
|
int32_t G_B32_0 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* G_B32_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:35>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:36>
|
|
V_1 = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:37>
|
|
V_2 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:38>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
bool L_1;
|
|
L_1 = PhysicsRaycaster_ComputeRayAndDistance_mCFEFA9D83EC1E63393454E383FFFEF89E14C173B(__this, L_0, (&V_0), (&V_2), (&V_1), NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:39>
|
|
return;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:41>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:43>
|
|
int32_t L_2;
|
|
L_2 = PhysicsRaycaster_get_maxRayIntersections_mA06D0B5E291BCF94AE1EF4ED7B68890F39395911_inline(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:45>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_3;
|
|
L_3 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_3);
|
|
GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C* L_4 = L_3->___getRayIntersectionAll;
|
|
if (L_4)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:46>
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:47>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_5;
|
|
L_5 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_5);
|
|
GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C* L_6 = L_5->___getRayIntersectionAll;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_7 = V_0;
|
|
float L_8 = V_1;
|
|
int32_t L_9;
|
|
L_9 = PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B(__this, NULL);
|
|
NullCheck(L_6);
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_10;
|
|
L_10 = GetRayIntersectionAllCallback_Invoke_m917AA4108EBDC724AFEF39BFD06A586B7461F497_inline(L_6, L_7, L_8, L_9, NULL);
|
|
__this->___m_Hits = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Hits), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:48>
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_11 = __this->___m_Hits;
|
|
NullCheck(L_11);
|
|
V_3 = ((int32_t)(((RuntimeArray*)L_11)->max_length));
|
|
goto IL_00b5;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:52>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_12;
|
|
L_12 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_12);
|
|
GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980* L_13 = L_12->___getRayIntersectionAllNonAlloc;
|
|
if (L_13)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:53>
|
|
return;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:55>
|
|
int32_t L_14 = ((PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD*)__this)->___m_LastMaxRayIntersections;
|
|
int32_t L_15 = ((PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD*)__this)->___m_MaxRayIntersections;
|
|
if ((((int32_t)L_14) == ((int32_t)L_15)))
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:57>
|
|
int32_t L_16;
|
|
L_16 = PhysicsRaycaster_get_maxRayIntersections_mA06D0B5E291BCF94AE1EF4ED7B68890F39395911_inline(__this, NULL);
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_17 = (RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7*)(RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7*)SZArrayNew(RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7_il2cpp_TypeInfo_var, (uint32_t)L_16);
|
|
__this->___m_Hits = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Hits), (void*)L_17);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:58>
|
|
int32_t L_18 = ((PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD*)__this)->___m_MaxRayIntersections;
|
|
((PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD*)__this)->___m_LastMaxRayIntersections = L_18;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:61>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_19;
|
|
L_19 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_19);
|
|
GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980* L_20 = L_19->___getRayIntersectionAllNonAlloc;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_21 = V_0;
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_22 = __this->___m_Hits;
|
|
float L_23 = V_1;
|
|
int32_t L_24;
|
|
L_24 = PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B(__this, NULL);
|
|
NullCheck(L_20);
|
|
int32_t L_25;
|
|
L_25 = GetRayIntersectionAllNonAllocCallback_Invoke_mFAA36E9AF362DC72204EEF53B28DBFC3367D09A7_inline(L_20, L_21, L_22, L_23, L_24, NULL);
|
|
V_3 = L_25;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:64>
|
|
int32_t L_26 = V_3;
|
|
if (!L_26)
|
|
{
|
|
goto IL_02b0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:66>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:66>
|
|
int32_t L_27 = V_3;
|
|
V_5 = L_27;
|
|
goto IL_02a7;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:68>
|
|
V_6 = (Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF*)NULL;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:70>
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_28 = __this->___m_Hits;
|
|
int32_t L_29 = V_4;
|
|
NullCheck(L_28);
|
|
Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* L_30;
|
|
L_30 = RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD(((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29))), NULL);
|
|
NullCheck(L_30);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_31;
|
|
L_31 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_30, NULL);
|
|
NullCheck(L_31);
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_32;
|
|
L_32 = GameObject_GetComponent_TisRenderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF_m026EB44DB6238F13E2AFBECF1FBBE924CB1B040A(L_31, GameObject_GetComponent_TisRenderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF_m026EB44DB6238F13E2AFBECF1FBBE924CB1B040A_RuntimeMethod_var);
|
|
V_7 = L_32;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:71>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_33 = V_7;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_34;
|
|
L_34 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_33, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:73>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_35 = V_7;
|
|
if (!((SpriteRenderer_t1DD7FE258F072E1FA87D6577BA27225892B8047B*)IsInstSealed((RuntimeObject*)L_35, SpriteRenderer_t1DD7FE258F072E1FA87D6577BA27225892B8047B_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:75>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_36 = V_7;
|
|
V_6 = L_36;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:78>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_37 = V_7;
|
|
if (!((TilemapRenderer_t1A45FD335E86172CFBB77D657E1D6705A477A6CB*)IsInstSealed((RuntimeObject*)L_37, TilemapRenderer_t1A45FD335E86172CFBB77D657E1D6705A477A6CB_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:80>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_38 = V_7;
|
|
V_6 = L_38;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:83>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_39 = V_7;
|
|
if (!((SpriteShapeRenderer_tE998BB73CF661079736CCC23617E597AB230A4AC*)IsInstClass((RuntimeObject*)L_39, SpriteShapeRenderer_tE998BB73CF661079736CCC23617E597AB230A4AC_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:85>
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_40 = V_7;
|
|
V_6 = L_40;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:89>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:90>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:91>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:92>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:93>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:94>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:95>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:96>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:97>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:98>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:99>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:100>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:101>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:102>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:103>
|
|
il2cpp_codegen_initobj((&V_10), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_41 = __this->___m_Hits;
|
|
int32_t L_42 = V_4;
|
|
NullCheck(L_41);
|
|
Collider2D_t6A17BA7734600EF3F26588E9ED903617D5B8EB52* L_43;
|
|
L_43 = RaycastHit2D_get_collider_mB56DFCD16B708852EEBDBB490BC8665DBF7487FD(((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42))), NULL);
|
|
NullCheck(L_43);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_44;
|
|
L_44 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_43, NULL);
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline((&V_10), L_44, NULL);
|
|
(&V_10)->___module = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_10)->___module), (void*)__this);
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_45 = __this->___m_Hits;
|
|
int32_t L_46 = V_4;
|
|
NullCheck(L_45);
|
|
float L_47;
|
|
L_47 = RaycastHit2D_get_distance_mD0FE1482E2768CF587AFB65488459697EAB64613(((L_45)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_46))), NULL);
|
|
(&V_10)->___distance = L_47;
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_48 = __this->___m_Hits;
|
|
int32_t L_49 = V_4;
|
|
NullCheck(L_48);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_50;
|
|
L_50 = RaycastHit2D_get_point_mB35E988E9E04328EFE926228A18334326721A36B(((L_48)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_49))), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_51;
|
|
L_51 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_50, NULL);
|
|
(&V_10)->___worldPosition = L_51;
|
|
RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* L_52 = __this->___m_Hits;
|
|
int32_t L_53 = V_4;
|
|
NullCheck(L_52);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_54;
|
|
L_54 = RaycastHit2D_get_normal_m75F1EBDE347BACEB5A6A6AA72543C740806AB5F2(((L_52)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_53))), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_55;
|
|
L_55 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_54, NULL);
|
|
(&V_10)->___worldNormal = L_55;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_56 = ___0_eventData;
|
|
NullCheck(L_56);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_57;
|
|
L_57 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_56, NULL);
|
|
(&V_10)->___screenPosition = L_57;
|
|
int32_t L_58 = V_2;
|
|
(&V_10)->___displayIndex = L_58;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_59 = ___1_resultAppendList;
|
|
NullCheck(L_59);
|
|
int32_t L_60;
|
|
L_60 = List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline(L_59, List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
(&V_10)->___index = ((float)L_60);
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_61 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_62;
|
|
L_62 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_61, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_62)
|
|
{
|
|
G_B22_0 = (&V_10);
|
|
goto IL_01d1;
|
|
}
|
|
G_B21_0 = (&V_10);
|
|
}
|
|
{
|
|
int32_t L_63;
|
|
L_63 = SortingGroup_get_invalidSortingGroupID_mEA453186185B225FA2410988959180BAEC604310(NULL);
|
|
G_B23_0 = L_63;
|
|
G_B23_1 = G_B21_0;
|
|
goto IL_01d8;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_64 = V_6;
|
|
NullCheck(L_64);
|
|
int32_t L_65;
|
|
L_65 = Renderer_get_sortingGroupID_m1DEFE39027236FF31AB603993BBC13C072E52118(L_64, NULL);
|
|
G_B23_0 = L_65;
|
|
G_B23_1 = G_B22_0;
|
|
}
|
|
|
|
IL_01d8:
|
|
{
|
|
G_B23_1->___sortingGroupID = G_B23_0;
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_66 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_67;
|
|
L_67 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_66, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_67)
|
|
{
|
|
G_B25_0 = (&V_10);
|
|
goto IL_01ec;
|
|
}
|
|
G_B24_0 = (&V_10);
|
|
}
|
|
{
|
|
G_B26_0 = 0;
|
|
G_B26_1 = G_B24_0;
|
|
goto IL_01f3;
|
|
}
|
|
|
|
IL_01ec:
|
|
{
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_68 = V_6;
|
|
NullCheck(L_68);
|
|
int32_t L_69;
|
|
L_69 = Renderer_get_sortingGroupOrder_m40F058B3AFC92CCEF2475E0BD9A96464154E999E(L_68, NULL);
|
|
G_B26_0 = L_69;
|
|
G_B26_1 = G_B25_0;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
G_B26_1->___sortingGroupOrder = G_B26_0;
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_70 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_71;
|
|
L_71 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_70, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_71)
|
|
{
|
|
G_B28_0 = (&V_10);
|
|
goto IL_0207;
|
|
}
|
|
G_B27_0 = (&V_10);
|
|
}
|
|
{
|
|
G_B29_0 = 0;
|
|
G_B29_1 = G_B27_0;
|
|
goto IL_020e;
|
|
}
|
|
|
|
IL_0207:
|
|
{
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_72 = V_6;
|
|
NullCheck(L_72);
|
|
int32_t L_73;
|
|
L_73 = Renderer_get_sortingLayerID_m3D7AE74F1B87099810CF969CB4520C85F9AE5F92(L_72, NULL);
|
|
G_B29_0 = L_73;
|
|
G_B29_1 = G_B28_0;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
G_B29_1->___sortingLayer = G_B29_0;
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_74 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_75;
|
|
L_75 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_74, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_75)
|
|
{
|
|
G_B31_0 = (&V_10);
|
|
goto IL_0222;
|
|
}
|
|
G_B30_0 = (&V_10);
|
|
}
|
|
{
|
|
G_B32_0 = 0;
|
|
G_B32_1 = G_B30_0;
|
|
goto IL_0229;
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_76 = V_6;
|
|
NullCheck(L_76);
|
|
int32_t L_77;
|
|
L_77 = Renderer_get_sortingOrder_m4CE7ADEEC8E2F28CC1D10B1D4091A10F8F1583FA(L_76, NULL);
|
|
G_B32_0 = L_77;
|
|
G_B32_1 = G_B31_0;
|
|
}
|
|
|
|
IL_0229:
|
|
{
|
|
G_B32_1->___sortingOrder = G_B32_0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_78 = V_10;
|
|
V_8 = L_78;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:105>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:106>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_79 = V_8;
|
|
int32_t L_80 = L_79.___sortingGroupID;
|
|
int32_t L_81;
|
|
L_81 = SortingGroup_get_invalidSortingGroupID_mEA453186185B225FA2410988959180BAEC604310(NULL);
|
|
if ((((int32_t)L_80) == ((int32_t)L_81)))
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
Renderer_t320575F223BCB177A982E5DDB5DB19FAA89E7FBF* L_82 = V_6;
|
|
NullCheck(L_82);
|
|
int32_t L_83;
|
|
L_83 = Renderer_get_sortingGroupID_m1DEFE39027236FF31AB603993BBC13C072E52118(L_82, NULL);
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* L_84;
|
|
L_84 = SortingGroup_GetSortingGroupByIndex_mC4CFB06D8C4B0EA27FC4BDC60AA05F4E0B28426B(L_83, NULL);
|
|
V_9 = L_84;
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* L_85 = V_9;
|
|
if (!L_85)
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:109>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_86;
|
|
L_86 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline((&V_0), NULL);
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* L_87 = V_9;
|
|
NullCheck(L_87);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_88;
|
|
L_88 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_87, NULL);
|
|
NullCheck(L_88);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_89;
|
|
L_89 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_88, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_90;
|
|
L_90 = Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline((&V_0), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_91;
|
|
L_91 = Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline(L_89, L_90, NULL);
|
|
float L_92;
|
|
L_92 = Vector3_Dot_mBB86BB940AA0A32FA7D3C02AC42E5BC7095A5D52_inline(L_86, L_91, NULL);
|
|
(&V_8)->___distance = L_92;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:110>
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* L_93 = V_9;
|
|
NullCheck(L_93);
|
|
int32_t L_94;
|
|
L_94 = SortingGroup_get_sortingLayerID_m37C70CEA78DA6E28F405C67EDE95D5C2191F0055(L_93, NULL);
|
|
(&V_8)->___sortingLayer = L_94;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:111>
|
|
SortingGroup_tA8DA95BF22F76688DAF54122EB3EEA35C70E9759* L_95 = V_9;
|
|
NullCheck(L_95);
|
|
int32_t L_96;
|
|
L_96 = SortingGroup_get_sortingOrder_mC80606E6BB9A6D5E3AB61A0451C48203A0C1AB6A(L_95, NULL);
|
|
(&V_8)->___sortingOrder = L_96;
|
|
}
|
|
|
|
IL_0299:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:114>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_97 = ___1_resultAppendList;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_98 = V_8;
|
|
NullCheck(L_97);
|
|
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(L_97, L_98, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:66>
|
|
int32_t L_99 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_99, 1));
|
|
}
|
|
|
|
IL_02a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:66>
|
|
int32_t L_100 = V_4;
|
|
int32_t L_101 = V_5;
|
|
if ((((int32_t)L_100) < ((int32_t)L_101)))
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
|
|
IL_02b0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/Physics2DRaycaster.cs:118>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68846
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster__ctor_mB7D4BAC26DC219A10060B35498EE9D5F05AD0E80 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:27>
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0;
|
|
L_0 = LayerMask_op_Implicit_m01C8996A2CB2085328B9C33539C43139660D8222((-1), NULL);
|
|
__this->___m_EventMask = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:40>
|
|
BaseRaycaster__ctor_m1B6A963368E54C1E450BE15FAF1AE082142A1683(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:41>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68847
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PhysicsRaycaster_get_eventCamera_m95026618116D1781A906DDE4AF9C415F2374013C (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:47>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = __this->___m_EventCamera;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:48>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
|
|
L_2 = Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4(__this, Component_GetComponent_TisCamera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_m64AC6C06DD93C5FB249091FEC84FA8475457CCC4_RuntimeMethod_var);
|
|
__this->___m_EventCamera = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventCamera), (void*)L_2);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:50>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_3 = __this->___m_EventCamera;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:51>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
|
|
L_5 = Camera_get_main_m52C992F18E05355ABB9EEB64A4BF2215E12762DF(NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:53>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_6 = __this->___m_EventCamera;
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 68848
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_depth_mCC2E924588088DB1DCA160765C09734D3C4F7F60 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:63>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0;
|
|
L_0 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return ((int32_t)16777215);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
|
|
L_2 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_2);
|
|
float L_3;
|
|
L_3 = Camera_get_depth_mDF67FFF8ED61750467DFC4C6D8F236850AD1BB1D(L_2, NULL);
|
|
return il2cpp_codegen_cast_double_to_int<int32_t>(L_3);
|
|
}
|
|
}
|
|
// Method Definition Index: 68849
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:71>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0;
|
|
L_0 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_2;
|
|
L_2 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Camera_get_cullingMask_m6F5AFF8FB522F876D99E839BF77D8F27F26A1EF8(L_2, NULL);
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_4 = __this->___m_EventMask;
|
|
int32_t L_5;
|
|
L_5 = LayerMask_op_Implicit_m7F5A5B9D079281AC445ED39DEE1FCFA9D795810D(L_4, NULL);
|
|
return ((int32_t)(L_3&L_5));
|
|
}
|
|
}
|
|
// Method Definition Index: 68850
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB PhysicsRaycaster_get_eventMask_mA8FE3884CD425BD59BD22784F4D5219159426DB9 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:79>
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_EventMask;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68851
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_set_eventMask_mD5110BE565C7E3F1738369519D44587452CA056D (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:80>
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = ___0_value;
|
|
__this->___m_EventMask = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:80>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68852
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_mA06D0B5E291BCF94AE1EF4ED7B68890F39395911 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:91>
|
|
int32_t L_0 = __this->___m_MaxRayIntersections;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68853
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_set_maxRayIntersections_mECCF07932870A3B5C8875AE6204FC1ECB2CE01F7 (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:92>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_MaxRayIntersections = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:92>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68854
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsRaycaster_ComputeRayAndDistance_mCFEFA9D83EC1E63393454E383FFFEF89E14C173B (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* ___1_ray, int32_t* ___2_eventDisplayIndex, float* ___3_distanceToClipPlane, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float* G_B10_0 = NULL;
|
|
float* G_B9_0 = NULL;
|
|
float G_B11_0 = 0.0f;
|
|
float* G_B11_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:105>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0;
|
|
L_0 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:106>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:108>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_eventData;
|
|
NullCheck(L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_2, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_eventData;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = PointerEventData_get_displayIndex_m8B2088561EA850F1CAD124797F0F6E3756F584FA_inline(L_4, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = MultipleDisplayUtilities_RelativeMouseAtScaled_m80E65BE9255F7D65D9341FDFDB0CA11470703E71(L_3, L_5, NULL);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:109>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
L_8 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
bool L_9;
|
|
L_9 = Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline(L_7, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:112>
|
|
int32_t* L_10 = ___2_eventDisplayIndex;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11 = V_0;
|
|
float L_12 = L_11.___z;
|
|
*((int32_t*)L_10) = (int32_t)il2cpp_codegen_cast_double_to_int<int32_t>(L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:115>
|
|
int32_t* L_13 = ___2_eventDisplayIndex;
|
|
int32_t L_14 = *((int32_t*)L_13);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_15;
|
|
L_15 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = Camera_get_targetDisplay_m204A169C94EEABDB491FA5A77CC684146B10DF80(L_15, NULL);
|
|
if ((((int32_t)L_14) == ((int32_t)L_16)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:116>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:122>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_17 = ___0_eventData;
|
|
NullCheck(L_17);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
L_18 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_17, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_19;
|
|
L_19 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_18, NULL);
|
|
V_0 = L_19;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:126>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_20;
|
|
L_20 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_20);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_21;
|
|
L_21 = Camera_get_pixelRect_m5F40F5C324EB252261F66962411EE08CC4BE39E7(L_20, NULL);
|
|
V_2 = L_21;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = V_0;
|
|
bool L_23;
|
|
L_23 = Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B_inline((&V_2), L_22, NULL);
|
|
if (L_23)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:127>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:129>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* L_24 = ___1_ray;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_25;
|
|
L_25 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26 = V_0;
|
|
NullCheck(L_25);
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_27;
|
|
L_27 = Camera_ScreenPointToRay_m2887B9A49880B7AB670C57D66B67D6A6689FE315(L_25, L_26, NULL);
|
|
*(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00*)L_24 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:131>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* L_28 = ___1_ray;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_29;
|
|
L_29 = Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline(L_28, NULL);
|
|
float L_30 = L_29.___z;
|
|
V_1 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:132>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:133>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:134>
|
|
float* L_31 = ___3_distanceToClipPlane;
|
|
float L_32 = V_1;
|
|
bool L_33;
|
|
L_33 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline((0.0f), L_32, NULL);
|
|
if (L_33)
|
|
{
|
|
G_B10_0 = L_31;
|
|
goto IL_00ba;
|
|
}
|
|
G_B9_0 = L_31;
|
|
}
|
|
{
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_34;
|
|
L_34 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_34);
|
|
float L_35;
|
|
L_35 = Camera_get_farClipPlane_m1D7128B85B5DB866F75FBE8CEBA48335716B67BD(L_34, NULL);
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_36;
|
|
L_36 = VirtualFuncInvoker0< Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* >::Invoke(18, __this);
|
|
NullCheck(L_36);
|
|
float L_37;
|
|
L_37 = Camera_get_nearClipPlane_m5E8FAF84326E3192CB036BD29DCCDAF6A9861013(L_36, NULL);
|
|
float L_38 = V_1;
|
|
float L_39;
|
|
L_39 = fabsf(((float)(((float)il2cpp_codegen_subtract(L_35, L_37))/L_38)));
|
|
G_B11_0 = L_39;
|
|
G_B11_1 = G_B9_0;
|
|
goto IL_00bf;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
G_B11_0 = (std::numeric_limits<float>::infinity());
|
|
G_B11_1 = G_B10_0;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
*((float*)G_B11_1) = (float)G_B11_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:135>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68855
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsRaycaster_Raycast_mB29925EB33102E9BEAA76658F8A59CA666C78B1A (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, List_1_t8292C421BBB00D7661DC07462822936152BAB446* ___1_resultAppendList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:141>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00));
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:142>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:143>
|
|
V_2 = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:144>
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
bool L_1;
|
|
L_1 = PhysicsRaycaster_ComputeRayAndDistance_mCFEFA9D83EC1E63393454E383FFFEF89E14C173B(__this, L_0, (&V_0), (&V_1), (&V_2), NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:145>
|
|
return;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:147>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:149>
|
|
int32_t L_2 = __this->___m_MaxRayIntersections;
|
|
if (L_2)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:151>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_3;
|
|
L_3 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_3);
|
|
RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A* L_4 = L_3->___raycast3DAll;
|
|
if (L_4)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:152>
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:154>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_5;
|
|
L_5 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_5);
|
|
RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A* L_6 = L_5->___raycast3DAll;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_7 = V_0;
|
|
float L_8 = V_2;
|
|
int32_t L_9;
|
|
L_9 = PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B(__this, NULL);
|
|
NullCheck(L_6);
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_10;
|
|
L_10 = RaycastAllCallback_Invoke_mB30319766AF5F0D5145A6C0AFFEA829A31A5D4B7_inline(L_6, L_7, L_8, L_9, NULL);
|
|
__this->___m_Hits = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Hits), (void*)L_10);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:155>
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_11 = __this->___m_Hits;
|
|
NullCheck(L_11);
|
|
V_3 = ((int32_t)(((RuntimeArray*)L_11)->max_length));
|
|
goto IL_00b5;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:159>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_12;
|
|
L_12 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_12);
|
|
GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC* L_13 = L_12->___getRaycastNonAlloc;
|
|
if (L_13)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:160>
|
|
return;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:161>
|
|
int32_t L_14 = __this->___m_LastMaxRayIntersections;
|
|
int32_t L_15 = __this->___m_MaxRayIntersections;
|
|
if ((((int32_t)L_14) == ((int32_t)L_15)))
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:163>
|
|
int32_t L_16 = __this->___m_MaxRayIntersections;
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_17 = (RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*)SZArrayNew(RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8_il2cpp_TypeInfo_var, (uint32_t)L_16);
|
|
__this->___m_Hits = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Hits), (void*)L_17);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:164>
|
|
int32_t L_18 = __this->___m_MaxRayIntersections;
|
|
__this->___m_LastMaxRayIntersections = L_18;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:167>
|
|
ReflectionMethodsCache_t711B47CE11EA2092B94127FF8D3361AE2E4859F5* L_19;
|
|
L_19 = ReflectionMethodsCache_get_Singleton_m77EFD7AC0043333E09987BD601113B810453C42B(NULL);
|
|
NullCheck(L_19);
|
|
GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC* L_20 = L_19->___getRaycastNonAlloc;
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_21 = V_0;
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_22 = __this->___m_Hits;
|
|
float L_23 = V_2;
|
|
int32_t L_24;
|
|
L_24 = PhysicsRaycaster_get_finalEventMask_m20AD2327FE81B38A5853B23970A587EAA2ECCB1B(__this, NULL);
|
|
NullCheck(L_20);
|
|
int32_t L_25;
|
|
L_25 = GetRaycastNonAllocCallback_Invoke_m36411365E9622819DAB93D0BB0F169FEE99F07D9_inline(L_20, L_21, L_22, L_23, L_24, NULL);
|
|
V_3 = L_25;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:170>
|
|
int32_t L_26 = V_3;
|
|
if (!L_26)
|
|
{
|
|
goto IL_01a3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:172>
|
|
int32_t L_27 = V_3;
|
|
if ((((int32_t)L_27) <= ((int32_t)1)))
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:173>
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_28 = __this->___m_Hits;
|
|
int32_t L_29 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var);
|
|
RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* L_30 = ((RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_StaticFields*)il2cpp_codegen_static_fields_for(RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var))->___instance;
|
|
Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB(L_28, 0, L_29, L_30, Array_Sort_TisRaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5_mBF83A49E9B1F007DD08F7E076AF45D2AED7A45EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:175>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:175>
|
|
int32_t L_31 = V_3;
|
|
V_5 = L_31;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:177>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:178>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:179>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:180>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:181>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:182>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:183>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:184>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:185>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:186>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:187>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:188>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:189>
|
|
il2cpp_codegen_initobj((&V_7), sizeof(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023));
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_32 = __this->___m_Hits;
|
|
int32_t L_33 = V_4;
|
|
NullCheck(L_32);
|
|
Collider_t1CC3163924FCD6C4CC2E816373A929C1E3D55E76* L_34;
|
|
L_34 = RaycastHit_get_collider_m84B160439BBEAB6D9E94B799F720E25C9E2D444D(((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33))), NULL);
|
|
NullCheck(L_34);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35;
|
|
L_35 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_34, NULL);
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline((&V_7), L_35, NULL);
|
|
(&V_7)->___module = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_7)->___module), (void*)__this);
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_36 = __this->___m_Hits;
|
|
int32_t L_37 = V_4;
|
|
NullCheck(L_36);
|
|
float L_38;
|
|
L_38 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78(((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37))), NULL);
|
|
(&V_7)->___distance = L_38;
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_39 = __this->___m_Hits;
|
|
int32_t L_40 = V_4;
|
|
NullCheck(L_39);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_41;
|
|
L_41 = RaycastHit_get_point_m02B764612562AFE0F998CC7CFB2EEDE41BA47F39(((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40))), NULL);
|
|
(&V_7)->___worldPosition = L_41;
|
|
RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* L_42 = __this->___m_Hits;
|
|
int32_t L_43 = V_4;
|
|
NullCheck(L_42);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_44;
|
|
L_44 = RaycastHit_get_normal_mD8741B70D2039C5CAFC4368D4CE59D89562040B5(((L_42)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_43))), NULL);
|
|
(&V_7)->___worldNormal = L_44;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_45 = ___0_eventData;
|
|
NullCheck(L_45);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_46;
|
|
L_46 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_45, NULL);
|
|
(&V_7)->___screenPosition = L_46;
|
|
int32_t L_47 = V_1;
|
|
(&V_7)->___displayIndex = L_47;
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_48 = ___1_resultAppendList;
|
|
NullCheck(L_48);
|
|
int32_t L_49;
|
|
L_49 = List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_inline(L_48, List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_RuntimeMethod_var);
|
|
(&V_7)->___index = ((float)L_49);
|
|
(&V_7)->___sortingLayer = 0;
|
|
(&V_7)->___sortingOrder = 0;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_50 = V_7;
|
|
V_6 = L_50;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:190>
|
|
List_1_t8292C421BBB00D7661DC07462822936152BAB446* L_51 = ___1_resultAppendList;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_52 = V_6;
|
|
NullCheck(L_51);
|
|
List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_inline(L_51, L_52, List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:175>
|
|
int32_t L_53 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_53, 1));
|
|
}
|
|
|
|
IL_019a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:175>
|
|
int32_t L_54 = V_4;
|
|
int32_t L_55 = V_5;
|
|
if ((((int32_t)L_54) < ((int32_t)L_55)))
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
|
|
IL_01a3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:194>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68856
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RaycastHitComparer_Compare_mB5B88FE52375A12B781682C712FE58193F417A03 (RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* __this, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___0_x, RaycastHit_t6F30BD0B38B56401CA833A1B87BD74F2ACD2F2B5 ___1_y, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:202>
|
|
float L_0;
|
|
L_0 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&___0_x), NULL);
|
|
V_0 = L_0;
|
|
float L_1;
|
|
L_1 = RaycastHit_get_distance_m035194B0E9BB6229259CFC43B095A9C8E5011C78((&___1_y), NULL);
|
|
int32_t L_2;
|
|
L_2 = Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F((&V_0), L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 68857
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__ctor_mAB0536EE515BF2BD1B29BE3B39E8BA9E9CFE97C3 (RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68858
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastHitComparer__cctor_m772D29066D594105261C78CDDB5724BE28A773FA (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:199>
|
|
RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1* L_0 = (RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1*)il2cpp_codegen_object_new(RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var);
|
|
RaycastHitComparer__ctor_mAB0536EE515BF2BD1B29BE3B39E8BA9E9CFE97C3(L_0, NULL);
|
|
((RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_StaticFields*)il2cpp_codegen_static_fields_for(RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var))->___instance = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_StaticFields*)il2cpp_codegen_static_fields_for(RaycastHitComparer_t8EF6567C19BE9FB575E01A10941FBF7DE3D3DDF1_il2cpp_TypeInfo_var))->___instance), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_GameObjectException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObjectException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke_back(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_GameObjectException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObjectException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_pinvoke_cleanup(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_GameObjectException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObjectException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com_back(const RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_GameObjectException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023____m_GameObject_FieldInfo_var, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_GameObjectException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshal_com_cleanup(RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 68859
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1 (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:17>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_GameObject;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023*>(__this + _offset);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* _returnValue;
|
|
_returnValue = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68860
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:18>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___m_GameObject = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GameObject), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:18>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_AdjustorThunk (RuntimeObject* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023*>(__this + _offset);
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 68861
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:111>
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_0 = __this->___module;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 68862
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RaycastResult_Clear_m0E9DA70AC69CF143CEA8428AFC5BA552F99643AE (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:137>
|
|
RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline(__this, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:138>
|
|
__this->___module = (BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___module), (void*)(BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:139>
|
|
__this->___distance = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:140>
|
|
__this->___index = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:141>
|
|
__this->___depth = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:142>
|
|
__this->___sortingLayer = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:143>
|
|
__this->___sortingOrder = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:144>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
|
|
L_0 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
__this->___origin = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:145>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline(NULL);
|
|
__this->___worldNormal = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:146>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2;
|
|
L_2 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
__this->___worldPosition = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:147>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_3, NULL);
|
|
__this->___screenPosition = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:148>
|
|
__this->___displayIndex = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:150>
|
|
__this->___document = (UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___document), (void*)(UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:151>
|
|
__this->___element = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___element), (void*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:153>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void RaycastResult_Clear_m0E9DA70AC69CF143CEA8428AFC5BA552F99643AE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023*>(__this + _offset);
|
|
RaycastResult_Clear_m0E9DA70AC69CF143CEA8428AFC5BA552F99643AE(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 68863
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428 (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F310FF3EBC19D65A536D81F5D8C7093E972DCA0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12BA26D2F44E032136B3146CB230F4F45C5D45DE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral267CC871678BDBD934CBEA872CCB8F0C72D94E44);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A98949D28301C3B04EAD557512780C8D89A9607);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B2D9FCF87BC5B281C797365D6EE6332266A0B63);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30A589687C1FFF9D1706D115A0C664F2A49D9CEF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B1F6E5C644F13999A134C243088737884A6B5D2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62105F6FE34556E3D1EE1FB639ABDA34F249420F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral70F1769C72FCAF144F53009F7DA60ED467C29635);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94A94F7BD0F52C17BB06F5A6BB4E316DC4B69DF8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC10E23F5AEEE6BB98CA98C5F6720ED7A4B1DE089);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralED69593F1852661D74AD04003C30B937EE7310BF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B4_0 = NULL;
|
|
int32_t G_B4_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B4_3 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B3_0 = NULL;
|
|
int32_t G_B3_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B3_3 = NULL;
|
|
String_t* G_B5_0 = NULL;
|
|
int32_t G_B5_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B5_3 = NULL;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* G_B7_0 = NULL;
|
|
int32_t G_B7_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B7_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B7_3 = NULL;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* G_B6_0 = NULL;
|
|
int32_t G_B6_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B6_3 = NULL;
|
|
String_t* G_B8_0 = NULL;
|
|
int32_t G_B8_1 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B8_2 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* G_B8_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:157>
|
|
bool L_0;
|
|
L_0 = RaycastResult_get_isValid_m69957B97C041A9E3FAF4ECA82BB8099C9FA171CE(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:158>
|
|
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:160>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:161>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:162>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:163>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:164>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:165>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:166>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:167>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:168>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:169>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:170>
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:171>
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)24));
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral70F1769C72FCAF144F53009F7DA60ED467C29635);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = L_2;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B4_0 = L_5;
|
|
G_B4_1 = 1;
|
|
G_B4_2 = L_3;
|
|
G_B4_3 = L_3;
|
|
goto IL_002c;
|
|
}
|
|
G_B3_0 = L_5;
|
|
G_B3_1 = 1;
|
|
G_B3_2 = L_3;
|
|
G_B3_3 = L_3;
|
|
}
|
|
{
|
|
G_B5_0 = ((String_t*)(NULL));
|
|
G_B5_1 = G_B3_1;
|
|
G_B5_2 = G_B3_2;
|
|
G_B5_3 = G_B3_3;
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B4_0);
|
|
G_B5_0 = L_6;
|
|
G_B5_1 = G_B4_1;
|
|
G_B5_2 = G_B4_2;
|
|
G_B5_3 = G_B4_3;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
NullCheck(G_B5_2);
|
|
(G_B5_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_1), (String_t*)G_B5_0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = G_B5_3;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral12BA26D2F44E032136B3146CB230F4F45C5D45DE);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_9 = __this->___module;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_10 = L_9;
|
|
if (L_10)
|
|
{
|
|
G_B7_0 = L_10;
|
|
G_B7_1 = 3;
|
|
G_B7_2 = L_8;
|
|
G_B7_3 = L_8;
|
|
goto IL_0049;
|
|
}
|
|
G_B6_0 = L_10;
|
|
G_B6_1 = 3;
|
|
G_B6_2 = L_8;
|
|
G_B6_3 = L_8;
|
|
}
|
|
{
|
|
G_B8_0 = ((String_t*)(NULL));
|
|
G_B8_1 = G_B6_1;
|
|
G_B8_2 = G_B6_2;
|
|
G_B8_3 = G_B6_3;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
NullCheck(G_B7_0);
|
|
String_t* L_11;
|
|
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3, G_B7_0);
|
|
G_B8_0 = L_11;
|
|
G_B8_1 = G_B7_1;
|
|
G_B8_2 = G_B7_2;
|
|
G_B8_3 = G_B7_3;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
NullCheck(G_B8_2);
|
|
(G_B8_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B8_1), (String_t*)G_B8_0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = G_B8_3;
|
|
NullCheck(L_12);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral94A94F7BD0F52C17BB06F5A6BB4E316DC4B69DF8);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_12;
|
|
float* L_14 = (float*)(&__this->___distance);
|
|
String_t* L_15;
|
|
L_15 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972(L_14, NULL);
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_15);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = L_13;
|
|
NullCheck(L_16);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralC10E23F5AEEE6BB98CA98C5F6720ED7A4B1DE089);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = L_16;
|
|
float* L_18 = (float*)(&__this->___index);
|
|
String_t* L_19;
|
|
L_19 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972(L_18, NULL);
|
|
NullCheck(L_17);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)L_19);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = L_17;
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral4B1F6E5C644F13999A134C243088737884A6B5D2);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21 = L_20;
|
|
int32_t* L_22 = (int32_t*)(&__this->___depth);
|
|
String_t* L_23;
|
|
L_23 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_22, NULL);
|
|
NullCheck(L_21);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)L_23);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24 = L_21;
|
|
NullCheck(L_24);
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral62105F6FE34556E3D1EE1FB639ABDA34F249420F);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_24;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_26 = __this->___worldNormal;
|
|
V_0 = L_26;
|
|
String_t* L_27;
|
|
L_27 = Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_inline((&V_0), NULL);
|
|
NullCheck(L_25);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)L_27);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_25;
|
|
NullCheck(L_28);
|
|
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral30A589687C1FFF9D1706D115A0C664F2A49D9CEF);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_29 = L_28;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30 = __this->___worldPosition;
|
|
V_0 = L_30;
|
|
String_t* L_31;
|
|
L_31 = Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_inline((&V_0), NULL);
|
|
NullCheck(L_29);
|
|
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)L_31);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = L_29;
|
|
NullCheck(L_32);
|
|
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteralED69593F1852661D74AD04003C30B937EE7310BF);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_33 = L_32;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = __this->___screenPosition;
|
|
V_1 = L_34;
|
|
String_t* L_35;
|
|
L_35 = Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline((&V_1), NULL);
|
|
NullCheck(L_33);
|
|
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)L_35);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_36 = L_33;
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral267CC871678BDBD934CBEA872CCB8F0C72D94E44);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_37 = L_36;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_38 = __this->___module;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker0< int32_t >::Invoke(20, L_38);
|
|
V_2 = L_39;
|
|
String_t* L_40;
|
|
L_40 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_2), NULL);
|
|
NullCheck(L_37);
|
|
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)L_40);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = L_37;
|
|
NullCheck(L_41);
|
|
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteral0F310FF3EBC19D65A536D81F5D8C7093E972DCA0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_42 = L_41;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* L_43 = __this->___module;
|
|
NullCheck(L_43);
|
|
int32_t L_44;
|
|
L_44 = VirtualFuncInvoker0< int32_t >::Invoke(21, L_43);
|
|
V_2 = L_44;
|
|
String_t* L_45;
|
|
L_45 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_2), NULL);
|
|
NullCheck(L_42);
|
|
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (String_t*)L_45);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_42;
|
|
NullCheck(L_46);
|
|
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (String_t*)_stringLiteral2A98949D28301C3B04EAD557512780C8D89A9607);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47 = L_46;
|
|
int32_t* L_48 = (int32_t*)(&__this->___sortingLayer);
|
|
String_t* L_49;
|
|
L_49 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_48, NULL);
|
|
NullCheck(L_47);
|
|
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (String_t*)L_49);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = L_47;
|
|
NullCheck(L_50);
|
|
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (String_t*)_stringLiteral2B2D9FCF87BC5B281C797365D6EE6332266A0B63);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_51 = L_50;
|
|
int32_t* L_52 = (int32_t*)(&__this->___sortingOrder);
|
|
String_t* L_53;
|
|
L_53 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_52, NULL);
|
|
NullCheck(L_51);
|
|
(L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (String_t*)L_53);
|
|
String_t* L_54;
|
|
L_54 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_51, NULL);
|
|
return L_54;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = RaycastResult_ToString_m0267000494B09783ABD507B9329ADB01FBBC5428(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 68864
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Awake_mDF9D1A4867C8E730C59A7CAE97709CA9B8F3A0F2 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:9>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68865
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnEnable_m8989ABF5C038905A68E5536BED2E6FFAF8767FFC (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:12>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68866
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Start_mB12643ED6D859CD3682B4BF5B9CA7F72E8A72B45 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:15>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68867
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDisable_m18D5A0B93F65FB50F4D6CE8197EC07F3452C5DDE (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:18>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68868
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDestroy_mF225CF9163823F19BE5E2B2735D35898A20D608B (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:21>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68869
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIBehaviour_IsActive_m9E79A0650C81204AF9A861BBBA8685D9563AE9C4 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:28>
|
|
bool L_0;
|
|
L_0 = Behaviour_get_isActiveAndEnabled_mEB4ECCE9761A7016BC619557CEFEA1A30D3BF28A(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68870
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnRectTransformDimensionsChange_m86A6D20E0EBF41CDB89DD1E87F23624263B68159 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:42>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68871
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnBeforeTransformParentChanged_m980EF41E33A7541BD6C65AEC305B25A19C9CA30F (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:45>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68872
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnTransformParentChanged_mAD56D3C6049A1746F00DC2643D1666F7DE921384 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:48>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68873
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnDidApplyAnimationProperties_mE011A7C92134E28AE2AF3A0EBFB2E4AB88ABE748 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:51>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68874
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasGroupChanged_m592FA8BF5238E712E73E2D99258EE0DB6D88D84B (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:54>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68875
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_OnCanvasHierarchyChanged_mCAC018CB33FA00E857288B64E3722226638A1229 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:60>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68876
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIBehaviour_IsDestroyed_m2E9FFA28686D1C82697FB467002541CC58A06BCA (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIBehaviour.cs:73>
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(__this, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68877
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour__ctor_m24C66A65DDD996E779871C6655CF11B871F11337 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// Method Definition Index: 37610
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_r;
|
|
__this->___r = L_0;
|
|
float L_1 = ___1_g;
|
|
__this->___g = L_1;
|
|
float L_2 = ___2_b;
|
|
__this->___b = L_2;
|
|
float L_3 = ___3_a;
|
|
__this->___a = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37871
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37896
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
float L_8 = V_0;
|
|
float L_9 = V_0;
|
|
float L_10 = V_1;
|
|
float L_11 = V_1;
|
|
V_2 = (bool)((((float)((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_8, L_9)), ((float)il2cpp_codegen_multiply(L_10, L_11))))) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 68261
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Shadow_get_effectColor_m6E7751BB8792C85BE9DAD0D133D787317D9CF59B_inline (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:40>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_EffectColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37641
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B Color32_op_Implicit_m79AF5E0BDE9CE041CAC4D89CBFA66E71C6DD1B70_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method)
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_c;
|
|
float L_1 = L_0.___r;
|
|
float L_2;
|
|
L_2 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_1, NULL);
|
|
float L_3;
|
|
L_3 = bankers_roundf(((float)il2cpp_codegen_multiply(L_2, (255.0f))));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___0_c;
|
|
float L_5 = L_4.___g;
|
|
float L_6;
|
|
L_6 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_5, NULL);
|
|
float L_7;
|
|
L_7 = bankers_roundf(((float)il2cpp_codegen_multiply(L_6, (255.0f))));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = ___0_c;
|
|
float L_9 = L_8.___b;
|
|
float L_10;
|
|
L_10 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_9, NULL);
|
|
float L_11;
|
|
L_11 = bankers_roundf(((float)il2cpp_codegen_multiply(L_10, (255.0f))));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = ___0_c;
|
|
float L_13 = L_12.___a;
|
|
float L_14;
|
|
L_14 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_13, NULL);
|
|
float L_15;
|
|
L_15 = bankers_roundf(((float)il2cpp_codegen_multiply(L_14, (255.0f))));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline((&L_16), (uint8_t)il2cpp_codegen_cast_floating_point<uint8_t, int32_t, float>(L_3), (uint8_t)il2cpp_codegen_cast_floating_point<uint8_t, int32_t, float>(L_7), (uint8_t)il2cpp_codegen_cast_floating_point<uint8_t, int32_t, float>(L_11), (uint8_t)il2cpp_codegen_cast_floating_point<uint8_t, int32_t, float>(L_15), NULL);
|
|
V_0 = L_16;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_17 = V_0;
|
|
return L_17;
|
|
}
|
|
}
|
|
// Method Definition Index: 68263
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Shadow_get_effectDistance_mA87EB50066AFEBC13C69D27376E50033930FA58F_inline (Shadow_tCAA59FE9D6B0DC6DCC505E8E22D8D3C05BE6DE95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Core/VertexModifiers/Shadow.cs:54>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_EffectDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68297
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_startColor_m9E33FB5C5F76BCF49A3B20201CD8006DBFB46012_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:42>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_StartColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68298
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_startColor_mD22349343421BD44F0C31E537718ED53BE4850DA_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:43>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_value;
|
|
__this->___m_StartColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:43>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68299
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ColorTween_get_targetColor_m240A7018BDC3B44AB44BA674AA16C39960BC23FF_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:48>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = __this->___m_TargetColor;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68300
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_targetColor_m7D8E74B32AC3A9C17C3192096003B12A1500D749_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:49>
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_value;
|
|
__this->___m_TargetColor = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:49>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ColorTween_get_tweenMode_m06B83FB6E45A807F83FDD762A8241D478FD13F8B_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:54>
|
|
int32_t L_0 = __this->___m_TweenMode;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68302
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_tweenMode_m105EEB49F6632D6D105C63DA9919385233A5D4DE_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:55>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_TweenMode = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:55>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68303
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ColorTween_get_duration_m40D8F08C13FF2FE7583746934C6A017A93398548_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:60>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68304
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_duration_m1C278AB5A90B5C108CEB4870CAC90A9A9EAC19CB_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:61>
|
|
float L_0 = ___0_value;
|
|
__this->___m_Duration = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:61>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68305
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ColorTween_get_ignoreTimeScale_mEDB15A4ADE3A0B9487D240964A7571247F974708_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:66>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68306
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ColorTween_set_ignoreTimeScale_m060FF3CED06F73EA1F555A37999D61DC58F99927_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:67>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_IgnoreTimeScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:67>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37621
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_Lerp_mE79F87889843ECDC188E4CB5B5E1F1B2256E5EBE_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
float L_0 = ___2_t;
|
|
float L_1;
|
|
L_1 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_0, NULL);
|
|
___2_t = L_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___0_a;
|
|
float L_3 = L_2.___r;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___1_b;
|
|
float L_5 = L_4.___r;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = ___0_a;
|
|
float L_7 = L_6.___r;
|
|
float L_8 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_9 = ___0_a;
|
|
float L_10 = L_9.___g;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_11 = ___1_b;
|
|
float L_12 = L_11.___g;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_13 = ___0_a;
|
|
float L_14 = L_13.___g;
|
|
float L_15 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_16 = ___0_a;
|
|
float L_17 = L_16.___b;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_18 = ___1_b;
|
|
float L_19 = L_18.___b;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_20 = ___0_a;
|
|
float L_21 = L_20.___b;
|
|
float L_22 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_23 = ___0_a;
|
|
float L_24 = L_23.___a;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_25 = ___1_b;
|
|
float L_26 = L_25.___a;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_27 = ___0_a;
|
|
float L_28 = L_27.___a;
|
|
float L_29 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_30;
|
|
memset((&L_30), 0, sizeof(L_30));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_30), ((float)il2cpp_codegen_add(L_3, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_5, L_7)), L_8)))), ((float)il2cpp_codegen_add(L_10, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_12, L_14)), L_15)))), ((float)il2cpp_codegen_add(L_17, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_19, L_21)), L_22)))), ((float)il2cpp_codegen_add(L_24, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_26, L_28)), L_29)))), NULL);
|
|
V_0 = L_30;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_31 = V_0;
|
|
return L_31;
|
|
}
|
|
}
|
|
// Method Definition Index: 68309
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ColorTween_GetIgnoreTimescale_m679C83012235779A37DCCD0AA75CD6B0DAE5BCFA_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:100>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68310
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float ColorTween_GetDuration_mC40D6776769FDB79C7ADC42D59F059A2A9AE2F66_inline (ColorTween_t15AEF379B51AC7DF9B23C440A938DCF32DA3FBB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:105>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68313
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_startValue_mCA121483CCF4C8F10991BB3306E3F2769EBB3A3C_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:130>
|
|
float L_0 = __this->___m_StartValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68314
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_startValue_m43B55D74B7B34D9C32439D6004F306BFA18E4A1A_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:131>
|
|
float L_0 = ___0_value;
|
|
__this->___m_StartValue = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:131>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68315
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_targetValue_m6EFBD9EAB206F145959832269DC24C4B68FEE6B1_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:136>
|
|
float L_0 = __this->___m_TargetValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68316
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_targetValue_m4AE44CE862797E898CDE00A1B7D6A33CE0AFDCFB_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:137>
|
|
float L_0 = ___0_value;
|
|
__this->___m_TargetValue = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:137>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68317
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_get_duration_mB1496D38A618FF8282205FD3AA14CA9C6D76454D_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:142>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68318
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_duration_m40E10A7B796B4B54FFB8DA3889B09557BEC98456_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:143>
|
|
float L_0 = ___0_value;
|
|
__this->___m_Duration = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:143>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68319
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FloatTween_get_ignoreTimeScale_m6F6BDCBD59C19E68572370F9FE3D7373B4212B3B_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:148>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68320
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FloatTween_set_ignoreTimeScale_m09041A4110040F9C86D24E1B4DED6E6B7FB206A8_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:149>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_IgnoreTimeScale = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:149>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37853
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
float L_2 = ___0_a;
|
|
float L_3 = ___2_t;
|
|
float L_4;
|
|
L_4 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_3, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_1, L_2)), L_4))));
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
float L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 68323
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FloatTween_GetIgnoreTimescale_mA2463285D4524B70A46776FC60C4F939B3BCD045_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:171>
|
|
bool L_0 = __this->___m_IgnoreTimeScale;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68324
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float FloatTween_GetDuration_m3E981D91F15C36ED6F241117665E703F2BD2A6D4_inline (FloatTween_t11548A42FCB3B005DD83D77A529119381B2BB64A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/UI/Animation/CoroutineTween.cs:176>
|
|
float L_0 = __this->___m_Duration;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14930
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* BaseRuntimePanel_get_selectableGameObject_m65B833EB1F9A3E071A5161AE94583D9609B930EF_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_SelectableGameObject;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 19081
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* UIElementsRuntimeUtility_get_activeEventSystem_mEE885CA6E7EB77FFDCE9A63B4E5C7963548233E0_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_0 = ((UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsRuntimeUtility_t40591BFE969CBBBB42A0B326B4DDE04637D7279F_il2cpp_TypeInfo_var))->___U3CactiveEventSystemU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68605
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_currentSelectedGameObject_mD606FFACF3E72755298A523CBB709535CF08C98A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:102>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_CurrentSelected;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 13340
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* EventBase_get_elementTarget_mF6CFD6372FB247718797DB8927654F781821B94D_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CelementTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14848
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool BaseVisualElementPanel_get_isFlat_m4B9D7849C0774D56CB90F34D433C2F2AE6ECFFA4_inline (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_IsFlat;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68378
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_pointerId_mD4E22379BC076C3D75E103BC55ACFBA81BEF59BE_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:451>
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68516
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerCurrentRaycast_m1C6B7D707CEE9C6574DD443289D90102EDC7A2C4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:90>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerCurrentRaycastU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68859
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* RaycastResult_get_gameObject_m77014B442B9E2D10F2CC3AEEDC07AA95CDE1E2F1_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:17>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_GameObject;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68518
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 PointerEventData_get_pointerPressRaycast_mEB1B974F5543F78162984E2924EF908E18CE3B5D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:95>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = __this->___U3CpointerPressRaycastU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68388
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_position_m6CAC16F2273B6222BB18583B11B85BE3ECA8BB45_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:456>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68493
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 AxisEventData_get_moveVector_m7979B5CF62B6B3B0C5F2DA8B328C499ED80ECC41_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:11>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CmoveVectorU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68540
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:176>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscrollDeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68602
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* EventSystem_get_currentInputModule_m30559FCECCCE1AAD97D801968B8BD1C483FBF7AC_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:85>
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* L_0 = __this->___m_CurrentInputModule;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37893
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), NULL);
|
|
V_0 = L_6;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 37899
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_4), L_1, L_3, (0.0f), NULL);
|
|
V_0 = L_4;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 68598
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_sendNavigationEvents_m8BA21E58E633B2C5B477E49DAABAD3C97A8158AF_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:62>
|
|
bool L_0 = __this->___m_sendNavigationEvents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68433
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementUnderPointer_mFD842306621DDC700B678892D68AB6525A00816E_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:487>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CelementUnderPointerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37898
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_v;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_v;
|
|
float L_3 = L_2.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), L_1, L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 68416
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_modifiers_m31E21D875E7EF1A47DB29878AA76698B0047BD6D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:470>
|
|
int32_t L_0 = __this->___U3CmodifiersU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68379
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pointerId_m1BFCE40A5AF978254069B94292CADC4B39CB4E6B_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:451>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpointerIdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68381
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pointerType_m1BD8CE6C878A3FFB6441A60302634515525E1050_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:452>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CpointerTypeU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerTypeU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68383
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_isPrimary_m90DD30E4F4B1641C8F800C4EF04DF078F7F37D2E_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:453>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisPrimaryU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68528
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:122>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68424
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_screenPosition_m2A9C18D1855EC49528726A531D804DB3C9FC2C02_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:482>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CscreenPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68426
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_screenDelta_mE495E40F0372DFDB17BFE2B3DA4DC8FB8341498D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:483>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CscreenDeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68395
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_deltaTime_mEECBC843D749F429B1F72559BB488BE17BBFC3E0_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:459>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CdeltaTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68548
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_pressure_m0745482FB0BD942F9615009C647765E3000F12C3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:204>
|
|
float L_0 = __this->___U3CpressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68399
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pressure_m1D036CF601B6EEB97DBDB8DB75F0923D39303FD9_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:461>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CpressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68550
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_tangentialPressure_m76ED73E8545F01660D6196DCEBAA6C63DDDE374C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:209>
|
|
float L_0 = __this->___U3CtangentialPressureU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68401
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_tangentialPressure_m7ADB233CDA686FCB10A995F2A6826EE5F54AB36D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:462>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtangentialPressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68552
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_altitudeAngle_m3D72F9EF9FF2238B1FE2E6B5870F8B0DD14B90FE_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:217>
|
|
float L_0 = __this->___U3CaltitudeAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68403
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_altitudeAngle_m8B963C51BB5DB8A14A943F4B1BEC39B175ABABEB_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:463>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CaltitudeAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68554
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_azimuthAngle_mBFF5F23355EEAB911D8FF55965CCFF9CB3DD3F42_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:225>
|
|
float L_0 = __this->___U3CazimuthAngleU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68405
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_azimuthAngle_m404D73D4BAF6C658A52B29DD2C1D5FBEDC174139_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:464>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CazimuthAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68556
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_twist_m15A76D34614115A290B8FA90799752FBE00580B7_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:230>
|
|
float L_0 = __this->___U3CtwistU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68407
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_twist_mCA0ECFFE48E1771A1540212CABB34326C7AD6B5D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:465>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtwistU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68558
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_tilt_m9F3341B8386EF98ECB4AA1F104DE90387DE25AF9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:235>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CtiltU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68409
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_tilt_m48167AF2DE4D07C779878FBB802ED4995D2176D9_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:466>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CtiltU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68560
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_penStatus_mFDF49B3339E3F3A01407BE25CA2B3DF2F0E10996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:240>
|
|
int32_t L_0 = __this->___U3CpenStatusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68411
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_penStatus_m239C34E387BA4214C671F7F5E521E9840CBF9A89_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:467>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpenStatusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68562
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radius_mA89C671E5F8CA0D0684113CF05E7FAF2961BF7D0_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:248>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68413
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_radius_m387840E4830548F1B1DA865A5A062062D86590EC_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:468>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68564
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_radiusVariance_m5A3BC7FD6B455570A6535911E0F72F88B0F598BB_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:255>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CradiusVarianceU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68415
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_radiusVariance_m2627A414E6EFAE8132E2B4FBAC008D830CF0458D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:469>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusVarianceU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68417
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_modifiers_mB339D7800998DB09F5D8B47B7DDD365897FD61C5_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:470>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmodifiersU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68385
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_button_mBD5A4ADBC9FB28B3D78019091D0279C18AC5F248_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:454>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68397
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_clickCount_m87C44B61E5E2154178CD4D4CD931C2C463971B89_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:460>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CclickCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68546
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_button_mA8CBDAF2E16927E6952BC60040D56630BCC95B0B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:194>
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37837
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
if ((((int32_t)L_0) > ((int32_t)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 68538
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_clickCount_m3977011C09DB9F904B1AAC3708B821B8D6AC0F9F_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:171>
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 10730
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ClickDetector_get_s_DoubleClickTime_mC3981303DF2BC78A33219109765E2EBB183DD1B2_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_StaticFields*)il2cpp_codegen_static_fields_for(ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var))->___U3Cs_DoubleClickTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68396
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_clickCount_m1E9AE0EF81D8BC131012E0DEE2C4E169C8B1EE06_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:460>
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68384
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEvent_get_button_m72275A3B433F9433FAAC939B5776E908CBAC488C_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:454>
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68387
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_pressedButtons_m0B5199481431978AC07CFEAE090907BA5E70FA68_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:455>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpressedButtonsU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37774
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_a;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_b;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_a;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_b;
|
|
float L_11 = L_10.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), ((float)il2cpp_codegen_subtract(L_9, L_11)), NULL);
|
|
V_0 = L_12;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 36421
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Ray__ctor_mE298992FD10A3894C38373198385F345C58BD64C_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_origin, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_direction, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_origin;
|
|
__this->___m_Origin = L_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline((&___1_direction), NULL);
|
|
__this->___m_Direction = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68428
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_worldRay_m8E3141A725E8C1E6B3F906810995A378E351CF47_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:484>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_0 = ___0_value;
|
|
__this->___U3CworldRayU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68430
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_document_mBF57FD8FA5CDA8228302B2644A0CC582F6122441_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:485>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_0 = ___0_value;
|
|
__this->___U3CdocumentU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdocumentU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68434
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_elementUnderPointer_mC3F0621FA2EB4EBFAF01E784B196FF732B7E7CBF_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:487>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CelementUnderPointerU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CelementUnderPointerU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68423
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenPosition_m8105D500F8CEAFC09EF630F23DC82F096AAAA81D_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:482>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CscreenPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68425
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEvent_get_screenDelta_m1C0EDEA11E57C9CD08B6A5862046148C81BF5ACA_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:483>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CscreenDeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68432
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_elementTarget_m91A332849B9E0D0AFF3E2D49903AF1616588E494_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:486>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CelementTargetU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CelementTargetU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68429
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* PointerEvent_get_document_mA98EAE368A020E666F35CF6C8688296BC3815F0F_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:485>
|
|
UIDocument_t4186BEBCC01278F63B895274AA08AD9ADFBF4C77* L_0 = __this->___U3CdocumentU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 13229
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_0 = __this->___U3CpointerStateU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68431
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* PointerEvent_get_elementTarget_m739E8E3984E39BAA54EA101AF1B2EA583DC08F85_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:486>
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CelementTargetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68427
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 PointerEvent_get_worldRay_m0FBCFCF68610E32B815515962312C5FC68DD44EF_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:484>
|
|
Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 L_0 = __this->___U3CworldRayU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68389
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_position_m24E0958379E88BDD173E563CC00B2523E77EE051_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:456>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68391
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_localPosition_m759E75018F6729AA6744C93A57907ACEB390727C_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:457>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3ClocalPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68393
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEvent_set_deltaPosition_m12E7B298A9EEDC1D623E72EA99758204F16B4A11_inline (PointerEvent_t54CCE1D636377610727DCD7F66F0FEBCE53EF6FB* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/PanelEventHandler.cs:458>
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CdeltaPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 36422
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_origin_m97604A8F180316A410DCD77B7D74D04522FA1BA6_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Origin;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 36424
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Ray_get_direction_m21C2D22D3BD4A683BD4DC191AB22DD05F5EC2086_inline (Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Direction;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37776
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), NULL);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 37773
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Addition_m78C0EC70CB66E8DCAC225743D82B268DAEE92067_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_a;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_b;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_a;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_b;
|
|
float L_11 = L_10.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_add(L_1, L_3)), ((float)il2cpp_codegen_add(L_5, L_7)), ((float)il2cpp_codegen_add(L_9, L_11)), NULL);
|
|
V_0 = L_12;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 14932
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BaseRuntimePanel_get_sortingPriority_m7B035930943248B472823F7E8128928000002155_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_SortingPriority;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37847
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline (float ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
float L_0 = ___0_f;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = floor(((double)L_0));
|
|
V_0 = il2cpp_codegen_cast_double_to_int<int32_t>(L_1);
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 14945
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BaseRuntimePanel_get_targetDisplay_mF2B0D9BB8A234F9273185DFAA4EC014E86CEDFD3_inline (BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CtargetDisplayU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68860
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RaycastResult_set_gameObject_mCFEB66C0E3F01AC5E55040FE8BEB16E40427BD9E_inline (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:18>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___m_GameObject = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GameObject), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycastResult.cs:18>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68454
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_overrideUIToolkitEvents_mC49A797AE660760974A355D7757D64983E145DA2_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:47>
|
|
bool L_0 = __this->___m_OverrideUIToolkitEvents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68462
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UIToolkitInteroperabilityBridge_get_createDefaultPanelComponents_mA5014E718D4717CE3A3C24C1D9D6741ACF08A662_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:79>
|
|
bool L_0 = __this->___m_CreateDefaultPanelComponents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14421
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_defaultEventCameraIsMainCamera_mEB9F3929DC48E35FA72CC155F4705B3811A471E1_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_DefaultEventCameraIsMainCamera;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14422
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* Settings_get_eventCameras_m1F42696F9FB66F7A9984BF3DA154B0C14807706F_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CameraU5BU5D_t1506EBA524A07AD1066D6DD4D7DFC6721F1AC26B* L_0 = __this->___m_EventCameras;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68488
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WorldDocumentRaycaster_set_camera_m89E90A43F11F9F0E646BB4D1C04D9FFD2EF577E8_inline (WorldDocumentRaycaster_tCE1251A18B07C55A5C12F475B4BFA5D6BA00F5C4* __this, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/WorldDocumentRaycaster.cs:30>
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_0 = ___0_value;
|
|
__this->___m_EventCamera = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventCamera), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 14396
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* PanelInputConfiguration_get_current_m13B744D3E766E402A99620D88EDC8838A484701A_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* L_0 = ((PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_StaticFields*)il2cpp_codegen_static_fields_for(PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14417
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 Settings_get_Default_m218C2EEC536685296AC73BA0FF35D9D1864949B6_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var);
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 L_0 = ((Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_StaticFields*)il2cpp_codegen_static_fields_for(Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1_il2cpp_TypeInfo_var))->___s_Default;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14398
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 PanelInputConfiguration_get_settings_mBE6F1560B5D64E876D61283A98F5737FFC1DCCD4_inline (PanelInputConfiguration_t8E0ECB52281127B42D4D64CC1150DDB07328E96B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1 L_0 = __this->___m_Settings;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14423
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Settings_get_panelInputRedirection_m3947F9DA2962E61BBC71CE0FD73DA7D7BCF40930_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_PanelInputRedirection;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14418
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_processWorldSpaceInput_m9D58443229B696D722269D40E36079E6C82290D9_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_ProcessWorldSpaceInput;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14419
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB Settings_get_interactionLayers_mBE3C3B439D7CA11F3C00998F95A33B0E22A12081_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayerMask_t97CB6BDADEDC3D6423C7BCFEA7F86DA2EC6241DB L_0 = __this->___m_InteractionLayers;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14420
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Settings_get_maxInteractionDistance_mA010BC20942100B9988FC2588C6BAA822F1D5872_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_MaxInteractionDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 14424
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Settings_get_autoCreatePanelComponents_mDDD13C30AB87408A47723B1D98BB99A7A3FFEF04_inline (Settings_t3A11FC694398E381746AA3573D7A54EBF897AFB1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_AutoCreatePanelComponents;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68618
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* EventSystem_get_uiToolkitInterop_mE9337C3916705AFEA95AEB201E7946936BCA4908_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:335>
|
|
UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* L_0 = __this->___m_UIToolkitInterop;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68460
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float UIToolkitInteroperabilityBridge_get_worldPickingMaxDistance_m8DA2161842E394D83D784FD01090EB346A22C32B_inline (UIToolkitInteroperabilityBridge_t8E98EE5D73E8CCAA894A1BE50049E2A06E592CDD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/UIElements/UIToolkitInteroperabilityBridge.cs:73>
|
|
float L_0 = __this->___m_WorldPickingMaxDistance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37834
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) < ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 37777
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Multiply_m7F3B0FA9256CE368D7636558EFEFC4AB0E1A0F41_inline (float ___0_d, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_a, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___1_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___0_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___1_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___0_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___0_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), ((float)il2cpp_codegen_multiply(L_7, L_8)), NULL);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 37900
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ((Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields*)il2cpp_codegen_static_fields_for(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var))->___zeroVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68494
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveVector_mC744F8B3519A6EE5E60482E8FB39641181C62914_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:11>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CmoveVectorU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68496
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AxisEventData_set_moveDir_mD82A8AEB52FEFAC48CA064BB77A381B9A3E1B24B_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:16>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmoveDirU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68521
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_eligibleForClick_m360125CB3E348F3CF64C39F163467A842E479C21_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:102>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CeligibleForClickU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68523
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_displayIndex_mCEBCECBC08CCF4D1770189B0992B8A1847A8137D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:107>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdisplayIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68525
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerId_m5B5FF54AB1DE7BD4454022A7C0535C618049BD9B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:112>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpointerIdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68527
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_position_m66E8DFE693F550372E6B085C6E2F887FDB092FAA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:117>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68529
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_delta_mD200AF7CCAEAD92D947091902AF864CB4ACE0F1D_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:122>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CdeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68531
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressPosition_m85544FBAB798DABE70067508294A6C4841A95379_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:127>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CpressPositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68537
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickTime_m93D27EB35F490AC9100369A23002F09148F85996_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:145>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CclickTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68539
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_clickCount_m0A87C2C367987492F310786DC9C3DF1616EA4D49_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:171>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CclickCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68541
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_scrollDelta_m58007CAE9A9B333B82C36B9E5431FBD926CB556C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:176>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CscrollDeltaU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68543
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_useDragThreshold_m63FE2034E4B240F1A0A902B1EB893B3DBA2D848B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:184>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CuseDragThresholdU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68545
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_dragging_m43982B3F95F05986F40A736914CFBC45D2A9BB8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:189>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CdraggingU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68547
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_button_m77DA0291BA43CB813FE83752D826AF3982C81601_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:194>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68549
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pressure_m4471D0EEC22789490EA12FE6521A620CF60A37CA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:204>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CpressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68551
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_tangentialPressure_m66792087B044033F0FF0FA4B2BA316233755EEF4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:209>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtangentialPressureU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68553
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_altitudeAngle_m20F2AF2ADB0A20BF20C4B9A6AFE2566A0F4C8BD1_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:217>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CaltitudeAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68555
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_azimuthAngle_mBE64BAD91A9A47E9D9163E25E9E0D1E677B0FC1B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:225>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CazimuthAngleU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68557
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_twist_mE49469F4F730BA43906F2167E7ADDB9CB2F946E4_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:230>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtwistU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68559
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_tilt_m51D7B90D6C480D7C39217BCBADBBE544D722B034_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:235>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CtiltU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68561
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_penStatus_m875854DF53437651CADFA190BCE3ED14FF4D65BD_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:240>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpenStatusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68563
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_radius_mB2F29A6E8A14D1DE1162ECAB3398B539FEF83ABE_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:248>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68565
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_radiusVariance_m62367BD7EE689AFF5BB5394D984E4AF026A2D15E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:255>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CradiusVarianceU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37884
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x;
|
|
float L_1 = __this->___x;
|
|
float L_2 = __this->___y;
|
|
float L_3 = __this->___y;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3))));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 68509
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_lastPress_m0B9EDFBA95B410FBD8CA2A82306ED3EA6696AE64_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:70>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3ClastPressU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ClastPressU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68526
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:117>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37877
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector2_ToString_mB47B29ECB21FA3A4ACEABEFA18077A5A6BBCCB27_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE_inline(__this, (String_t*)NULL, (RuntimeObject*)NULL, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68520
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_eligibleForClick_m4B01A1640C694FD7421BDFB19CF763BC85672C8E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:102>
|
|
bool L_0 = __this->___U3CeligibleForClickU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68506
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerEnter_m6CE76D5C0C36C4666CDDE348B57885C52D495A4B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:62>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerEnterU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68575
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerPress_mEE815DDB67E40AA587090BCCE0E3CABA6405C50A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:331>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_PointerPress;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68508
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_lastPress_m46720C62503214A44EE947679A8BA307BC2AEEDC_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:70>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3ClastPressU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68512
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerDrag_m36BF08A32216845A8095C5F74DFE6C9959A11E96_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:80>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerDragU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68542
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_useDragThreshold_m3ED1F39E71630C9AB1F340C92F8FA39AA489E1C5_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:184>
|
|
bool L_0 = __this->___U3CuseDragThresholdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68522
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_displayIndex_m8B2088561EA850F1CAD124797F0F6E3756F584FA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:107>
|
|
int32_t L_0 = __this->___U3CdisplayIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68688
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* ExecuteEvents_get_deselectHandler_m9CDD5F8B5269067CA38247DDD41B521A8FCEDFEF_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:216>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t761440E218DEDDDF4267213CA0E8B1C52C858690* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DeselectHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68687
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* ExecuteEvents_get_selectHandler_mCF588328D11715E24BC54DF464EF4F3D694B3939_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:211>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tD8870260CD9964C568C228D51BBD578A792137EA* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SelectHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68829
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* RaycasterManager_GetRaycasters_m876BA9CA8DB8E6D351DC4A97473753503B7017DE_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/RaycasterManager.cs:22>
|
|
il2cpp_codegen_runtime_class_init_inline(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var);
|
|
List_1_t02E640552264E3DEAE676267B620815D33BCD0DF* L_0 = ((RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_StaticFields*)il2cpp_codegen_static_fields_for(RaycasterManager_tE359EBDE4F0EF3681A6E3662B340AC4D53502074_il2cpp_TypeInfo_var))->___s_Raycasters;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68634
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventTrigger_set_triggers_m5F861F79BBA48C26CFB83BEA7E25580B21BDA815_inline (EventTrigger_tAEBFB7A16CA99343EA87722F78884BF8646BAE1B* __this, List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:209>
|
|
List_1_tA70D786D375D198C77EBB594AE632A6DFC82A440* L_0 = ___0_value;
|
|
__this->___m_Delegates = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Delegates), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventTrigger.cs:209>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68567
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_fullyExited_mDC23BED1E8A933E25E955A25109494A5D9F25C74_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:259>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfullyExitedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68674
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* ExecuteEvents_get_pointerMoveHandler_m996E37A7026F03F8791EFBB69B72DE1FC4FA3A60_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:146>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t86320D8073B1F956C9EE0FB8749277DDE7C1DE06* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerMoveHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68676
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* ExecuteEvents_get_pointerExitHandler_m03735363884BC967C1B04246B51FE98886C9C6DE_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:156>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tA70AAFA2BD47CD0A094BCB586E2EA3E04C5F8916* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerExitHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68507
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerEnter_m2DA660C24CBDE9B83DF2B2D09D9AF0E94A770D17_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:62>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerEnterU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerEnterU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68569
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_reentered_mE363C3D307806C3FF87DF730C14E82AF68A96D8A_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:263>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CreenteredU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68568
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_reentered_m8B88B2F3A8C9FBBE878B458560F5BFF2D7DD142B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:263>
|
|
bool L_0 = __this->___U3CreenteredU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68675
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* ExecuteEvents_get_pointerEnterHandler_m9F921E3357CE38A925DF20E9CD94B4C3AEE9AE48_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:151>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5633AE56FD3D84C5E9E07AC717AF53435DA593C9* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerEnterHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68727
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* BaseInputModule_get_eventSystem_m341B2378F61A58D5432906B9EE1E12265E2FAB33_inline (BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/BaseInputModule.cs:106>
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* L_0 = __this->___m_EventSystem;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68524
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventData_get_pointerId_m81DDB468147FE75C1474C9C6C35753BB53A21275_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:112>
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37895
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)(L_1/L_2)), ((float)(L_4/L_5)), NULL);
|
|
V_0 = L_6;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 37889
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_a;
|
|
float L_5 = L_4.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_b;
|
|
float L_7 = L_6.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), NULL);
|
|
V_0 = L_8;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 68517
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerCurrentRaycast_m52E1E9E89BACACFA6E8F105191654C7E24A98667_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:90>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___0_value;
|
|
__this->___U3CpointerCurrentRaycastU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerCurrentRaycastU3Ek__BackingField))->___element), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37901
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_one_m9097EB8DC23C26118A591AF16702796C3EF51DFB_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ((Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields*)il2cpp_codegen_static_fields_for(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var))->___oneVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 68544
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:189>
|
|
bool L_0 = __this->___U3CdraggingU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68530
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_pressPosition_m8A6788DA6BF81481E4EBCBA2ED1838F786EBAE63_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:127>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpressPositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68600
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventSystem_get_pixelDragThreshold_m2F7B0D1B5ACC63EB507FD7CCFE74F2B2804FF2E3_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:74>
|
|
int32_t L_0 = __this->___m_DragThreshold;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68681
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* ExecuteEvents_get_beginDragHandler_mB0BEAC09E4A8F31438B07FE68A5BF7267FF8C2FC_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:181>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t5B9F26DC56564B82AEF63D8AFEEEADBAB365F403* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_BeginDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68678
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* ExecuteEvents_get_pointerUpHandler_m51B83B4AD7498D6F7A2CBD5F2331E91A37AE4CF2_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:166>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t919A3841A202FB8C678BC0172FAB7E2F79B88AD8* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerUpHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68511
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_rawPointerPress_mEEC4E3C7CD00F1DDCD3DA98DA5837E71BB8455E3_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:75>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CrawPointerPressU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CrawPointerPressU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68682
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* ExecuteEvents_get_dragHandler_m9193926B9685C80C0560C2E105FF6150C4EAE507_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:186>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t37D97D8E7BDC68938191F138BFE31C7BEFCF855E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68764
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ButtonState_get_eventData_m4767730784143F1DCE06B6138658A31CBC5E155F_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:157>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_0 = __this->___m_EventData;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68766
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ButtonState_get_button_m2210A465432D0F990F2380B6357AD2FBA4A7540D_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:163>
|
|
int32_t L_0 = __this->___m_Button;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68767
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ButtonState_set_button_mFAE3F16E2B027BD6B854F18E7C7C2D6CDAB023DE_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:164>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_Button = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:164>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68765
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ButtonState_set_eventData_mA9D59CB9A1565A7D99569E87D88B90738FEF4E1F_inline (ButtonState_tB671FC9C48F167DBC1CDAFEB53C373D8567AE503* __this, MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:158>
|
|
MouseButtonEventData_t0761D63D3A2B13090597C22DD97597CC7FE4D154* L_0 = ___0_value;
|
|
__this->___m_EventData = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventData), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/PointerInputModule.cs:158>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68607
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EventSystem_get_isFocused_mB0BB5BE03F7203A06D2F351ACD28BA177079104A_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:121>
|
|
bool L_0 = __this->___m_HasFocus;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68514
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* PointerEventData_get_pointerClick_m2AFE23543BC381EC734E85ADB16DD63BA2017FEB_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:85>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___U3CpointerClickU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68679
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* ExecuteEvents_get_pointerClickHandler_m0017F9D1EAF7C02CDDB4C148C92D6685D88EA8D5_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:171>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t586168BFEFD0CF29A2B706B5411BF712BD73359E* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerClickHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68684
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* ExecuteEvents_get_dropHandler_m8E00FA7361DE68780ACEB365E6B14206A2180D03_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:196>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB3864D36512C3A896DAC44E898E5D9E1A92CB733* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_DropHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68515
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerClick_m8FA5D91C9556A722BAE8ADBBB5353C79854D74C0_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:85>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerClickU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerClickU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68683
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* ExecuteEvents_get_endDragHandler_mE78FEEEAE114635E416FF1FE33C851E62B60555B_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:191>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t33BA7CA3F9202146F70BE77589CE24F7451C584C* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_EndDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68513
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerDrag_m0E8D72362B07962843671C39ADC8F4D5E4915010_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:80>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_value;
|
|
__this->___U3CpointerDragU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerDragU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37855
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___1_b;
|
|
float L_1 = ___0_a;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___0_a;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___1_b;
|
|
float L_6;
|
|
L_6 = fabsf(L_5);
|
|
float L_7;
|
|
L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
|
|
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
float L_9;
|
|
L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
|
|
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 68603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* EventSystem_get_firstSelectedGameObject_m15FB056EE7A99D8DD5891D40A6E3EF18719F0553_inline (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventSystem.cs:93>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___m_FirstSelected;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68519
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventData_set_pointerPressRaycast_m55CA127474B4CBCA795A9C872B7630AAF766F852_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:95>
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_0 = ___0_value;
|
|
__this->___U3CpointerPressRaycastU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___m_GameObject), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___module), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___document), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3CpointerPressRaycastU3Ek__BackingField))->___element), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 68536
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float PointerEventData_get_clickTime_m5ABE0298E8CEF28B6BD7E750E940756CD78AB96E_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/PointerEventData.cs:145>
|
|
float L_0 = __this->___U3CclickTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68677
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* ExecuteEvents_get_pointerDownHandler_mA67CE33D32540939A273DB88D6456C7FE43C13EF_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:161>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t00024D26E9CCD074EEBC25568B0383863A4CF117* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_PointerDownHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68680
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* ExecuteEvents_get_initializePotentialDrag_m16F4CD40448FB1B78F6683AA26A9CC574F48AFBD_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:176>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t7DFDB0A0C9926E06BF7870695CD48A0533DFABAD* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_InitializePotentialDragHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68690
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* ExecuteEvents_get_submitHandler_mDCAAA40F0F6AEA385B375C1839B4DC37E5FC4A7A_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:226>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tEF0BF5C5A27323118905EB07330A8EF108FED92F* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_SubmitHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68691
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* ExecuteEvents_get_cancelHandler_mBCDFD10C95FC2BBC5DC5A512FEA1BBEECC2DAE12_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:231>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t9FDF6DF173D42030EFE70318BF2408968D3E65CA* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_CancelHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37882
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_Dot_mC1E68FDB4FB462A279A303C043B8FD0AC11C8458_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7))));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
float L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 68495
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t AxisEventData_get_moveDir_mC8E219BB19708AC67C202C860DF2E6D08C29B8B9_inline (AxisEventData_t4AA742BC101B1AA300B16EE7F19E31B91F37A938* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/EventData/AxisEventData.cs:16>
|
|
int32_t L_0 = __this->___U3CmoveDirU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68689
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* ExecuteEvents_get_moveHandler_mF717824AB0018BBED3C2DF3C67486E3B2B3836D2_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:221>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t2A3D445A0300FDC32D29761DDFBBBFC30426F013* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_MoveHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68685
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* ExecuteEvents_get_scrollHandler_m51E902070611D3F81AD5F1F5762AE2C48E84AFE2_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:201>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_t048C55D455059C49F0AFD58FA503F7A552C3DB65* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_ScrollHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68686
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* ExecuteEvents_get_updateSelectedHandler_m8AF7543437082AD4F5690AAA77F2623AE28C3D09_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/ExecuteEvents.cs:206>
|
|
il2cpp_codegen_runtime_class_init_inline(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var);
|
|
EventFunction_1_tB9684C6044C44F9A8317A5E5A9A3C1C0376A4678* L_0 = ((ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_StaticFields*)il2cpp_codegen_static_fields_for(ExecuteEvents_t74DCF8B83743EE2773ACF182344612A048E2CC59_il2cpp_TypeInfo_var))->___s_UpdateSelectedHandler;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68816
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TouchInputModule_get_forceModuleActive_m7200F7B6C80EDD69987615B8356B6B2497461FCA_inline (TouchInputModule_t154B7CF685F02D5B9529572B1A96EBD75AAA945C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/InputModules/TouchInputModule.cs:32>
|
|
bool L_0 = __this->___m_ForceModuleActive;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68852
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PhysicsRaycaster_get_maxRayIntersections_mA06D0B5E291BCF94AE1EF4ED7B68890F39395911_inline (PhysicsRaycaster_t0ACA9046D8D0B195B59DB1F7CA4DD6BB634A56DD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.ugui@754dbde2be27/Runtime/UGUI/EventSystem/Raycasters/PhysicsRaycaster.cs:91>
|
|
int32_t L_0 = __this->___m_MaxRayIntersections;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 68217
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* GetRayIntersectionAllCallback_Invoke_m917AA4108EBDC724AFEF39BFD06A586B7461F497_inline (GetRayIntersectionAllCallback_t52E7AE4ECEA3F9744FF7F8448F852C872A70315C* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, float ___1_f, int32_t ___2_i, const RuntimeMethod* method)
|
|
{
|
|
typedef RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* (*FunctionPointerType) (RuntimeObject*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00, float, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_r, ___1_f, ___2_i, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 68221
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GetRayIntersectionAllNonAllocCallback_Invoke_mFAA36E9AF362DC72204EEF53B28DBFC3367D09A7_inline (GetRayIntersectionAllNonAllocCallback_t28D7ACEBBE525DE0CBEA67986E4C3891D694F980* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7* ___1_results, float ___2_f, int32_t ___3_i, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00, RaycastHit2DU5BU5D_t28739C686586993113318B63C84927FD43063FC7*, float, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_r, ___1_results, ___2_f, ___3_i, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37753
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Dot_mBB86BB940AA0A32FA7D3C02AC42E5BC7095A5D52_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11))));
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 37764
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37780
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Inequality_m9F170CDFBF1E490E559DA5D06D6547501A402BBF_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_rhs;
|
|
bool L_2;
|
|
L_2 = Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline(L_0, L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 36466
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Rect_Contains_mB1160CD465F3E9616AA4EED72AFFD611BD8D2B6B_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_point, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_point;
|
|
float L_1 = L_0.___x;
|
|
float L_2;
|
|
L_2 = Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D_inline(__this, NULL);
|
|
if ((!(((float)L_1) >= ((float)L_2))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_point;
|
|
float L_4 = L_3.___x;
|
|
float L_5;
|
|
L_5 = Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F_inline(__this, NULL);
|
|
if ((!(((float)L_4) < ((float)L_5))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_point;
|
|
float L_7 = L_6.___y;
|
|
float L_8;
|
|
L_8 = Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F_inline(__this, NULL);
|
|
if ((!(((float)L_7) >= ((float)L_8))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = ___0_point;
|
|
float L_10 = L_9.___y;
|
|
float L_11;
|
|
L_11 = Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E_inline(__this, NULL);
|
|
G_B5_0 = ((((float)L_10) < ((float)L_11))? 1 : 0);
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
bool L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
}
|
|
// Method Definition Index: 68205
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* RaycastAllCallback_Invoke_mB30319766AF5F0D5145A6C0AFFEA829A31A5D4B7_inline (RaycastAllCallback_t4AFFDCDAA6F02DD74E1E2DE455BA011D82BED47A* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, float ___1_f, int32_t ___2_i, const RuntimeMethod* method)
|
|
{
|
|
typedef RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* (*FunctionPointerType) (RuntimeObject*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00, float, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_r, ___1_f, ___2_i, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 68209
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GetRaycastNonAllocCallback_Invoke_m36411365E9622819DAB93D0BB0F169FEE99F07D9_inline (GetRaycastNonAllocCallback_tC3DA6EE6063FE663DD0A9FC52439D825DE4A1FFC* __this, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00 ___0_r, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8* ___1_results, float ___2_f, int32_t ___3_i, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, Ray_t2B1742D7958DC05BDC3EFC7461D3593E1430DC00, RaycastHitU5BU5D_t008B8309DE422FE7567068D743D68054D5EBF1A8*, float, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_r, ___1_results, ___2_f, ___3_i, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37768
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_up_m128AF3FDC820BF59D5DE86D973E7DE3F20C3AEBA_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___upVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 37781
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector3_ToString_m6C24B9F0382D25D75B05C606E127CD14660574EE_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62_inline(__this, (String_t*)NULL, (RuntimeObject*)NULL, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m289E50C53DE62E6913B2ED1A26A78DC51AD12F39_gshared_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m21493CD763CBCDBF96B24419D7C72B46F76663EB_gshared_inline (List_1_t09F8990ACE8783E311B473B0090859BA9C00FC2A* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 L_9 = ___0_item;
|
|
List_1_AddWithResize_mF091C3389B6DBF0F71F3A9FF11377F0019784849(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 13883
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpressedButtonsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 13875
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject* L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___0_item;
|
|
List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9342
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEB6DFEA132B5B7BF540D34177054003185D250E7_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 L_9 = ___0_item;
|
|
List_1_AddWithResize_m6B403207DC8AC640C29234B59D769B244BA3666C(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 63245
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m139A176CD271A0532D75BE08DA7831C8C45CE28F_gshared_inline (Enumerator_t72556E98D7DDBE118A973D782D523D15A96461C8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m88ECE219176F771E4C5F913CC01FFCF91E93E3D0_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____size;
|
|
V_0 = L_1;
|
|
__this->____size = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
RaycastResultU5BU5D_tEAF6B3C3088179304676571328CBB001D8CECBC7* L_3 = __this->____items;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 1727
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCEADEF976C709880726A4860892B46E3DCA2D979_gshared_inline (Nullable_1_t33D5AB3CF72EDE570A226DE48EF7C3A10F25A7C4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___hasValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mE2EBEDC861C1EC398EDBE6CF2C9FB604AA71523E_gshared_inline (List_1_t8292C421BBB00D7661DC07462822936152BAB446* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____size;
|
|
V_0 = L_1;
|
|
__this->____size = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->____items;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9239
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m1412A508E37D95E08FB60E8976FB75714BE934C1_gshared_inline (Enumerator_tC17DB73F53085145D57EE2A8168426239B0B569D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____currentValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9195
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3 Enumerator_get_Current_m90160D324DA0D9F5624A345F47D8E226A118911A_gshared_inline (Enumerator_tE92C1AC40A104A179B94F8A013728FD9314CFBD3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3 L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9274
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_m8508BCECB0654E2E93B1A141382E2688ADE7EE7C_gshared_inline (KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9273
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mF0E6A8A455FA71BC8EA94E39C8848FB35A836841_gshared_inline (KeyValuePair_2_tDC26B09C26BA829DDE331BCB6AF7C508C763D7A3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37852
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
float L_0 = ___0_value;
|
|
V_0 = (bool)((((float)L_0) < ((float)(0.0f)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (0.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_2 = ___0_value;
|
|
V_2 = (bool)((((float)L_2) > ((float)(1.0f)))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (1.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
float L_4 = ___0_value;
|
|
V_1 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 37640
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___0_r, uint8_t ___1_g, uint8_t ___2_b, uint8_t ___3_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___rgba = 0;
|
|
uint8_t L_0 = ___0_r;
|
|
__this->___r = L_0;
|
|
uint8_t L_1 = ___1_g;
|
|
__this->___g = L_1;
|
|
uint8_t L_2 = ___2_b;
|
|
__this->___b = L_2;
|
|
uint8_t L_3 = ___3_a;
|
|
__this->___a = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37744
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37752
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_normalized_m736BBF65D5CDA7A18414370D15B4DFCC1E466F07_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = (*(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)__this);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 37878
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector2_ToString_mC10F098442E56919947154402A77EDE28DC9B7BE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2409165FB90CD4A8B916FCA75790766B82C91748);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBD8760F0E4E49A1C274D51CE66C3AF4D4F6DD1D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
___0_format = _stringLiteral2409165FB90CD4A8B916FCA75790766B82C91748;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_3 = ___1_formatProvider;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
|
|
L_5 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
NullCheck(L_5);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6;
|
|
L_6 = VirtualFuncInvoker0< NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* >::Invoke(14, L_5);
|
|
___1_formatProvider = L_6;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float* L_7 = (float*)(&__this->___x);
|
|
String_t* L_8 = ___0_format;
|
|
RuntimeObject* L_9 = ___1_formatProvider;
|
|
String_t* L_10;
|
|
L_10 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE(L_7, L_8, L_9, NULL);
|
|
float* L_11 = (float*)(&__this->___y);
|
|
String_t* L_12 = ___0_format;
|
|
RuntimeObject* L_13 = ___1_formatProvider;
|
|
String_t* L_14;
|
|
L_14 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE(L_11, L_12, L_13, NULL);
|
|
String_t* L_15;
|
|
L_15 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralDBD8760F0E4E49A1C274D51CE66C3AF4D4F6DD1D, L_10, L_14, NULL);
|
|
V_2 = L_15;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
String_t* L_16 = V_2;
|
|
return L_16;
|
|
}
|
|
}
|
|
// Method Definition Index: 37836
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) > ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 37779
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector3_op_Equality_mCDCBB8D2EDC3D3BF20F31A25ACB34705D352B479_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_lhs, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
bool V_4 = false;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z;
|
|
V_2 = ((float)il2cpp_codegen_subtract(L_9, L_11));
|
|
float L_12 = V_0;
|
|
float L_13 = V_0;
|
|
float L_14 = V_1;
|
|
float L_15 = V_1;
|
|
float L_16 = V_2;
|
|
float L_17 = V_2;
|
|
V_3 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_12, L_13)), ((float)il2cpp_codegen_multiply(L_14, L_15)))), ((float)il2cpp_codegen_multiply(L_16, L_17))));
|
|
float L_18 = V_3;
|
|
V_4 = (bool)((((float)L_18) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
bool L_19 = V_4;
|
|
return L_19;
|
|
}
|
|
}
|
|
// Method Definition Index: 36457
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_xMin_mE89C40702926D016A633399E20DB9501E251630D_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_XMin;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 36461
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_xMax_m2339C7D2FCDA98A9B007F815F6E2059BA6BE425F_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_Width;
|
|
float L_1 = __this->___m_XMin;
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
float L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 36459
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_yMin_mB19848FB25DE61EDF958F7A22CFDD86DE103062F_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_YMin;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 36463
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Rect_get_yMax_mBC37BEE1CD632AADD8B9EAF9FE3BA143F79CAF8E_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___m_Height;
|
|
float L_1 = __this->___m_YMin;
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
float L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 37782
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Vector3_ToString_mA8DA39B6324392BB93203A4D4CB85AF87231CB62_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, String_t* ___0_format, RuntimeObject* ___1_formatProvider, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2409165FB90CD4A8B916FCA75790766B82C91748);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F3FD3EFA55E39E450A9A4CE66CD7B259403D44E);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
___0_format = _stringLiteral2409165FB90CD4A8B916FCA75790766B82C91748;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_3 = ___1_formatProvider;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
|
|
L_5 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL);
|
|
NullCheck(L_5);
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6;
|
|
L_6 = VirtualFuncInvoker0< NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* >::Invoke(14, L_5);
|
|
___1_formatProvider = L_6;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float* L_7 = (float*)(&__this->___x);
|
|
String_t* L_8 = ___0_format;
|
|
RuntimeObject* L_9 = ___1_formatProvider;
|
|
String_t* L_10;
|
|
L_10 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE(L_7, L_8, L_9, NULL);
|
|
float* L_11 = (float*)(&__this->___y);
|
|
String_t* L_12 = ___0_format;
|
|
RuntimeObject* L_13 = ___1_formatProvider;
|
|
String_t* L_14;
|
|
L_14 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE(L_11, L_12, L_13, NULL);
|
|
float* L_15 = (float*)(&__this->___z);
|
|
String_t* L_16 = ___0_format;
|
|
RuntimeObject* L_17 = ___1_formatProvider;
|
|
String_t* L_18;
|
|
L_18 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE(L_15, L_16, L_17, NULL);
|
|
String_t* L_19;
|
|
L_19 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(_stringLiteral3F3FD3EFA55E39E450A9A4CE66CD7B259403D44E, L_10, L_14, L_18, NULL);
|
|
V_2 = L_19;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
String_t* L_20 = V_2;
|
|
return L_20;
|
|
}
|
|
}
|
|
// Method Definition Index: 37750
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_Normalize_mEF8349CC39674236CFC694189AFD36E31F89AC8F_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
bool V_1 = false;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
float L_1;
|
|
L_1 = Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
float L_2 = V_0;
|
|
V_1 = (bool)((((float)L_2) > ((float)(9.99999975E-06f)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_value;
|
|
float L_5 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline(L_4, L_5, NULL);
|
|
V_2 = L_6;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
|
|
L_7 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
V_2 = L_7;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 37758
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_Magnitude_m21652D951393A3D7CE92CE40049A0E7F76544D1B_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_vector, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_vector;
|
|
float L_1 = L_0.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_vector;
|
|
float L_3 = L_2.___x;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_vector;
|
|
float L_5 = L_4.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_vector;
|
|
float L_7 = L_6.___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_vector;
|
|
float L_9 = L_8.___z;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___0_vector;
|
|
float L_11 = L_10.___z;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_12;
|
|
L_12 = sqrt(((double)((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), ((float)il2cpp_codegen_multiply(L_9, L_11))))));
|
|
V_0 = ((float)L_12);
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
float L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
// Method Definition Index: 37778
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Division_mCC6BB24E372AB96B8380D1678446EF6A8BAE13BB_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
float L_2 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_a;
|
|
float L_4 = L_3.___y;
|
|
float L_5 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___0_a;
|
|
float L_7 = L_6.___z;
|
|
float L_8 = ___1_d;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_9), ((float)(L_1/L_2)), ((float)(L_4/L_5)), ((float)(L_7/L_8)), NULL);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|