14547 lines
664 KiB
C++
14547 lines
664 KiB
C++
#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 T1>
|
|
struct GenericVirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct GenericVirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, 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);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
|
|
struct Action_1_t23196CB948F3937CC8818C6622617290FE263A2A;
|
|
struct Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2;
|
|
struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_1_tB93AB717F9D419A1BEC832FF76E74EAA32184CC1;
|
|
struct Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551;
|
|
struct Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4;
|
|
struct Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228;
|
|
struct Comparison_1_tC1A1DA15C5DB4AAB31C92D4E8D3C75424AD756AC;
|
|
struct ConcurrentDictionary_2_tBA167BED8D9E7A3BB7D7996586C8A6424A430AA2;
|
|
struct ConcurrentDictionary_2_t9BF34F33749863E70325C1747680D9821A839392;
|
|
struct Dictionary_2_tABE19B9C5C52F1DE14F0D3287B2696E7D7419180;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
|
|
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
|
|
struct Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717;
|
|
struct Func_3_tC721DF8CDD07ED66A4833A19A2ED2302608C906C;
|
|
struct Func_3_t6F6D9932638EA1A5A45303C6626C818C25D164E5;
|
|
struct IEnumerable_1_t450610554DBF756C540EBFAB43AFB93139370311;
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
struct IEnumerable_1_t3CB65D0C4E4B516D79597510B1F4080B970F3E41;
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
struct IMixedObjectFactory_1_t1927598B8F8918672AD114076B2CD204244548DC;
|
|
struct IMixedObjectFactory_1_t5EE9CEEDC4520437D1CF83B9E828A74EBE9D6409;
|
|
struct IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065;
|
|
struct IObjectFactory_1_t6BB06BD26BA263CDF8845B8071ADCED3B4BAF982;
|
|
struct IObjectFactory_1_t7752F719E3B4C7B8D8602A268433D2B9E48F83E1;
|
|
struct IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9;
|
|
struct KeyCollection_t4FDBE515D2D273BAD4671A47B44A900A9F419509;
|
|
struct List_1_tF302641BB084F1300740A083E51DD5773ED69148;
|
|
struct List_1_t2CDCA768E7F493F5EDEBC75AEB200FD621354E35;
|
|
struct List_1_t99EC9E130BD1F1034E2090B4BB417B61B64DF1E4;
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B;
|
|
struct List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9;
|
|
struct List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8;
|
|
struct List_1_t3A076A19AF26E22A128C32B5C19804DDD2877607;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_t5B5C061F16C0F40910507056DB003AFF30E6D1A6;
|
|
struct List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05;
|
|
struct MixedObjectPool_1_t745E99DA8009BCA9A96DC05E7BFF92FBD68D1DE6;
|
|
struct MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5;
|
|
struct ObjectPool_1_t28C7D8D285EA9CC34385B9686A9499B2A718E56B;
|
|
struct ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273;
|
|
struct Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841;
|
|
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
|
|
struct TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4;
|
|
struct UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90;
|
|
struct UnityComponentFactory_1_t92A44A46CF69194EC0DAEEE2AAAF9767170EF68A;
|
|
struct UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66;
|
|
struct UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB;
|
|
struct UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205;
|
|
struct UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46;
|
|
struct UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4;
|
|
struct UnityMixedComponentFactory_1_t60EB98F4E45D25AE4B33A6AD4BCB3D07DCCD12D7;
|
|
struct UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317;
|
|
struct ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA;
|
|
struct ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C;
|
|
struct EntryU5BU5D_t42DA8CDA1A3CCA22847EF2A98FF860C8E19E2DB1;
|
|
struct TMP_TextProcessingStack_1U5BU5D_t08293E0BB072311BB96170F351D1083BCA97B9B2;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259;
|
|
struct DecimalU5BU5D_t93BA0C88FA80728F73B792EE1A5199D0C060B615;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct FontWeightU5BU5D_t2A406B5BAB0DD0F06E7F1773DB062E4AF98067BA;
|
|
struct GroupDataU5BU5D_t1F8D5C38441686FB5372CAB587466E377DA292A9;
|
|
struct HighlightStateU5BU5D_tA878A0AF1F4F52882ACD29515AADC277EE135622;
|
|
struct HorizontalAlignmentOptionsU5BU5D_t4D185662282BFB910D8B9A8199E91578E9422658;
|
|
struct IMixedDataU5BU5D_tC82E4D657DFD121079F4FF63E4E8992AECC43868;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct MaterialU5BU5D_t2B1D11C42DB07A4400C0535F92DBB87A2E346D3D;
|
|
struct MaterialReferenceU5BU5D_t7491D335AB3E3E13CE9C0F5E931F396F6A02E1F2;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct RichTextTagAttributeU5BU5D_t5816316EFD8F59DBC30B9F88E15828C564E47B6D;
|
|
struct SelectableU5BU5D_t4160E135F02A40F75A63F787D36F31FEC6FE91A9;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct TMP_CharacterInfoU5BU5D_t297D56FCF66DAA99D8FEA7C30F9F3926902C5B99;
|
|
struct TMP_ColorGradientU5BU5D_t2F65E8C42F268DFF33BB1392D94BCF5B5087308A;
|
|
struct TMP_SubMeshUIU5BU5D_tC77B263183A59A75345C26152457207EAC3BBF29;
|
|
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
|
|
struct UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
|
|
struct ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A;
|
|
struct WordWrapStateU5BU5D_t473D59C9DBCC949CE72EF1EB471CBA152A6CEAC9;
|
|
struct TextProcessingElementU5BU5D_tC3E97D1672C8DB6E1F91DB2C0987D0ED9A2E7113;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct ActionNode_tC0DF1F409DCFC9ABD0943A8C098E1484A126BBAE;
|
|
struct AlignableLinearLayoutManager_t96C0DD95811F4C077010824DEB04DEA8A6343DDE;
|
|
struct AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1;
|
|
struct AnimationTriggers_tA0DC06F89C5280C6DD972F6F4C8A56D7F4F79074;
|
|
struct Animator_t8A52E42AE54F76681838FE9E632683EF3952E883;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20;
|
|
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F;
|
|
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26;
|
|
struct CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860;
|
|
struct CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352;
|
|
struct CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116;
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009;
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931;
|
|
struct GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633;
|
|
struct GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7;
|
|
struct GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6;
|
|
struct HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE;
|
|
struct IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IButton_tE5BA104946FDBA051BF41705F46CB8427F5BD7A2;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct IMixedData_tA5914904D328BA239E101B230B5A3D001E134A3D;
|
|
struct ITextPreprocessor_tDBB49C8B68D7B80E8D233B9D9666C43981EFAAB9;
|
|
struct IUXAudioHelper_tF69A4AB45A0F27715C13A8AAC15FCE10745E54B4;
|
|
struct IUXLocalizationHelper_t5FFA87FED03F40177DC8FB04E4D462FAE8A24ABE;
|
|
struct InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1;
|
|
struct InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382;
|
|
struct LayoutElement_tB1F24CC11AF4AA87015C8D8EE06D22349C5BF40A;
|
|
struct LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA;
|
|
struct LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF;
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4;
|
|
struct MethodInfo_t;
|
|
struct MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4;
|
|
struct MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F;
|
|
struct MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7;
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
|
|
struct MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81;
|
|
struct MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB;
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
struct PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983;
|
|
struct PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25;
|
|
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB;
|
|
struct RectMask2D_tACF92BE999C791A665BD1ADEABF5BCEB82846670;
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5;
|
|
struct RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F;
|
|
struct ReusableTween_tDA9782B93A282525989BB930F196AED4C10B6720;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3;
|
|
struct ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9;
|
|
struct Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11;
|
|
struct ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9;
|
|
struct Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712;
|
|
struct SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405;
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99;
|
|
struct String_t;
|
|
struct TMP_Character_t7D37A55EF1A9FF6D0BFE6D50E86A00F80E7FAF35;
|
|
struct TMP_ColorGradient_t17B51752B4E9499A1FF7D875DCEC1D15A0F4AEBB;
|
|
struct TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160;
|
|
struct TMP_SpriteAnimator_t2E0F016A61CA343E3222FF51E7CF0E53F9F256E4;
|
|
struct TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39;
|
|
struct TMP_Style_tA9E5B1B35EBFE24EF980CEA03251B638282E120C;
|
|
struct TMP_StyleSheet_t70C71699F5CB2D855C361DBB78A44C901236C859;
|
|
struct TMP_TextElement_t262A55214F712D4274485ABE5676E5254B84D0A5;
|
|
struct TMP_TextInfo_t09A8E906329422C3F0C059876801DD695B8D524D;
|
|
struct TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957;
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
|
|
struct TransitionData_t8244525C8765930FC95FFC9AD0A38AAE3383C2A4;
|
|
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D;
|
|
struct UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702;
|
|
struct UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107;
|
|
struct UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1;
|
|
struct UXGroup_t56D9E373D379BD5E81E6118F99C783078843BF71;
|
|
struct UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E;
|
|
struct UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE;
|
|
struct UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B;
|
|
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
|
|
struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977;
|
|
struct UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092;
|
|
struct UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87;
|
|
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE;
|
|
struct ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A;
|
|
struct ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663;
|
|
struct WaitForSeconds_tF179DF251655B8DF044952E70A60DF4B358A3DD3;
|
|
struct ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C;
|
|
struct U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6;
|
|
struct U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498;
|
|
struct U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8;
|
|
struct U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B;
|
|
struct U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3;
|
|
struct CullStateChangedEvent_t6073CD0D951EC1256BF74B8F9107D68FC89B99B8;
|
|
struct ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24;
|
|
struct ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6;
|
|
struct U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13;
|
|
struct U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D;
|
|
struct U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05;
|
|
struct U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31;
|
|
struct MissingCharacterEventCallback_t955241181324E0FEF9A9BDBA400E8780F8979DE6;
|
|
struct U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E;
|
|
struct Comparer_t2B3666F075AF8D903E474E2EAFDAED04D158586E;
|
|
struct Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t23196CB948F3937CC8818C6622617290FE263A2A_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* Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMixedData_tA5914904D328BA239E101B230B5A3D001E134A3D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IUXLocalizationHelper_t5FFA87FED03F40177DC8FB04E4D462FAE8A24ABE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317_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* WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E8DF9878CDBE09891B26429192A6705458D5E0B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9721D3DCBC6F1B0779AEC0391045510E0059948B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1_NotifyDataChanged_mEB20DF8CB26F5CFAB68F4F17129A4FAC908F6016_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1_SetChoiceIndex_m15338460D02990C60920379CE21DC39E6E42B94B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1_SetList_mC831823BEAD7EF24E78C2C9115247042E4A84B5D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_m1C80900B53CBE5A805520304F9CBC0C8403AED2B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_m3613B99C32927B766D7A29B6B58E2ECB89C5F358_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_m5226157496E913EECE85FF96C0F4E8037136F1C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_m80B8B400A810D274A833178228593413CC7DD7F4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_mBC90A89476E389E2EF4C90E4EEFAB8FEFEF02735_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Adapter_1__ctor_mD182E15A9CCDEFE45CB7C1F224DF6CEB468FC6FD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1_m11BEC94A2A9C0D8DA3A0150285850F76C5A1643E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisScrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3_m926D886710762EDEC3925BB69A204C1BB3E8E93D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisUXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_mBD7930E930E3A30CD4ADB7953FD2E70AB4AECC60_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mAB759A84BCE85C027F3EE1D5B15431E381646AB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m74EE8DFCA37549AEBACFB513B13C5674C8E0F445_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_mBB0AEECB6A0CD28970D51D79CE29B8F653785A89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m6AE0CD18AC9552D5D5E52EF6D5A17CD3B88189E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A_m273AEA9B2E3D880E2CA048DED48168A656A751BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9_m1B9855584EB97993963365FFB804E01DBEB05BC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GroupAdapter_U3CNotifyDataChangedU3Eb__8_0_m769795289BAEA7938EF2C035111EB2BC4D714A2C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7A1454F98FD5D62BD225B2C5B846D433A6ECB426_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD3B54E45B4C6B333CB80734FD29A9C7DAE4168EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mCE6E8AC696882AE5172BF850786FD42B5EC9E001_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Find_mFB470F8C716CD0393D276ADCA71DFCCD1DC7B1CD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_mE6568D1644F6B4A84A125109851AA0817BCE91B0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_InsertRange_mC78A0CD322C39BEEDB11FE4ABE1761B160DD6FCC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m65838220B412C5284F74DCF960AE44C789451C02_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_mD6E55763BEDC1BC8FB9318CC2E894E6D96A2D246_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m73FD26ED83A437CC8C770724A3887CE6CE0545DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5A6C71088F25EC93F17C21F87017DD4882FAF97C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m192832D449F45BBFEF93EA8AFB1F21BA67C5D0B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MixedObjectPool_1__ctor_mA379D3D86790D0089F70B3CEBDF0251F9DD4E1B5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MixedViewProvider_GetTemplate_mFE9CC78AD7B52A54C1975F2012CF7173A429939B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MixedViewProvider_GetTemplates_m7C2A48114824E3E1B1698ACDCB10707BC9D5A3C3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_m6863D4D1A7ABD4276A9DA677B202EDFACECF2E03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RecyclerView_OnMoveStoped_mC437705E8449733F6264A4D4B3BC57DCBFC8A7A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RecyclerView_OnMoveing_m38D445340746778D1784F73CC41D06FFDBEADCE1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RecyclerView_OnScrollChanged_m25D5FFECFF11F93B52F7B366C4D0EDFDBDB566E5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RecyclerView_OnScrollbarChanged_m9627BC8062F6A9843981F998C09161B94F813F84_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* RecyclerView_OnScrollbarDragEnd_mA98EC0B2C61A8F2A349C6524ED01BD2F97879ED1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Resources_Load_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m496A3B1B60A28F5E0397043974B848C9157B625A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SimpleViewProvider_GetTemplate_mA4B7059F4C55D5E88D7ED9079BB805101A41CBC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SimpleViewProvider_GetTemplates_m8B3BD43B1E713D84DEB8EF07E842914098EDC06C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CElasticToU3Ed__63_System_Collections_IEnumerator_Reset_m898105BEA03D797FB0BD8C8A25B84B68F3026DCB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CInertiaToU3Ed__62_System_Collections_IEnumerator_Reset_m5C38DF9DF8A40E4A5839CDE7432B2CC82EBDA3F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CMoveToU3Ed__64_System_Collections_IEnumerator_Reset_mD7B9E0FA708195F03CA6482C7782BE29C56BA381_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CToPositionU3Ed__65_System_Collections_IEnumerator_Reset_m8F2FF8CF51F3418B72A54A651ACD3D9DE982E523_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass10_0_U3CCreateGroupU3Eb__0_mF3B22BEE534816F2615ABD5B39F7D5CA9B02E182_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_0_U3CExpandU3Eb__0_m5CF3C655751421BF67420C53F89B635FAAC79B57_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass12_0_U3CCollapseU3Eb__0_m4FDDEFBA4F4C93643D7352306F2CA683FD147FC8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass7_0_U3COnBindViewHolderU3Eb__0_m6CCBA1EBB8C4FF3814D0A156CAFE04586B04C051_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass8_0_U3CNotifyDataChangedU3Eb__1_m1C7CDB675FA8C0B0605CABFB61A70FDEA0500B3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityComponentFactory_1__ctor_mD0E53E1EE5538ACB55414EC28132956DB64C9544_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1__ctor_mD1175E822AFF26E9A43F2FB692BB82525C6DD422_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityMixedComponentFactory_1__ctor_m1E0D6ABD5496821C28A39F11694870347F523D57_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ViewHolder_BindItemClick_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_m6E1B27E8366039E9801761D20ECD3499470ADF9C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ViewHolder_BindViewData_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_mC5B4CD24B691D7316A88A57B552115E653500B69_RuntimeMethod_var;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60;
|
|
struct ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A;
|
|
|
|
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 Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551 : public RuntimeObject
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___recyclerView;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___list;
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* ___onItemClick;
|
|
int32_t ___choiceIndex;
|
|
};
|
|
struct Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4 : public RuntimeObject
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___recyclerView;
|
|
List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* ___list;
|
|
Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2* ___onItemClick;
|
|
int32_t ___choiceIndex;
|
|
};
|
|
struct Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t42DA8CDA1A3CCA22847EF2A98FF860C8E19E2DB1* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t4FDBE515D2D273BAD4671A47B44A900A9F419509* ____keys;
|
|
ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9 : public RuntimeObject
|
|
{
|
|
GroupDataU5BU5D_t1F8D5C38441686FB5372CAB587466E377DA292A9* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8 : public RuntimeObject
|
|
{
|
|
IMixedDataU5BU5D_tC82E4D657DFD121079F4FF63E4E8992AECC43868* ____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_t1684FE08EF8C977EA28109EFC40CC98006035C05 : public RuntimeObject
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5 : public RuntimeObject
|
|
{
|
|
ConcurrentDictionary_2_tBA167BED8D9E7A3BB7D7996586C8A6424A430AA2* ___entries;
|
|
ConcurrentDictionary_2_t9BF34F33749863E70325C1747680D9821A839392* ___typeSize;
|
|
RuntimeObject* ___factory;
|
|
int32_t ___defaultMaxSizePerType;
|
|
};
|
|
struct ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273 : public RuntimeObject
|
|
{
|
|
int32_t ___maxSize;
|
|
int32_t ___initialSize;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___entries;
|
|
RuntimeObject* ___factory;
|
|
};
|
|
struct UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66 : public RuntimeObject
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent;
|
|
};
|
|
struct UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317 : public RuntimeObject
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ___list;
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* ___dict;
|
|
};
|
|
struct ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C : public RuntimeObject
|
|
{
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* ____dictionary;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t5888DC68FA1E86F7827C2A5E00D37A07493B97D9 : public RuntimeObject
|
|
{
|
|
};
|
|
struct AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7 : public RuntimeObject
|
|
{
|
|
bool ___m_Used;
|
|
};
|
|
struct GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6 : public RuntimeObject
|
|
{
|
|
bool ___bExpand;
|
|
int32_t ___type;
|
|
String_t* ___viewName;
|
|
String_t* ___name;
|
|
};
|
|
struct SetPropertyUtility_t624ED82A7F85051597F1E344D7EBA2C5B8E564D9 : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct UIMetaRegistryInitializer_t6C68F753BA4181862F76F68289CA37114288DF3D : public RuntimeObject
|
|
{
|
|
};
|
|
struct UIResRegistryInitializer_tD1B6079EB8CB8BE7B03B37C69D32DB02BBDAB860 : public RuntimeObject
|
|
{
|
|
};
|
|
struct UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D : public RuntimeObject
|
|
{
|
|
};
|
|
struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8 : public RuntimeObject
|
|
{
|
|
InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382* ___m_Calls;
|
|
PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25* ___m_PersistentCalls;
|
|
bool ___m_CallsDirty;
|
|
};
|
|
struct UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092 : public RuntimeObject
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent;
|
|
};
|
|
struct UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87 : public RuntimeObject
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8 : public RuntimeObject
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ___viewHolders;
|
|
RuntimeObject* ___U3CAdapterU3Ek__BackingField;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ___U3CLayoutManagerU3Ek__BackingField;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___recyclerView;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___templates;
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
};
|
|
struct U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6 : public RuntimeObject
|
|
{
|
|
int32_t ___type;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* ___U3CU3E4__this;
|
|
};
|
|
struct U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498 : public RuntimeObject
|
|
{
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* ___U3CU3E4__this;
|
|
int32_t ___index;
|
|
};
|
|
struct U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8 : public RuntimeObject
|
|
{
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* ___U3CU3E4__this;
|
|
int32_t ___index;
|
|
};
|
|
struct U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B : public RuntimeObject
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___data;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* ___U3CU3E4__this;
|
|
int32_t ___index;
|
|
};
|
|
struct U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3 : public RuntimeObject
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___group;
|
|
};
|
|
struct U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
RuntimeObject* ___U3CU3E2__current;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* ___U3CU3E4__this;
|
|
float ___targetPos;
|
|
};
|
|
struct U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
RuntimeObject* ___U3CU3E2__current;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* ___U3CU3E4__this;
|
|
float ___U3CtimerU3E5__2;
|
|
float ___U3CpU3E5__3;
|
|
float ___U3CvU3E5__4;
|
|
float ___U3CdurationU3E5__5;
|
|
};
|
|
struct U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
RuntimeObject* ___U3CU3E2__current;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* ___U3CU3E4__this;
|
|
float ___targetPos;
|
|
};
|
|
struct U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
RuntimeObject* ___U3CU3E2__current;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* ___U3CU3E4__this;
|
|
float ___targetPos;
|
|
float ___speed;
|
|
float ___U3CstartPosU3E5__2;
|
|
float ___U3CtimeU3E5__3;
|
|
};
|
|
struct U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E : public RuntimeObject
|
|
{
|
|
};
|
|
struct Comparer_t2B3666F075AF8D903E474E2EAFDAED04D158586E : public RuntimeObject
|
|
{
|
|
};
|
|
struct Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ____current;
|
|
};
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
struct Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ____current;
|
|
};
|
|
struct TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___itemStack;
|
|
int32_t ___index;
|
|
int32_t ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___itemStack;
|
|
int32_t ___index;
|
|
float ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct TMP_TextProcessingStack_1_tC8FAEB17246D3B171EFD11165A5761AE39B40D0C
|
|
{
|
|
TMP_ColorGradientU5BU5D_t2F65E8C42F268DFF33BB1392D94BCF5B5087308A* ___itemStack;
|
|
int32_t ___index;
|
|
TMP_ColorGradient_t17B51752B4E9499A1FF7D875DCEC1D15A0F4AEBB* ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray;
|
|
};
|
|
struct UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46 : 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 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 DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1__padding[1];
|
|
};
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7 : public Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___showList;
|
|
String_t* ___groupViewName;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct MaterialReference_tFD98FFFBBDF168028E637446C6676507186F4D0B
|
|
{
|
|
int32_t ___index;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___spriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
bool ___isDefaultMaterial;
|
|
bool ___isFallbackMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___fallbackMaterial;
|
|
float ___padding;
|
|
int32_t ___referenceCount;
|
|
};
|
|
struct MaterialReference_tFD98FFFBBDF168028E637446C6676507186F4D0B_marshaled_pinvoke
|
|
{
|
|
int32_t ___index;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___spriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___isDefaultMaterial;
|
|
int32_t ___isFallbackMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___fallbackMaterial;
|
|
float ___padding;
|
|
int32_t ___referenceCount;
|
|
};
|
|
struct MaterialReference_tFD98FFFBBDF168028E637446C6676507186F4D0B_marshaled_com
|
|
{
|
|
int32_t ___index;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___spriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___isDefaultMaterial;
|
|
int32_t ___isFallbackMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___fallbackMaterial;
|
|
float ___padding;
|
|
int32_t ___referenceCount;
|
|
};
|
|
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 MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4 : public Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4
|
|
{
|
|
};
|
|
struct MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7 : public ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___chatLeftViewHolder;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___chatRightViewHolder;
|
|
RuntimeObject* ___objectPool;
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* ___dict;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405 : public ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8
|
|
{
|
|
RuntimeObject* ___objectPool;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite;
|
|
};
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD_marshaled_pinvoke
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite;
|
|
};
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD_marshaled_com
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite;
|
|
};
|
|
struct TMP_FontStyleStack_t52885F172FADBC21346C835B5302167BDA8020DC
|
|
{
|
|
uint8_t ___bold;
|
|
uint8_t ___italic;
|
|
uint8_t ___underline;
|
|
uint8_t ___strikethrough;
|
|
uint8_t ___highlight;
|
|
uint8_t ___superscript;
|
|
uint8_t ___subscript;
|
|
uint8_t ___uppercase;
|
|
uint8_t ___lowercase;
|
|
uint8_t ___smallcaps;
|
|
};
|
|
struct TMP_Offset_t2262BE4E87D9662487777FF8FFE1B17B0E4438C6
|
|
{
|
|
float ___m_Left;
|
|
float ___m_Right;
|
|
float ___m_Top;
|
|
float ___m_Bottom;
|
|
};
|
|
struct Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0
|
|
{
|
|
int64_t ___id;
|
|
ReusableTween_tDA9782B93A282525989BB930F196AED4C10B6720* ___tween;
|
|
};
|
|
struct Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0_marshaled_pinvoke
|
|
{
|
|
int64_t ___id;
|
|
ReusableTween_tDA9782B93A282525989BB930F196AED4C10B6720* ___tween;
|
|
};
|
|
struct Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0_marshaled_com
|
|
{
|
|
int64_t ___id;
|
|
ReusableTween_tDA9782B93A282525989BB930F196AED4C10B6720* ___tween;
|
|
};
|
|
struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray;
|
|
};
|
|
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];
|
|
};
|
|
};
|
|
struct WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663 : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D2338_t6076F9A5F0D65E40BB4E8C17C20CB10F14FF4825
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D2338_t6076F9A5F0D65E40BB4E8C17C20CB10F14FF4825__padding[2338];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct __StaticArrayInitTypeSizeU3D4396_t5F1E729EF9A04BCD240C7DF4119E0976B6766091
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
};
|
|
};
|
|
uint8_t __StaticArrayInitTypeSizeU3D4396_t5F1E729EF9A04BCD240C7DF4119E0976B6766091__padding[4396];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct SpecialCharacter_t6C1DBE8C490706D1620899BAB7F0B8091AD26777
|
|
{
|
|
TMP_Character_t7D37A55EF1A9FF6D0BFE6D50E86A00F80E7FAF35* ___character;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___materialIndex;
|
|
};
|
|
struct SpecialCharacter_t6C1DBE8C490706D1620899BAB7F0B8091AD26777_marshaled_pinvoke
|
|
{
|
|
TMP_Character_t7D37A55EF1A9FF6D0BFE6D50E86A00F80E7FAF35* ___character;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___materialIndex;
|
|
};
|
|
struct SpecialCharacter_t6C1DBE8C490706D1620899BAB7F0B8091AD26777_marshaled_com
|
|
{
|
|
TMP_Character_t7D37A55EF1A9FF6D0BFE6D50E86A00F80E7FAF35* ___character;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___fontAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___materialIndex;
|
|
};
|
|
struct TextBackingContainer_t33D1CE628E7B26C45EDAC1D87BEF2DD22A5C6361
|
|
{
|
|
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_Array;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct TextBackingContainer_t33D1CE628E7B26C45EDAC1D87BEF2DD22A5C6361_marshaled_pinvoke
|
|
{
|
|
Il2CppSafeArray* ___m_Array;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct TextBackingContainer_t33D1CE628E7B26C45EDAC1D87BEF2DD22A5C6361_marshaled_com
|
|
{
|
|
Il2CppSafeArray* ___m_Array;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___itemStack;
|
|
int32_t ___index;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct TMP_TextProcessingStack_1_tB03E08F69415B281A5A81138F09E49EE58402DF9
|
|
{
|
|
MaterialReferenceU5BU5D_t7491D335AB3E3E13CE9C0F5E931F396F6A02E1F2* ___itemStack;
|
|
int32_t ___index;
|
|
MaterialReference_tFD98FFFBBDF168028E637446C6676507186F4D0B ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct Alignment_tDC7780B3CBA16C93DEC7F745AFA3BBA3A77418FD
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ButtonModeType_t63D93EE68B0761023668AE3D8F3C5690D9C54298
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct CircleDirection_t66AF97286B0EAFBE90E63066A3DAA0150816976D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_NormalColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_HighlightedColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_PressedColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_SelectedColor;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_DisabledColor;
|
|
float ___m_ColorMultiplier;
|
|
float ___m_FadeDuration;
|
|
};
|
|
struct ColorMode_tA7A815AAB9F175EFBA0AE0814E55728432A880BF
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct CycleMode_t4C6C91522B0A11DB777AA5B4A47B93A80CA5D790
|
|
{
|
|
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 Direction_tAFA82C5F6B01B28DF0BE26D804AC52D80B656C0D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009 : public UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB
|
|
{
|
|
};
|
|
struct EAnimationFlowPlayebleType_t9758574B04CEB5F77299576E71BE8B49FB251835
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EHotkeyPressType_t7D386E75C28875A214DD035BFB1D8299453CBA4C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Ease_t683FD04A9FE737974EC9161C62F46AF5D4BBC360
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___min;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___max;
|
|
};
|
|
struct FontStyles_t9E611EE6BBE6E192A73EAFF7872596517C527FF5
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FontWeight_tA2585C0A73B70D31CE71E7843149098A5E16BC80
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color;
|
|
TMP_Offset_t2262BE4E87D9662487777FF8FFE1B17B0E4438C6 ___padding;
|
|
};
|
|
struct HorizontalAlignmentOptions_tCC21260E9FBEC656BA7783643ED5F44AFF7955A1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81 : public UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977
|
|
{
|
|
};
|
|
struct MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267 : public UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977
|
|
{
|
|
};
|
|
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 PenStatus_tCAD6543115EF443E17410B52D37EC67BCC88ABB8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
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 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
};
|
|
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 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
};
|
|
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 ___worldPosition;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition;
|
|
int32_t ___displayIndex;
|
|
};
|
|
struct ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9 : public UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4
|
|
{
|
|
};
|
|
struct SelectionState_t90C88A758D474EC92B7364985FE0F4EF1F620D74
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TMP_TextElementType_t51EE6662436732F22C6B599F5757B7F35F706342
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextAlignmentOptions_tF3FA9020F7E2AF1A48660044540254009A22EF01
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextOverflowModes_t7DCCD00C16E3223CE50CDDCC53F785C0405BE203
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextRenderFlags_tE023FF398ECFE57A1DBC6FD2A1AF4AE9620F6E1C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextWrappingModes_t982BC65D6DA703E73C04B99286285ECD3DDF207E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextureMappingOptions_t0E1A47C529DEB45A875486256E7026E97C940DAE
|
|
{
|
|
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 VertexGradient_t2C057B53C0EA6E987C2B7BAB0305E686DA1C9A8F
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___topLeft;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___topRight;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___bottomLeft;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___bottomRight;
|
|
};
|
|
struct VertexSortingOrder_t95B7AEDBDCAACC3459B6476E5CCC594A6422FFA8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct VerticalAlignmentOptions_tCEF70AF60282B71AEEE14D51253CE6A61E72D855
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Mode_t2D49D0E10E2FDA0026278C2400C16033888D0542
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InputButton_t7F40241CC7C406EBD574D426F736CB744DE86CDA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Direction_t66B968909AA36972158FF8E756987AD7E12896DF
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6 : public UnityEvent_1_tDD811EB8F49CEE97BA6DF59344DFE6C6F42553D4
|
|
{
|
|
};
|
|
struct Transition_tF856A77C9FAC6D26EA3CA158CF68B739D35397B3
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TextInputSources_t41387D6C9CB16E60390F47A15AEB8185BE966D26
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ColorType_tD1278CB55B2082320E826F0666CEC1A961C17D6D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipDirection_t31F24704DFEE2A1EF7330CCF724680BD5FC88A11
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipEdge_t661B35F1FF336EE948B2B9589393BE948C8539B6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipEdgeHorizontal_tB6DC6028B4C0C2517914F7D9141DB75FA4F9A82F
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipEdgeVertical_t531C09346230F4B04B158FDE31C1E7A94010ABA0
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipFillCenter_tFC835D2B7C1CD3B6E6703289FF4B1D4EA52634B8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipMode_t4C4792DD6155B3B89DD1F564ED385A4A108E5BFA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct FlipPart_tA034FBD18739318D9C80B1A1AEA79E8AFBD8B2F8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GradientDirection_t3F16BC297389FA7AECB7C4EF8952D8478681682A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4 : public RuntimeObject
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___uv0;
|
|
int32_t ___type;
|
|
};
|
|
struct TMP_TextProcessingStack_1_tA5C8CED87DD9E73F6359E23B334FFB5B6F813FD4
|
|
{
|
|
FontWeightU5BU5D_t2A406B5BAB0DD0F06E7F1773DB062E4AF98067BA* ___itemStack;
|
|
int32_t ___index;
|
|
int32_t ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct TMP_TextProcessingStack_1_t57AECDCC936A7FF1D6CF66CA11560B28A675648D
|
|
{
|
|
HighlightStateU5BU5D_tA878A0AF1F4F52882ACD29515AADC277EE135622* ___itemStack;
|
|
int32_t ___index;
|
|
HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct TMP_TextProcessingStack_1_t243EA1B5D7FD2295D6533B953F0BBE8F52EFB8A0
|
|
{
|
|
HorizontalAlignmentOptionsU5BU5D_t4D185662282BFB910D8B9A8199E91578E9422658* ___itemStack;
|
|
int32_t ___index;
|
|
int32_t ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA : public RuntimeObject
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___viewportSize;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___contentSize;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___contentOffset;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___viewportOffset;
|
|
RuntimeObject* ___adapter;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* ___viewProvider;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___recyclerView;
|
|
int32_t ___direction;
|
|
int32_t ___alignment;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___spacing;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___padding;
|
|
int32_t ___unit;
|
|
bool ___canScroll;
|
|
};
|
|
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 Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C
|
|
{
|
|
int32_t ___m_Mode;
|
|
bool ___m_WrapAround;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight;
|
|
};
|
|
struct Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Mode;
|
|
int32_t ___m_WrapAround;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight;
|
|
};
|
|
struct Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C_marshaled_com
|
|
{
|
|
int32_t ___m_Mode;
|
|
int32_t ___m_WrapAround;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight;
|
|
};
|
|
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 SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct TMP_LineInfo_tB75C1965B58DB7B3A046C8CA55AD6AB92B6B17B3
|
|
{
|
|
int32_t ___controlCharacterCount;
|
|
int32_t ___characterCount;
|
|
int32_t ___visibleCharacterCount;
|
|
int32_t ___spaceCount;
|
|
int32_t ___visibleSpaceCount;
|
|
int32_t ___wordCount;
|
|
int32_t ___firstCharacterIndex;
|
|
int32_t ___firstVisibleCharacterIndex;
|
|
int32_t ___lastCharacterIndex;
|
|
int32_t ___lastVisibleCharacterIndex;
|
|
float ___length;
|
|
float ___lineHeight;
|
|
float ___ascender;
|
|
float ___baseline;
|
|
float ___descender;
|
|
float ___maxAdvance;
|
|
float ___width;
|
|
float ___marginLeft;
|
|
float ___marginRight;
|
|
int32_t ___alignment;
|
|
Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8 ___lineExtents;
|
|
};
|
|
struct Action_1_t23196CB948F3937CC8818C6622617290FE263A2A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352 : public LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA
|
|
{
|
|
float ___radius;
|
|
float ___intervalAngle;
|
|
int32_t ___direction;
|
|
float ___initalAngle;
|
|
};
|
|
struct GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633 : public LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___cellSize;
|
|
int32_t ___cellCount;
|
|
};
|
|
struct LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF : public LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA
|
|
{
|
|
float ___lineHeight;
|
|
};
|
|
struct MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F : public LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A
|
|
{
|
|
int32_t ___previous_WordBreak;
|
|
int32_t ___total_CharacterCount;
|
|
int32_t ___visible_CharacterCount;
|
|
int32_t ___visibleSpaceCount;
|
|
int32_t ___visible_SpriteCount;
|
|
int32_t ___visible_LinkCount;
|
|
int32_t ___firstCharacterIndex;
|
|
int32_t ___firstVisibleCharacterIndex;
|
|
int32_t ___lastCharacterIndex;
|
|
int32_t ___lastVisibleCharIndex;
|
|
int32_t ___lineNumber;
|
|
float ___maxCapHeight;
|
|
float ___maxAscender;
|
|
float ___maxDescender;
|
|
float ___startOfLineAscender;
|
|
float ___maxLineAscender;
|
|
float ___maxLineDescender;
|
|
float ___pageAscender;
|
|
int32_t ___horizontalAlignment;
|
|
float ___marginLeft;
|
|
float ___marginRight;
|
|
float ___xAdvance;
|
|
float ___preferredWidth;
|
|
float ___preferredHeight;
|
|
float ___renderedWidth;
|
|
float ___renderedHeight;
|
|
float ___previousLineScale;
|
|
int32_t ___wordCount;
|
|
int32_t ___fontStyle;
|
|
int32_t ___italicAngle;
|
|
float ___fontScaleMultiplier;
|
|
float ___currentFontSize;
|
|
float ___baselineOffset;
|
|
float ___lineOffset;
|
|
bool ___isDrivenLineSpacing;
|
|
int32_t ___lastBaseGlyphIndex;
|
|
float ___cSpace;
|
|
float ___mSpace;
|
|
TMP_TextInfo_t09A8E906329422C3F0C059876801DD695B8D524D* ___textInfo;
|
|
TMP_LineInfo_tB75C1965B58DB7B3A046C8CA55AD6AB92B6B17B3 ___lineInfo;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___vertexColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor;
|
|
HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B ___highlightState;
|
|
TMP_FontStyleStack_t52885F172FADBC21346C835B5302167BDA8020DC ___basicStyleStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___italicAngleStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___colorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___underlineColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___strikethroughColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___highlightColorStack;
|
|
TMP_TextProcessingStack_1_t57AECDCC936A7FF1D6CF66CA11560B28A675648D ___highlightStateStack;
|
|
TMP_TextProcessingStack_1_tC8FAEB17246D3B171EFD11165A5761AE39B40D0C ___colorGradientStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___sizeStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___indentStack;
|
|
TMP_TextProcessingStack_1_tA5C8CED87DD9E73F6359E23B334FFB5B6F813FD4 ___fontWeightStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___styleStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___baselineStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___actionStack;
|
|
TMP_TextProcessingStack_1_tB03E08F69415B281A5A81138F09E49EE58402DF9 ___materialReferenceStack;
|
|
TMP_TextProcessingStack_1_t243EA1B5D7FD2295D6533B953F0BBE8F52EFB8A0 ___lineJustificationStack;
|
|
int32_t ___spriteAnimationID;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___currentFontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___currentSpriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___currentMaterial;
|
|
int32_t ___currentMaterialIndex;
|
|
Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8 ___meshExtents;
|
|
bool ___tagNoParsing;
|
|
bool ___isNonBreakingSpace;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___fxRotation;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___fxScale;
|
|
};
|
|
struct WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A_marshaled_pinvoke
|
|
{
|
|
int32_t ___previous_WordBreak;
|
|
int32_t ___total_CharacterCount;
|
|
int32_t ___visible_CharacterCount;
|
|
int32_t ___visibleSpaceCount;
|
|
int32_t ___visible_SpriteCount;
|
|
int32_t ___visible_LinkCount;
|
|
int32_t ___firstCharacterIndex;
|
|
int32_t ___firstVisibleCharacterIndex;
|
|
int32_t ___lastCharacterIndex;
|
|
int32_t ___lastVisibleCharIndex;
|
|
int32_t ___lineNumber;
|
|
float ___maxCapHeight;
|
|
float ___maxAscender;
|
|
float ___maxDescender;
|
|
float ___startOfLineAscender;
|
|
float ___maxLineAscender;
|
|
float ___maxLineDescender;
|
|
float ___pageAscender;
|
|
int32_t ___horizontalAlignment;
|
|
float ___marginLeft;
|
|
float ___marginRight;
|
|
float ___xAdvance;
|
|
float ___preferredWidth;
|
|
float ___preferredHeight;
|
|
float ___renderedWidth;
|
|
float ___renderedHeight;
|
|
float ___previousLineScale;
|
|
int32_t ___wordCount;
|
|
int32_t ___fontStyle;
|
|
int32_t ___italicAngle;
|
|
float ___fontScaleMultiplier;
|
|
float ___currentFontSize;
|
|
float ___baselineOffset;
|
|
float ___lineOffset;
|
|
int32_t ___isDrivenLineSpacing;
|
|
int32_t ___lastBaseGlyphIndex;
|
|
float ___cSpace;
|
|
float ___mSpace;
|
|
TMP_TextInfo_t09A8E906329422C3F0C059876801DD695B8D524D* ___textInfo;
|
|
TMP_LineInfo_tB75C1965B58DB7B3A046C8CA55AD6AB92B6B17B3 ___lineInfo;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___vertexColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor;
|
|
HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B ___highlightState;
|
|
TMP_FontStyleStack_t52885F172FADBC21346C835B5302167BDA8020DC ___basicStyleStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___italicAngleStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___colorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___underlineColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___strikethroughColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___highlightColorStack;
|
|
TMP_TextProcessingStack_1_t57AECDCC936A7FF1D6CF66CA11560B28A675648D ___highlightStateStack;
|
|
TMP_TextProcessingStack_1_tC8FAEB17246D3B171EFD11165A5761AE39B40D0C ___colorGradientStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___sizeStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___indentStack;
|
|
TMP_TextProcessingStack_1_tA5C8CED87DD9E73F6359E23B334FFB5B6F813FD4 ___fontWeightStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___styleStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___baselineStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___actionStack;
|
|
TMP_TextProcessingStack_1_tB03E08F69415B281A5A81138F09E49EE58402DF9 ___materialReferenceStack;
|
|
TMP_TextProcessingStack_1_t243EA1B5D7FD2295D6533B953F0BBE8F52EFB8A0 ___lineJustificationStack;
|
|
int32_t ___spriteAnimationID;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___currentFontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___currentSpriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___currentMaterial;
|
|
int32_t ___currentMaterialIndex;
|
|
Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8 ___meshExtents;
|
|
int32_t ___tagNoParsing;
|
|
int32_t ___isNonBreakingSpace;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___fxRotation;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___fxScale;
|
|
};
|
|
struct WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A_marshaled_com
|
|
{
|
|
int32_t ___previous_WordBreak;
|
|
int32_t ___total_CharacterCount;
|
|
int32_t ___visible_CharacterCount;
|
|
int32_t ___visibleSpaceCount;
|
|
int32_t ___visible_SpriteCount;
|
|
int32_t ___visible_LinkCount;
|
|
int32_t ___firstCharacterIndex;
|
|
int32_t ___firstVisibleCharacterIndex;
|
|
int32_t ___lastCharacterIndex;
|
|
int32_t ___lastVisibleCharIndex;
|
|
int32_t ___lineNumber;
|
|
float ___maxCapHeight;
|
|
float ___maxAscender;
|
|
float ___maxDescender;
|
|
float ___startOfLineAscender;
|
|
float ___maxLineAscender;
|
|
float ___maxLineDescender;
|
|
float ___pageAscender;
|
|
int32_t ___horizontalAlignment;
|
|
float ___marginLeft;
|
|
float ___marginRight;
|
|
float ___xAdvance;
|
|
float ___preferredWidth;
|
|
float ___preferredHeight;
|
|
float ___renderedWidth;
|
|
float ___renderedHeight;
|
|
float ___previousLineScale;
|
|
int32_t ___wordCount;
|
|
int32_t ___fontStyle;
|
|
int32_t ___italicAngle;
|
|
float ___fontScaleMultiplier;
|
|
float ___currentFontSize;
|
|
float ___baselineOffset;
|
|
float ___lineOffset;
|
|
int32_t ___isDrivenLineSpacing;
|
|
int32_t ___lastBaseGlyphIndex;
|
|
float ___cSpace;
|
|
float ___mSpace;
|
|
TMP_TextInfo_t09A8E906329422C3F0C059876801DD695B8D524D* ___textInfo;
|
|
TMP_LineInfo_tB75C1965B58DB7B3A046C8CA55AD6AB92B6B17B3 ___lineInfo;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___vertexColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor;
|
|
HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B ___highlightState;
|
|
TMP_FontStyleStack_t52885F172FADBC21346C835B5302167BDA8020DC ___basicStyleStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___italicAngleStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___colorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___underlineColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___strikethroughColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___highlightColorStack;
|
|
TMP_TextProcessingStack_1_t57AECDCC936A7FF1D6CF66CA11560B28A675648D ___highlightStateStack;
|
|
TMP_TextProcessingStack_1_tC8FAEB17246D3B171EFD11165A5761AE39B40D0C ___colorGradientStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___sizeStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___indentStack;
|
|
TMP_TextProcessingStack_1_tA5C8CED87DD9E73F6359E23B334FFB5B6F813FD4 ___fontWeightStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___styleStack;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___baselineStack;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___actionStack;
|
|
TMP_TextProcessingStack_1_tB03E08F69415B281A5A81138F09E49EE58402DF9 ___materialReferenceStack;
|
|
TMP_TextProcessingStack_1_t243EA1B5D7FD2295D6533B953F0BBE8F52EFB8A0 ___lineJustificationStack;
|
|
int32_t ___spriteAnimationID;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___currentFontAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___currentSpriteAsset;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___currentMaterial;
|
|
int32_t ___currentMaterialIndex;
|
|
Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8 ___meshExtents;
|
|
int32_t ___tagNoParsing;
|
|
int32_t ___isNonBreakingSpace;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___fxRotation;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___fxScale;
|
|
};
|
|
struct TMP_TextProcessingStack_1_t2DDA00FFC64AF6E3AFD475AB2086D16C34787E0F
|
|
{
|
|
WordWrapStateU5BU5D_t473D59C9DBCC949CE72EF1EB471CBA152A6CEAC9* ___itemStack;
|
|
int32_t ___index;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_DefaultItem;
|
|
int32_t ___m_Capacity;
|
|
int32_t ___m_RolloverSize;
|
|
int32_t ___m_Count;
|
|
};
|
|
struct AlignableLinearLayoutManager_t96C0DD95811F4C077010824DEB04DEA8A6343DDE : public LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF
|
|
{
|
|
float ___alignmentCount;
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983 : public LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF
|
|
{
|
|
float ___minScale;
|
|
};
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5 : public Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1
|
|
{
|
|
};
|
|
struct AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
List_1_t99EC9E130BD1F1034E2090B4BB417B61B64DF1E4* ___AnimationNodes;
|
|
String_t* ____defaultPlayName;
|
|
bool ____enableAutoPlay;
|
|
List_1_tF302641BB084F1300740A083E51DD5773ED69148* ____runningNodes;
|
|
List_1_tF302641BB084F1300740A083E51DD5773ED69148* ____resetNodes;
|
|
ActionNode_tC0DF1F409DCFC9ABD0943A8C098E1484A126BBAE* ____curEntryNode;
|
|
int32_t ____loopCount;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ____playFinishEvent;
|
|
float ____timeScale;
|
|
int32_t ____playebleType;
|
|
};
|
|
struct HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* ____holderObjectBase;
|
|
UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60* ___hotButtons;
|
|
};
|
|
struct RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
int32_t ___direction;
|
|
int32_t ___alignment;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___content;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___spacing;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___padding;
|
|
bool ___scroll;
|
|
bool ___snap;
|
|
float ___scrollSpeed;
|
|
float ___wheelSpeed;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___templates;
|
|
String_t* ____scrollerTypeName;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* ____scroller;
|
|
bool ____showScrollBar;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* ____scrollbar;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* ___viewProvider;
|
|
String_t* ____layoutManagerTypeName;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ____layoutManager;
|
|
int32_t ___startIndex;
|
|
int32_t ___endIndex;
|
|
int32_t ___currentIndex;
|
|
RuntimeObject* ____adapter;
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* ___OnIndexChanged;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnScrollValueChanged;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnMoveingChanged;
|
|
};
|
|
struct ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___handle;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* ___scrollbar;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnDragEnd;
|
|
bool ___dragging;
|
|
bool ___hovering;
|
|
};
|
|
struct Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
float ___position;
|
|
float ___velocity;
|
|
int32_t ___direction;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___contentSize;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___viewSize;
|
|
float ___scrollSpeed;
|
|
float ___wheelSpeed;
|
|
bool ___snap;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* ___scrollerEvent;
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* ___moveStopEvent;
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* ___draggingEvent;
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* ___moveingEvent;
|
|
float ___dragStopTime;
|
|
};
|
|
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
};
|
|
struct UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnWindowInitEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnWindowShowEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnWindowClosedEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnWindowDestroyEvent;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ____target;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ____rectTransform;
|
|
AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* ___AnimationFlow;
|
|
bool ___IsAlive;
|
|
};
|
|
struct UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* ___onDrag;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* ___onBeginDrag;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* ___onEndDrag;
|
|
};
|
|
struct UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* ____button;
|
|
InputActionReference_t64730C6B41271E0983FC21BFB416169F5D6BC4A1* ____hotKeyRefrence;
|
|
int32_t ____hotkeyPressType;
|
|
};
|
|
struct UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* ___animationFlow;
|
|
String_t* ___ShowAnimationName;
|
|
String_t* ___HideAnimationName;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* ____holderObjectBase;
|
|
};
|
|
struct ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___rectTransform;
|
|
String_t* ___U3CNameU3Ek__BackingField;
|
|
int32_t ___U3CIndexU3Ek__BackingField;
|
|
bool ___U3CChoiseStateU3Ek__BackingField;
|
|
RuntimeObject* ____button;
|
|
};
|
|
struct CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116 : public Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___centerPosition;
|
|
};
|
|
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 Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
bool ___m_EnableCalled;
|
|
Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C ___m_Navigation;
|
|
int32_t ___m_Transition;
|
|
ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11 ___m_Colors;
|
|
SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD ___m_SpriteState;
|
|
AnimationTriggers_tA0DC06F89C5280C6DD972F6F4C8A56D7F4F79074* ___m_AnimationTriggers;
|
|
bool ___m_Interactable;
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___m_TargetGraphic;
|
|
bool ___m_GroupsAllowInteraction;
|
|
int32_t ___m_CurrentIndex;
|
|
bool ___U3CisPointerInsideU3Ek__BackingField;
|
|
bool ___U3CisPointerDownU3Ek__BackingField;
|
|
bool ___U3ChasSelectionU3Ek__BackingField;
|
|
List_1_t2CDCA768E7F493F5EDEBC75AEB200FD621354E35* ___m_CanvasGroupCache;
|
|
};
|
|
struct UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
bool ___m_Interactable;
|
|
int32_t ___m_Mode;
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* ___m_OnClick;
|
|
TransitionData_t8244525C8765930FC95FFC9AD0A38AAE3383C2A4* ___m_TransitionData;
|
|
List_1_t5B5C061F16C0F40910507056DB003AFF30E6D1A6* ___m_ChildTransitions;
|
|
UXGroup_t56D9E373D379BD5E81E6118F99C783078843BF71* ___m_UXGroup;
|
|
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___hoverAudioClip;
|
|
AudioClip_t5D272C4EB4F2D3ED49F1C346DEA373CF6D585F20* ___clickAudioClip;
|
|
UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB* ___m_OnValueChanged;
|
|
int32_t ___m_SelectionState;
|
|
bool ___m_IsDown;
|
|
bool ___m_HasExitedWhileDown;
|
|
bool ____mTogSelected;
|
|
Animator_t8A52E42AE54F76681838FE9E632683EF3952E883* ____animator;
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ____resetRoutine;
|
|
WaitForSeconds_tF179DF251655B8DF044952E70A60DF4B358A3DD3* ____waitFadeDuration;
|
|
};
|
|
struct MaskableGraphic_tFC5B6BE351C90DE53744DF2A70940242774B361E : public Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931
|
|
{
|
|
bool ___m_ShouldRecalculateStencil;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_MaskMaterial;
|
|
RectMask2D_tACF92BE999C791A665BD1ADEABF5BCEB82846670* ___m_ParentMask;
|
|
bool ___m_Maskable;
|
|
bool ___m_IsMaskingGraphic;
|
|
bool ___m_IncludeForMasking;
|
|
CullStateChangedEvent_t6073CD0D951EC1256BF74B8F9107D68FC89B99B8* ___m_OnCullStateChanged;
|
|
bool ___m_ShouldRecalculate;
|
|
int32_t ___m_StencilValue;
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_Corners;
|
|
};
|
|
struct Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3 : public Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_HandleRect;
|
|
int32_t ___m_Direction;
|
|
float ___m_Value;
|
|
float ___m_Size;
|
|
int32_t ___m_NumberOfSteps;
|
|
ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6* ___m_OnValueChanged;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_ContainerRect;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Offset;
|
|
DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1 ___m_Tracker;
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ___m_PointerDownRepeat;
|
|
bool ___isPointerDownAndNotDragging;
|
|
bool ___m_DelayedUpdateVisuals;
|
|
};
|
|
struct TMP_Text_tE8D677872D43AD4B2AAF0D6101692A17D0B251A9 : public MaskableGraphic_tFC5B6BE351C90DE53744DF2A70940242774B361E
|
|
{
|
|
String_t* ___m_text;
|
|
bool ___m_IsTextBackingStringDirty;
|
|
RuntimeObject* ___m_TextPreprocessor;
|
|
bool ___m_isRightToLeft;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___m_fontAsset;
|
|
TMP_FontAsset_t923BF2F78D7C5AC36376E168A1193B7CB4855160* ___m_currentFontAsset;
|
|
bool ___m_isSDFShader;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_sharedMaterial;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_currentMaterial;
|
|
int32_t ___m_currentMaterialIndex;
|
|
MaterialU5BU5D_t2B1D11C42DB07A4400C0535F92DBB87A2E346D3D* ___m_fontSharedMaterials;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_fontMaterial;
|
|
MaterialU5BU5D_t2B1D11C42DB07A4400C0535F92DBB87A2E346D3D* ___m_fontMaterials;
|
|
bool ___m_isMaterialDirty;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_fontColor32;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_fontColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_underlineColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_strikethroughColor;
|
|
HighlightState_tE4F50287E5E2E91D42AB77DEA281D88D3AD6A28B ___m_HighlightState;
|
|
bool ___m_ConvertToLinearSpace;
|
|
bool ___m_enableVertexGradient;
|
|
int32_t ___m_colorMode;
|
|
VertexGradient_t2C057B53C0EA6E987C2B7BAB0305E686DA1C9A8F ___m_fontColorGradient;
|
|
TMP_ColorGradient_t17B51752B4E9499A1FF7D875DCEC1D15A0F4AEBB* ___m_fontColorGradientPreset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___m_spriteAsset;
|
|
bool ___m_tintAllSprites;
|
|
bool ___m_tintSprite;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_spriteColor;
|
|
TMP_StyleSheet_t70C71699F5CB2D855C361DBB78A44C901236C859* ___m_StyleSheet;
|
|
TMP_Style_tA9E5B1B35EBFE24EF980CEA03251B638282E120C* ___m_TextStyle;
|
|
int32_t ___m_TextStyleHashCode;
|
|
bool ___m_overrideHtmlColors;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_faceColor;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_outlineColor;
|
|
float ___m_outlineWidth;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_currentEnvMapRotation;
|
|
bool ___m_hasEnvMapProperty;
|
|
float ___m_fontSize;
|
|
float ___m_currentFontSize;
|
|
float ___m_fontSizeBase;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___m_sizeStack;
|
|
int32_t ___m_fontWeight;
|
|
int32_t ___m_FontWeightInternal;
|
|
TMP_TextProcessingStack_1_tA5C8CED87DD9E73F6359E23B334FFB5B6F813FD4 ___m_FontWeightStack;
|
|
bool ___m_enableAutoSizing;
|
|
float ___m_maxFontSize;
|
|
float ___m_minFontSize;
|
|
int32_t ___m_AutoSizeIterationCount;
|
|
int32_t ___m_AutoSizeMaxIterationCount;
|
|
bool ___m_IsAutoSizePointSizeSet;
|
|
float ___m_fontSizeMin;
|
|
float ___m_fontSizeMax;
|
|
int32_t ___m_fontStyle;
|
|
int32_t ___m_FontStyleInternal;
|
|
TMP_FontStyleStack_t52885F172FADBC21346C835B5302167BDA8020DC ___m_fontStyleStack;
|
|
bool ___m_isUsingBold;
|
|
int32_t ___m_HorizontalAlignment;
|
|
int32_t ___m_VerticalAlignment;
|
|
int32_t ___m_textAlignment;
|
|
int32_t ___m_lineJustification;
|
|
TMP_TextProcessingStack_1_t243EA1B5D7FD2295D6533B953F0BBE8F52EFB8A0 ___m_lineJustificationStack;
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_textContainerLocalCorners;
|
|
float ___m_characterSpacing;
|
|
float ___m_cSpacing;
|
|
float ___m_monoSpacing;
|
|
bool ___m_duoSpace;
|
|
float ___m_wordSpacing;
|
|
float ___m_lineSpacing;
|
|
float ___m_lineSpacingDelta;
|
|
float ___m_lineHeight;
|
|
bool ___m_IsDrivenLineSpacing;
|
|
float ___m_lineSpacingMax;
|
|
float ___m_paragraphSpacing;
|
|
float ___m_charWidthMaxAdj;
|
|
float ___m_charWidthAdjDelta;
|
|
int32_t ___m_TextWrappingMode;
|
|
bool ___m_isCharacterWrappingEnabled;
|
|
bool ___m_isNonBreakingSpace;
|
|
bool ___m_isIgnoringAlignment;
|
|
float ___m_wordWrappingRatios;
|
|
int32_t ___m_overflowMode;
|
|
int32_t ___m_firstOverflowCharacterIndex;
|
|
TMP_Text_tE8D677872D43AD4B2AAF0D6101692A17D0B251A9* ___m_linkedTextComponent;
|
|
TMP_Text_tE8D677872D43AD4B2AAF0D6101692A17D0B251A9* ___parentLinkedComponent;
|
|
bool ___m_isTextTruncated;
|
|
bool ___m_enableKerning;
|
|
int32_t ___m_LastBaseGlyphIndex;
|
|
List_1_t3A076A19AF26E22A128C32B5C19804DDD2877607* ___m_ActiveFontFeatures;
|
|
bool ___m_enableExtraPadding;
|
|
bool ___checkPaddingRequired;
|
|
bool ___m_isRichText;
|
|
bool ___m_EmojiFallbackSupport;
|
|
bool ___m_parseCtrlCharacters;
|
|
bool ___m_isOverlay;
|
|
bool ___m_isOrthographic;
|
|
bool ___m_isCullingEnabled;
|
|
bool ___m_isMaskingEnabled;
|
|
bool ___isMaskUpdateRequired;
|
|
bool ___m_ignoreCulling;
|
|
int32_t ___m_horizontalMapping;
|
|
int32_t ___m_verticalMapping;
|
|
float ___m_uvLineOffset;
|
|
int32_t ___m_renderMode;
|
|
int32_t ___m_geometrySortingOrder;
|
|
bool ___m_IsTextObjectScaleStatic;
|
|
bool ___m_VertexBufferAutoSizeReduction;
|
|
int32_t ___m_firstVisibleCharacter;
|
|
int32_t ___m_maxVisibleCharacters;
|
|
int32_t ___m_maxVisibleWords;
|
|
int32_t ___m_maxVisibleLines;
|
|
bool ___m_useMaxVisibleDescender;
|
|
int32_t ___m_pageToDisplay;
|
|
bool ___m_isNewPage;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_margin;
|
|
float ___m_marginLeft;
|
|
float ___m_marginRight;
|
|
float ___m_marginWidth;
|
|
float ___m_marginHeight;
|
|
float ___m_width;
|
|
TMP_TextInfo_t09A8E906329422C3F0C059876801DD695B8D524D* ___m_textInfo;
|
|
bool ___m_havePropertiesChanged;
|
|
bool ___m_isUsingLegacyAnimationComponent;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___m_transform;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_rectTransform;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PreviousRectTransformSize;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PreviousPivotPosition;
|
|
bool ___U3CautoSizeTextContainerU3Ek__BackingField;
|
|
bool ___m_autoSizeTextContainer;
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_mesh;
|
|
bool ___m_isVolumetricText;
|
|
Action_1_tB93AB717F9D419A1BEC832FF76E74EAA32184CC1* ___OnPreRenderText;
|
|
TMP_SpriteAnimator_t2E0F016A61CA343E3222FF51E7CF0E53F9F256E4* ___m_spriteAnimator;
|
|
float ___m_flexibleHeight;
|
|
float ___m_flexibleWidth;
|
|
float ___m_minWidth;
|
|
float ___m_minHeight;
|
|
float ___m_maxWidth;
|
|
float ___m_maxHeight;
|
|
LayoutElement_tB1F24CC11AF4AA87015C8D8EE06D22349C5BF40A* ___m_LayoutElement;
|
|
float ___m_preferredWidth;
|
|
float ___m_RenderedWidth;
|
|
bool ___m_isPreferredWidthDirty;
|
|
float ___m_preferredHeight;
|
|
float ___m_RenderedHeight;
|
|
bool ___m_isPreferredHeightDirty;
|
|
bool ___m_isCalculatingPreferredValues;
|
|
int32_t ___m_layoutPriority;
|
|
bool ___m_isLayoutDirty;
|
|
bool ___m_isAwake;
|
|
bool ___m_isWaitingOnResourceLoad;
|
|
int32_t ___m_inputSource;
|
|
float ___m_fontScaleMultiplier;
|
|
float ___tag_LineIndent;
|
|
float ___tag_Indent;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___m_indentStack;
|
|
bool ___tag_NoParsing;
|
|
bool ___m_isTextLayoutPhase;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___m_FXRotation;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_FXScale;
|
|
TextProcessingElementU5BU5D_tC3E97D1672C8DB6E1F91DB2C0987D0ED9A2E7113* ___m_TextProcessingArray;
|
|
int32_t ___m_InternalTextProcessingArraySize;
|
|
TMP_CharacterInfoU5BU5D_t297D56FCF66DAA99D8FEA7C30F9F3926902C5B99* ___m_internalCharacterInfo;
|
|
int32_t ___m_totalCharacterCount;
|
|
int32_t ___m_characterCount;
|
|
int32_t ___m_firstCharacterOfLine;
|
|
int32_t ___m_firstVisibleCharacterOfLine;
|
|
int32_t ___m_lastCharacterOfLine;
|
|
int32_t ___m_lastVisibleCharacterOfLine;
|
|
int32_t ___m_lineNumber;
|
|
int32_t ___m_lineVisibleCharacterCount;
|
|
int32_t ___m_lineVisibleSpaceCount;
|
|
int32_t ___m_pageNumber;
|
|
float ___m_PageAscender;
|
|
float ___m_maxTextAscender;
|
|
float ___m_maxCapHeight;
|
|
float ___m_ElementAscender;
|
|
float ___m_ElementDescender;
|
|
float ___m_maxLineAscender;
|
|
float ___m_maxLineDescender;
|
|
float ___m_startOfLineAscender;
|
|
float ___m_startOfLineDescender;
|
|
float ___m_lineOffset;
|
|
Extents_tA2D2F95811D0A18CB7AC3570D2D8F8CD3AF4C4A8 ___m_meshExtents;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___m_htmlColor;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___m_colorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___m_underlineColorStack;
|
|
TMP_TextProcessingStack_1_tF2CD5BE59E5EB22EA9E3EE3043A004EA918C4BB3 ___m_strikethroughColorStack;
|
|
TMP_TextProcessingStack_1_t57AECDCC936A7FF1D6CF66CA11560B28A675648D ___m_HighlightStateStack;
|
|
TMP_ColorGradient_t17B51752B4E9499A1FF7D875DCEC1D15A0F4AEBB* ___m_colorGradientPreset;
|
|
TMP_TextProcessingStack_1_tC8FAEB17246D3B171EFD11165A5761AE39B40D0C ___m_colorGradientStack;
|
|
bool ___m_colorGradientPresetIsTinted;
|
|
float ___m_tabSpacing;
|
|
float ___m_spacing;
|
|
TMP_TextProcessingStack_1U5BU5D_t08293E0BB072311BB96170F351D1083BCA97B9B2* ___m_TextStyleStacks;
|
|
int32_t ___m_TextStyleStackDepth;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___m_ItalicAngleStack;
|
|
int32_t ___m_ItalicAngle;
|
|
TMP_TextProcessingStack_1_tFBA719426D68CE1F2B5849D97AF5E5D65846290C ___m_actionStack;
|
|
float ___m_padding;
|
|
float ___m_baselineOffset;
|
|
TMP_TextProcessingStack_1_t138EC06BE7F101AA0A3C8D2DC951E55AACE085E9 ___m_baselineOffsetStack;
|
|
float ___m_xAdvance;
|
|
int32_t ___m_textElementType;
|
|
TMP_TextElement_t262A55214F712D4274485ABE5676E5254B84D0A5* ___m_cached_TextElement;
|
|
SpecialCharacter_t6C1DBE8C490706D1620899BAB7F0B8091AD26777 ___m_Ellipsis;
|
|
SpecialCharacter_t6C1DBE8C490706D1620899BAB7F0B8091AD26777 ___m_Underline;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___m_defaultSpriteAsset;
|
|
TMP_SpriteAsset_t81F779E6F705CE190DC0D1F93A954CB8B1774B39* ___m_currentSpriteAsset;
|
|
int32_t ___m_spriteCount;
|
|
int32_t ___m_spriteIndex;
|
|
int32_t ___m_spriteAnimationID;
|
|
bool ___m_ignoreActiveState;
|
|
TextBackingContainer_t33D1CE628E7B26C45EDAC1D87BEF2DD22A5C6361 ___m_TextBackingArray;
|
|
DecimalU5BU5D_t93BA0C88FA80728F73B792EE1A5199D0C060B615* ___k_Power;
|
|
};
|
|
struct TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957 : public TMP_Text_tE8D677872D43AD4B2AAF0D6101692A17D0B251A9
|
|
{
|
|
bool ___m_isRebuildingLayout;
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ___m_DelayedGraphicRebuild;
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ___m_DelayedMaterialRebuild;
|
|
bool ___m_ShouldUpdateCulling;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_ClipRect;
|
|
bool ___m_ValidRect;
|
|
Action_1_tB93AB717F9D419A1BEC832FF76E74EAA32184CC1* ___OnPreRenderText;
|
|
bool ___m_hasFontAssetChanged;
|
|
TMP_SubMeshUIU5BU5D_tC77B263183A59A75345C26152457207EAC3BBF29* ___m_subTextObjects;
|
|
float ___m_previousLossyScaleY;
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_RectTransformCorners;
|
|
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* ___m_canvasRenderer;
|
|
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___m_canvas;
|
|
float ___m_CanvasScaleFactor;
|
|
bool ___m_isFirstAllocation;
|
|
int32_t ___m_max_characters;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_baseMaterial;
|
|
bool ___m_isScrollRegionSet;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_maskOffset;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_EnvMapMatrix;
|
|
bool ___m_isRegisteredForEvents;
|
|
};
|
|
struct UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE : public TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957
|
|
{
|
|
int32_t ___m_localizationID;
|
|
String_t* ___m_localizationKey;
|
|
};
|
|
struct List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_StaticFields
|
|
{
|
|
GroupDataU5BU5D_t1F8D5C38441686FB5372CAB587466E377DA292A9* ___s_emptyArray;
|
|
};
|
|
struct List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8_StaticFields
|
|
{
|
|
IMixedDataU5BU5D_tC82E4D657DFD121079F4FF63E4E8992AECC43868* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05_StaticFields
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___s_emptyArray;
|
|
};
|
|
struct U3CPrivateImplementationDetailsU3E_t5888DC68FA1E86F7827C2A5E00D37A07493B97D9_StaticFields
|
|
{
|
|
__StaticArrayInitTypeSizeU3D2338_t6076F9A5F0D65E40BB4E8C17C20CB10F14FF4825 ___3B0B32D5EDA2BF319ED722EAAFFFA439885A21A81C2A46998E0A7679FF0C5271;
|
|
__StaticArrayInitTypeSizeU3D4396_t5F1E729EF9A04BCD240C7DF4119E0976B6766091 ___B45F30F483F942E85E1452AF751F2866CD8E5F57622CEAF4F61D3E6057345AF7;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_StaticFields
|
|
{
|
|
RuntimeObject* ___LocalizationHelper;
|
|
RuntimeObject* ___AudioHelper;
|
|
};
|
|
struct U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_StaticFields
|
|
{
|
|
U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* ___U3CU3E9;
|
|
Comparison_1_tC1A1DA15C5DB4AAB31C92D4E8D3C75424AD756AC* ___U3CU3E9__69_0;
|
|
Comparison_1_tC1A1DA15C5DB4AAB31C92D4E8D3C75424AD756AC* ___U3CU3E9__69_1;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion;
|
|
};
|
|
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 Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
|
|
};
|
|
struct UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207_StaticFields
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___s_DefaultColor;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___s_DefaultTangent;
|
|
UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___simpleVert;
|
|
};
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_StaticFields
|
|
{
|
|
ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24* ___reapplyDrivenProperties;
|
|
};
|
|
struct UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_StaticFields
|
|
{
|
|
Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ____animTriggerCache;
|
|
};
|
|
struct TMP_Text_tE8D677872D43AD4B2AAF0D6101692A17D0B251A9_StaticFields
|
|
{
|
|
MaterialReferenceU5BU5D_t7491D335AB3E3E13CE9C0F5E931F396F6A02E1F2* ___m_materialReferences;
|
|
Dictionary_2_tABE19B9C5C52F1DE14F0D3287B2696E7D7419180* ___m_materialReferenceIndexLookup;
|
|
TMP_TextProcessingStack_1_tB03E08F69415B281A5A81138F09E49EE58402DF9 ___m_materialReferenceStack;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___s_colorWhite;
|
|
Func_3_tC721DF8CDD07ED66A4833A19A2ED2302608C906C* ___OnFontAssetRequest;
|
|
Func_3_t6F6D9932638EA1A5A45303C6626C818C25D164E5* ___OnSpriteAssetRequest;
|
|
MissingCharacterEventCallback_t955241181324E0FEF9A9BDBA400E8780F8979DE6* ___OnMissingCharacter;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_htmlTag;
|
|
RichTextTagAttributeU5BU5D_t5816316EFD8F59DBC30B9F88E15828C564E47B6D* ___m_xmlAttribute;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___m_attributeParameterValues;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_SavedWordWrapState;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_SavedLineState;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_SavedEllipsisState;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_SavedLastValidState;
|
|
WordWrapState_t80F67D8CAA9B1A0A3D5266521E23A9F3100EDD0A ___m_SavedSoftLineBreakState;
|
|
TMP_TextProcessingStack_1_t2DDA00FFC64AF6E3AFD475AB2086D16C34787E0F ___m_EllipsisInsertionCandidateStack;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ParseTextMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InsertNewLineMarker;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___k_LargePositiveVector2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___k_LargeNegativeVector2;
|
|
float ___k_LargePositiveFloat;
|
|
float ___k_LargeNegativeFloat;
|
|
int32_t ___k_LargePositiveInt;
|
|
int32_t ___k_LargeNegativeInt;
|
|
};
|
|
struct TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateTextMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_SetArraySizesMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateTextPhaseIMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ParseMarkupTextMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_CharacterLookupMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleGPOSFeaturesMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_CalculateVerticesPositionMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ComputeTextMetricsMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleVisibleCharacterMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleWhiteSpacesMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleHorizontalLineBreakingMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleVerticalLineBreakingMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_SaveGlyphVertexDataMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ComputeCharacterAdvanceMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleCarriageReturnMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HandleLineTerminationMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_SavePageInfoMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_SaveTextExtentMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_SaveProcessingStatesMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateTextPhaseIIMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateTextPhaseIIIMarker;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* m_Items[1];
|
|
|
|
inline UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E** 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, UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* m_Items[1];
|
|
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A** 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, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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);
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_Instantiate_TisRuntimeObject_m75BF3B0A3747B60491845FA41612FE7F795F0A59_gshared (RuntimeObject* ___0_original, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Resources_Load_TisRuntimeObject_mD1AF6299B14F87ED1D1A6199A51480919F7C79D7_gshared (String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, 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 List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adapter_1__ctor_mC1A35F6DAC75EFD9D7A3E03FE34DC5FEB1662D0C_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adapter_1__ctor_mE71B28E4424E44B3DCD2E6A68E4A58EF07E72551_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___1_list, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adapter_1__ctor_m22776BC38FDAA461CF6889DC8A45CFE5E8D8BC2A_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___1_list, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___2_onItemClick, 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 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 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 Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* List_1_FindAll_m87FB5AB35229967D01B9DF933BF70D470B32F0AF_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, 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 bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adapter_1_NotifyDataChanged_m806A23F63815144D57BDF4A5FE4A3DDA69CE4B63_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, 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 void Adapter_1_SetList_m7248D260B2E96FF69BF339CEA6BCCAE28D668710_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_Find_m5E78A210541B0D844FE27B94F509313623BE33D3_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, 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 void List_1_InsertRange_m386ABA9B2C4950D31E787C87CDEF3D3E103F1B1A_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adapter_1_SetChoiceIndex_mC0679E37A2EC0D5E5653E6AE2EED7696FB654C4A_gshared (Adapter_1_tB276D9CF9D94602CA21C7FF01F0395DA8BDC1228* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mF770070D0A4FE93F6E04DA37D2EC60429EA545E5_gshared (UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* __this, RuntimeObject* ___0_object, intptr_t ___1_method, 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 RuntimeObject* GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, 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 UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934_gshared (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB* __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_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_gshared (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB* __this, bool ___0_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __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 void UnityMixedComponentFactory_1__ctor_mE4F79BFC0426BC7B3883B484A985D1CB7AD1EE8C_gshared (UnityMixedComponentFactory_1_t60EB98F4E45D25AE4B33A6AD4BCB3D07DCCD12D7* __this, Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___0_dict, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedObjectPool_1__ctor_m1F410FC5C183C270E50F46FADA32AEBC09D72580_gshared (MixedObjectPool_1_t745E99DA8009BCA9A96DC05E7BFF92FBD68D1DE6* __this, RuntimeObject* ___0_factory, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueCollection_t038245E04B5D2A80048D9F8021A23E69A0C9DBAA* Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Enumerable_ToArray_TisRuntimeObject_mA54265C2C8A0864929ECD300B75E4952D553D17D_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityComponentFactory_1__ctor_mFD27BA374032592A125E0387154A5D605E5EB483_gshared (UnityComponentFactory_1_t92A44A46CF69194EC0DAEEE2AAAF9767170EF68A* __this, RuntimeObject* ___0_template, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1__ctor_m8CDD2FEC9A7177390C9E924C30FB414F4CA3CD1B_gshared (ObjectPool_1_t28C7D8D285EA9CC34385B9686A9499B2A718E56B* __this, RuntimeObject* ___0_factory, int32_t ___1_maxSize, 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_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, 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) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9A0A6CF0A44BDC8C69EFC1CABA0147B274B84E7F (U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vert2D_CompareToVertically_mE552EFC66D85E4268BD1AEF1DE0910B146446439 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_vert, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vert2D_CompareToHorizontally_m637A2E1B307E2EEFEDCCC839CF949E05804AE4DD (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_vert, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIBehaviour_Start_mB12643ED6D859CD3682B4BF5B9CA7F72E8A72B45 (UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isPlaying_m25B0ABDFEF54F5370CD3F263A813540843D00F34 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXTextMeshPro_ChangeLanguage_mEE02B19414EF9582AE79814D6D27ED4FC50652DF (UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE* __this, 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 bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextMeshProUGUI__ctor_m3733FC98975BAD7C96BA932B8BE6A63602BA83B3 (TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957* __this, const RuntimeMethod* method) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_original, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_m75BF3B0A3747B60491845FA41612FE7F795F0A59_gshared)(___0_original, ___1_parent, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, 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) ;
|
|
inline GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Resources_Load_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m496A3B1B60A28F5E0397043974B848C9157B625A (String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
return (( GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* (*) (String_t*, const RuntimeMethod*))Resources_Load_TisRuntimeObject_mD1AF6299B14F87ED1D1A6199A51480919F7C79D7_gshared)(___0_path, method);
|
|
}
|
|
inline UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* Component_GetComponent_TisUXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_mBD7930E930E3A30CD4ADB7953FD2E70AB4AECC60 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UXButton_get_Interactable_m294867322832CB537EA0D0E2D96019C154111731_inline (UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXButton_OnSubmit_mEDBD9C943B184D786B471E6859473A853507CC08 (UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___0_eventData, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20 (UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46*, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*, const RuntimeMethod*))UnityEvent_1_Invoke_m6CDC8B0639CE8935E2E13D10B2C8E500968130B6_gshared)(__this, ___0_arg0, method);
|
|
}
|
|
inline AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* Component_GetComponent_TisAnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1_m11BEC94A2A9C0D8DA3A0150285850F76C5A1643E (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
inline UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, 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 Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, 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 AnimationFlow_Play_m057D4AA431EC04FBCBC4DD723F581526A1E05C8D (AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* __this, String_t* ___0_clipName, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___1_actionComplete, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXHotkeyHotkeyExtension_BindHotKey_m318A40FE5CF238B5F7E378354085983139497CE1 (UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* ___0_button, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXHotkeyHotkeyExtension_UnBindHotKey_m193DFBF3816C69A6FF0699E14A8C18F086D36F6B (UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* ___0_button, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Adapter_1__ctor_m3613B99C32927B766D7A29B6B58E2ECB89C5F358 (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, const RuntimeMethod*))Adapter_1__ctor_mC1A35F6DAC75EFD9D7A3E03FE34DC5FEB1662D0C_gshared)(__this, ___0_recyclerView, method);
|
|
}
|
|
inline void Adapter_1__ctor_mD182E15A9CCDEFE45CB7C1F224DF6CEB468FC6FD (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___1_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))Adapter_1__ctor_mE71B28E4424E44B3DCD2E6A68E4A58EF07E72551_gshared)(__this, ___0_recyclerView, ___1_list, method);
|
|
}
|
|
inline void Adapter_1__ctor_mBC90A89476E389E2EF4C90E4EEFAB8FEFEF02735 (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___1_list, Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* ___2_onItemClick, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, Action_1_t23196CB948F3937CC8818C6622617290FE263A2A*, const RuntimeMethod*))Adapter_1__ctor_m22776BC38FDAA461CF6889DC8A45CFE5E8D8BC2A_gshared)(__this, ___0_recyclerView, ___1_list, ___2_onItemClick, method);
|
|
}
|
|
inline int32_t List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_inline (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass7_0__ctor_m67CE3DED5CB772FADCB1631A49339008F8DF0327 (U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* __this, const RuntimeMethod* method) ;
|
|
inline void Action_1__ctor_m51CE6D98AC647E8AA8FB5AEC8AFDBAABEF8D97BC (Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t23196CB948F3937CC8818C6622617290FE263A2A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01 List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01 (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0 (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_inline (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* (*) (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_CreateGroup_m019A5562DB2F1D1649AF3E8E9A4CA1615F48ADE6 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_type, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2 (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline void Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73 (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*, RuntimeObject*, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*, const RuntimeMethod*))List_1_FindAll_m87FB5AB35229967D01B9DF933BF70D470B32F0AF_gshared)(__this, ___0_match, method);
|
|
}
|
|
inline int32_t List_1_IndexOf_mE6568D1644F6B4A84A125109851AA0817BCE91B0 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*, const RuntimeMethod*))List_1_IndexOf_m378F61BA812B79DEE58D86FE8AA9F20E3FC7D85F_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_Collapse_m80FEB3A72F7C56D3141FA53AB4F06DACD2FBB7FC (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_Expand_m03A7524684580D3921983BC2159C43E7F010C717 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m0B9E8FFBBCE87E63C0AC734ACC1DD56FC847DD98 (U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* __this, const RuntimeMethod* method) ;
|
|
inline bool List_1_Remove_m73FD26ED83A437CC8C770724A3887CE6CE0545DC (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Adapter_1_NotifyDataChanged_mEB20DF8CB26F5CFAB68F4F17129A4FAC908F6016 (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, const RuntimeMethod*))Adapter_1_NotifyDataChanged_m806A23F63815144D57BDF4A5FE4A3DDA69CE4B63_gshared)(__this, method);
|
|
}
|
|
inline void List_1_Clear_mCE6E8AC696882AE5172BF850786FD42B5EC9E001_inline (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline void Adapter_1_SetList_mC831823BEAD7EF24E78C2C9115247042E4A84B5D (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, const RuntimeMethod*))Adapter_1_SetList_m7248D260B2E96FF69BF339CEA6BCCAE28D668710_gshared)(__this, ___0_list, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass10_0__ctor_m82066613A2B1033A24DA21BB4CDBBFE53BC40DDD (U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* __this, const RuntimeMethod* method) ;
|
|
inline GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* List_1_Find_mFB470F8C716CD0393D276ADCA71DFCCD1DC7B1CD (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
return (( GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*, const RuntimeMethod*))List_1_Find_m5E78A210541B0D844FE27B94F509313623BE33D3_gshared)(__this, ___0_match, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupData__ctor_mB1ADEB884AA47DC569E8E678E231A31DB76D28B6 (GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* __this, int32_t ___0_type, String_t* ___1_viewName, String_t* ___2_name, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m7A1454F98FD5D62BD225B2C5B846D433A6ECB426_inline (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m725F9F3F3EDC754C2B6A313C000C9260B45CD211 (U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_InsertRange_mC78A0CD322C39BEEDB11FE4ABE1761B160DD6FCC (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m386ABA9B2C4950D31E787C87CDEF3D3E103F1B1A_gshared)(__this, ___0_index, ___1_collection, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m73A9A01DA1BC3E8ECE9601C26970E5CF58819E3F (U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_RemoveRange_mD6E55763BEDC1BC8FB9318CC2E894E6D96A2D246 (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0D2A25C95EFDC6E9CD22B663D9633426B51E3699_gshared)(__this, ___0_index, ___1_count, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
inline void Adapter_1_SetChoiceIndex_m15338460D02990C60920379CE21DC39E6E42B94B (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*, int32_t, const RuntimeMethod*))Adapter_1_SetChoiceIndex_mC0679E37A2EC0D5E5653E6AE2EED7696FB654C4A_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_1_Invoke_m14E63D4E00F8CF21CC6EB3F50F9D8EBA328DCC22_inline (Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t23196CB948F3937CC8818C6622617290FE263A2A*, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Adapter_1__ctor_m5226157496E913EECE85FF96C0F4E8037136F1C9 (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, const RuntimeMethod*))Adapter_1__ctor_mC1A35F6DAC75EFD9D7A3E03FE34DC5FEB1662D0C_gshared)(__this, ___0_recyclerView, method);
|
|
}
|
|
inline void Adapter_1__ctor_m1C80900B53CBE5A805520304F9CBC0C8403AED2B (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* ___1_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8*, const RuntimeMethod*))Adapter_1__ctor_mE71B28E4424E44B3DCD2E6A68E4A58EF07E72551_gshared)(__this, ___0_recyclerView, ___1_list, method);
|
|
}
|
|
inline void Adapter_1__ctor_m80B8B400A810D274A833178228593413CC7DD7F4 (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* ___1_list, Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2* ___2_onItemClick, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4*, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F*, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8*, Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2*, const RuntimeMethod*))Adapter_1__ctor_m22776BC38FDAA461CF6889DC8A45CFE5E8D8BC2A_gshared)(__this, ___0_recyclerView, ___1_list, ___2_onItemClick, method);
|
|
}
|
|
inline RuntimeObject* List_1_get_Item_m192832D449F45BBFEF93EA8AFB1F21BA67C5D0B6 (List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, 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 LinearLayoutManager__ctor_mB6545B1463D103A333765C2F1726DD0CDE6DDB1F (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, 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_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 Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, 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 void RectTransform_set_anchoredPosition3D_m214FBDBA019743FAED8FA03857475073AA0539C4 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67 (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline (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_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_inline (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_CeilToInt_mF2BF9F4261B3431DC20E10A46CFEEED103C48963_inline (float ___0_f, 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 Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RecyclerView_GetScrollPosition_mABC87E956A385236362D93B9F26D38A18A6179F5 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
inline RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
inline Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2 (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_inline (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* (*) (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296 (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, 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_EXTERN_C IL2CPP_METHOD_ATTR float MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RecyclerView_get_CurrentIndex_m90730FC6C570A10BD75D08C5598B3AC70E498809_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __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 Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Transform_GetChild_mE686DF0C7AAC1F7AEF356967B1C04D8B8E240EAF (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleViewProvider__ctor_m36312456041EDF58D941F0961B302101417146E7 (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedViewProvider__ctor_m427C7888F61B69A9B3CF63CB31526FE45C20CFEA (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, 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 void Scroller_set_ScrollSpeed_mEF7E70CCBFC4F7FE77FD88C01E80C6C3ED06B107_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_WheelSpeed_mAF72B2201E612CD5F5491150C350748C3CC46400_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_UpdateLayout_mB832BB641413BCAA98D72A31EE202EE1A578CFC5 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_RemoveViewHolder_mFD7ACE812F9A4CCE919E8378C83A2A6BCEEBAD38 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_CreateViewHolder_m5A6C79EC4D94F93B4B80D66F9A9311D2F29FA329 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ViewProvider_GetItemCount_mA590361C4A5D3B391D4D721B6F454E68FC4D5A06 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_Refresh_m74FFD3E2EA8CE9E5BE26F106B5A82AE11E2097E7 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_SnapTo_mF666D36913CC02E8CF7913072EC9C62D58C8DBAD (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Scroller_get_Position_m35047906601575F75F6517D738126D8D400AC571_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ConfigScroller_m0F7C98AB9BFFB87C726EF561FE8C994BD25DB46C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ConfigScrollbar_m9C982E595F9F30DC360D02A8387B5AC8343A8B2E (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_Dispose_m39E942F74747D518E77BC69EA8B3698FA4C9F095 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Position_m529B2AC9BF884B2344D094719890060F52A6BEC8_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewProvider_set_Adapter_m917C4297269D43BEDB1E3BD9F9F79B9E17BF9FCE_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewProvider_set_LayoutManager_m7087DB38D3E162F23393C467B4D9BC043F8D81A7_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Adapter_mE4AE12C288B386CA8349EB138A01F6C4D0277CAB_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_ViewProvider_mF69F66B44710401EDC85FCBBB9F0F7743AFD52B3_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Direction_mA60034A25B64C5D0E10EEC2B34AF40DB29910571_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Alignment_m1D0A697AF1E79A48454DCACF00722D48F0262C8F_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Spacing_m9D179720485C394311CBE430FF793F76C6DAE767_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Padding_m31AFCDFDEC2173C4FA6BE0A85271587B1C361A95_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecyclerView_get_CanScroll_mC5BAC8F46392B50DD9F4A18DAE8B81924413143C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_CanScroll_mA710E66B10B8A748B85ADE53995C2CA31F2A0935_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Snap_m57A1975BB6E7D9CD72D6B0C04CCED25B5EDDE86D_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
inline void UnityAction_1__ctor_mF770070D0A4FE93F6E04DA37D2EC60429EA545E5 (UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90*, RuntimeObject*, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_mF770070D0A4FE93F6E04DA37D2EC60429EA545E5_gshared)(__this, ___0_object, ___1_method, 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_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___0_call, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6* Scrollbar_get_onValueChanged_m14356CECC1A2BA96576EB73279AF2ECF28B26D6A_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method) ;
|
|
inline ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* GameObject_AddComponent_TisScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9_m1B9855584EB97993963365FFB804E01DBEB05BC2 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_Clear_m2579B4EE115A986778BF6FD15D28238E936A8870 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_SetContentSize_m4207BF2D3C58189470F5939C86A2358A15792B14 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Direction_mA4BD1025FD29C4073D5ABAEC22D341280A0DA648_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_ViewSize_m01453E9F561D68011FD475A2C97B9660C63A6CD6_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_ContentSize_m4423908D5FEE9FB6B18DB003F3B3DE5EAEE132D1_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scrollbar_set_direction_m1C307CE73857CD7D3FBB160FE66875CA6BA6A3C6 (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ViewSize_m7D4D1475EB8C7C6626E25353AC6ADB2CCECAA45C_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scrollbar_set_size_m5376982465D6013425FAB0CA8EFC620C3E1458FB (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_exists, const RuntimeMethod* method) ;
|
|
inline void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404*, int32_t, const RuntimeMethod*))Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ScrollTo_mC7B20C79284344FD9650AF15E6C8C585A2E522D4 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, int32_t ___0_index, bool ___1_smooth, 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 Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __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 Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller__ctor_m86D26F8E34EE197B952DC63EAE2D44406951E80E (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __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 UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934 (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB*, const RuntimeMethod*))UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934_gshared)(__this, method);
|
|
}
|
|
inline Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* Component_GetComponent_TisScrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3_m926D886710762EDEC3925BB69A204C1BB3E8E93D (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* Scrollbar_get_handleRect_mEC95A981B744C4DB961D8B5DF6D2B81132CBB238_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 Tween_ScaleX_mF52B8140B45F85AB22E4A3B7E4083611FCA22DC2 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_target, float ___1_endValue, float ___2_duration, int32_t ___3_ease, int32_t ___4_cycles, int32_t ___5_cycleMode, float ___6_startDelay, float ___7_endDelay, bool ___8_useUnscaledTime, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 Tween_ScaleY_m0A7DBF05F3A64F6B51C7AF0AB2244E5ED6AC23E6 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_target, float ___1_endValue, float ___2_duration, int32_t ___3_ease, int32_t ___4_cycles, int32_t ___5_cycleMode, float ___6_startDelay, float ___7_endDelay, bool ___8_useUnscaledTime, 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 MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318 (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_MoveTo_m6236F752EC753C5E66B989AC653E5A23AB107288 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812 (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, RuntimeObject* ___0_routine, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* Scroller_get_OnDragging_m39E46CA7834E932232A462EFB95736ABFCF1B2BC_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
inline void UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653 (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB* __this, bool ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tEEB36A367DCB5867E93AAF6BECAF3558CA71BECB*, bool, const RuntimeMethod*))UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_gshared)(__this, ___0_arg0, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_time_m3A271BB1B20041144AC5B7863B71AB1F0150374B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_GetScrollRate_mFEE7B6D9F178671E1D5A1C8DCB2713A130492819 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_ViewLength_m2C476EBE730CD7F6231296430B383F86799712BE (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_InertiaTo_m9C33DD630B81669F51923BBF8ACDB183A7CE2789 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_ElasticTo_m9732430646551A0579A8CEBD2F7D111D1306A4BD (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInertiaToU3Ed__62__ctor_mC4AB3F95D4F434C2EF334DCF8102A296D8986D95 (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CElasticToU3Ed__63__ctor_m4E0C078513D19706D4C2A100FF3B3EF978A8E5C1 (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToU3Ed__64__ctor_mF9A0CCC7C4A4FEEB586A1F8401EDDF5D300B3FAC (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CToPositionU3Ed__65__ctor_m429912B008D50C8468F0EB27AE9C8E005ECED8C9 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollerEvent__ctor_m283D2F5E15B94014C8BF55BEADB83201B18ED21D (ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MoveStopEvent__ctor_mD63236BA070CA8CB247F29847ED1B1B06D657E25 (MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DraggingEvent__ctor_m3E63DE7FE1CBA84484B01EFE6C8EF3098C6B145E (DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MoveingEvent__ctor_mEBDCE00B12EEEBC1004AA6C0D4E8C840AF3BA1E5 (MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_ToPosition_mA6DAE0B0DC12230119F4539B94D087B54D0A99BC (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, float ___1_speed, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double EaseUtil_EaseOutCirc_m069953831F9CF325C4465B77A318A3E3AF598312 (float ___0_x, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitForEndOfFrame__ctor_m4AF7E576C01E6B04443BB898B1AE5D645F7D45AB (WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663* __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) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ViewHolder_get_ChoiseState_mCC1DFDE039F952C346E5A528E689E43553C99710_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_ChoiseState_mF358BE6A225C0B7246341370C24D1E6D1E80E91D_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2__ctor_mAB759A84BCE85C027F3EE1D5B15431E381646AB4 (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider__ctor_m36E5F0086682C647E64983F93BB5528F1AF57A8E (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2_set_Item_m6AE0CD18AC9552D5D5E52EF6D5A17CD3B88189E7 (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* __this, String_t* ___0_key, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*, String_t*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* RecyclerView_get_Content_m9300D9F5D595725EECD0D63DF2F7122AE9EFDC7F (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method) ;
|
|
inline void UnityMixedComponentFactory_1__ctor_m1E0D6ABD5496821C28A39F11694870347F523D57 (UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317* __this, Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* ___0_dict, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317*, Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, const RuntimeMethod*))UnityMixedComponentFactory_1__ctor_mE4F79BFC0426BC7B3883B484A985D1CB7AD1EE8C_gshared)(__this, ___0_dict, ___1_parent, method);
|
|
}
|
|
inline void MixedObjectPool_1__ctor_mA379D3D86790D0089F70B3CEBDF0251F9DD4E1B5 (MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5* __this, RuntimeObject* ___0_factory, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5*, RuntimeObject*, const RuntimeMethod*))MixedObjectPool_1__ctor_m1F410FC5C183C270E50F46FADA32AEBC09D72580_gshared)(__this, ___0_factory, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_mA41317A57F5C1C0E3F59C7EB25ABD484564B23D4 (NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* Dictionary_2_get_Item_m74EE8DFCA37549AEBACFB513B13C5674C8E0F445 (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* __this, String_t* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* (*) (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*, String_t*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C* Dictionary_2_get_Values_mBB0AEECB6A0CD28970D51D79CE29B8F653785A89 (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C* (*) (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*, const RuntimeMethod*))Dictionary_2_get_Values_mA0C01DEA55329E55380E96BBD04D4D228B437EC5_gshared)(__this, method);
|
|
}
|
|
inline ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* Enumerable_ToArray_TisViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A_m273AEA9B2E3D880E2CA048DED48168A656A751BF (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_mA54265C2C8A0864929ECD300B75E4952D553D17D_gshared)(___0_source, method);
|
|
}
|
|
inline void UnityComponentFactory_1__ctor_mD0E53E1EE5538ACB55414EC28132956DB64C9544 (UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66* __this, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___0_template, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, const RuntimeMethod*))UnityComponentFactory_1__ctor_mFD27BA374032592A125E0387154A5D605E5EB483_gshared)(__this, ___0_template, ___1_parent, method);
|
|
}
|
|
inline void ObjectPool_1__ctor_m6863D4D1A7ABD4276A9DA677B202EDFACECF2E03 (ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273* __this, RuntimeObject* ___0_factory, int32_t ___1_maxSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273*, RuntimeObject*, int32_t, const RuntimeMethod*))ObjectPool_1__ctor_m8CDD2FEC9A7177390C9E924C30FB414F4CA3CD1B_gshared)(__this, ___0_factory, ___1_maxSize, method);
|
|
}
|
|
inline void List_1__ctor_m5A6C71088F25EC93F17C21F87017DD4882FAF97C (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_Name_mBF29D7AEC171A40D34CD1326E81660C9AFF53E42_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_Index_mF010EDE38E34A23D1B74E6FAF310ED7435F31A8D_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_mD3B54E45B4C6B333CB80734FD29A9C7DAE4168EB_inline (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ViewProvider_GetViewHolderIndex_m5CA18FA6B92E9033FCD4BA49A57CD021960A56CD (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
inline void List_1_RemoveAt_m65838220B412C5284F74DCF960AE44C789451C02 (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_inline (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ViewHolder_get_SizeDelta_mF220CEFA7E8FE98B631DB054BDF8F7C0F461C0B5 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, 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_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2 (float* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* 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) ;
|
|
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);
|
|
}
|
|
#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
|
|
#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
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D__ctor_mF9F5887FA7B0BF609E5AE83735FFEE49968DE915 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
L_0 = Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline(NULL);
|
|
__this->___color = L_0;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_1 = ___0_type;
|
|
__this->___type = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D__ctor_mEB74CA2BCB03CF242922734BD559C4A0F69B7169 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, UIVertex_tF5C663F4BBC786C9D56C28016FF66E6C6BF85207 ___0_vertex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
L_0 = Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline(NULL);
|
|
__this->___color = L_0;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___type = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vert2D_CompareToVertically_mE552EFC66D85E4268BD1AEF1DE0910B146446439 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_vert, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_0 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_1 = L_0->___y;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_2 = ___0_vert;
|
|
NullCheck(L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_2->___uv0);
|
|
float L_4 = L_3->___y;
|
|
if ((!(((float)L_1) > ((float)L_4))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_6 = L_5->___y;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_7 = ___0_vert;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_7->___uv0);
|
|
float L_9 = L_8->___y;
|
|
if ((!(((float)L_6) == ((float)L_9))))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_11 = L_10->___x;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_12 = ___0_vert;
|
|
NullCheck(L_12);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_12->___uv0);
|
|
float L_14 = L_13->___x;
|
|
if ((!(((float)L_11) <= ((float)L_14))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vert2D_CompareToHorizontally_m637A2E1B307E2EEFEDCCC839CF949E05804AE4DD (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_vert, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_0 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_1 = L_0->___x;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_2 = ___0_vert;
|
|
NullCheck(L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_2->___uv0);
|
|
float L_4 = L_3->___x;
|
|
if ((!(((float)L_1) > ((float)L_4))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_6 = L_5->___x;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_7 = ___0_vert;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_7->___uv0);
|
|
float L_9 = L_8->___x;
|
|
if ((!(((float)L_6) == ((float)L_9))))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_11 = L_10->___y;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_12 = ___0_vert;
|
|
NullCheck(L_12);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_12->___uv0);
|
|
float L_14 = L_13->___y;
|
|
if ((!(((float)L_11) <= ((float)L_14))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D_SetColor_mC3778677EAD86BFD04AAC34F52E7756FE4C33DFC (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_col, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_0 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = ___0_col;
|
|
float L_2 = L_1.___r;
|
|
L_0->___r = L_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_3 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___0_col;
|
|
float L_5 = L_4.___g;
|
|
L_3->___g = L_5;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_6 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___0_col;
|
|
float L_8 = L_7.___b;
|
|
L_6->___b = L_8;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D_SetAlpha_m9A540D5B65B9EDEAF5D44B094FC8F669424F9744 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, float ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_0 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color);
|
|
float L_1 = ___0_a;
|
|
L_0->___a = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D_SetUV_mCE54B1AC37F172A9835B93BDDF95192D82D11EF9 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, float ___0_u, float ___1_v, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_0 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_1 = ___0_u;
|
|
L_0->___x = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___uv0);
|
|
float L_3 = ___1_v;
|
|
L_2->___y = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vert2D_SetPosition_mFF3FDD1F53BC4F3A990DE4FC0527AE3C047F3981 (Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_pos, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_0 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___position);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___0_pos;
|
|
float L_2 = L_1.___x;
|
|
L_0->___x = L_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_3 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___position);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_pos;
|
|
float L_5 = L_4.___y;
|
|
L_3->___y = L_5;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* L_6 = (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2*)(&__this->___position);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___0_pos;
|
|
float L_8 = L_7.___z;
|
|
L_6->___z = L_8;
|
|
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 IL2CPP_METHOD_ATTR bool Comparer_Equals_m075B21BBD1E6BFB984A97E012124969CB1A468C7 (Comparer_t2B3666F075AF8D903E474E2EAFDAED04D158586E* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_x, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_0 = ___0_x;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___uv0;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_2 = ___1_y;
|
|
NullCheck(L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = L_2->___uv0;
|
|
bool L_4;
|
|
L_4 = Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline(L_1, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_GetHashCode_mF6F63A3DEC45BBFF15A934464E0303DA19EFACF6 (Comparer_t2B3666F075AF8D903E474E2EAFDAED04D158586E* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_0 = ___0_obj;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_0->___uv0);
|
|
int32_t L_2;
|
|
L_2 = Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline(L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_mC64FBED79EB4F4503E0337A498D94FCB8049C20B (Comparer_t2B3666F075AF8D903E474E2EAFDAED04D158586E* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m7EA0F32B14B4E3253B041D976B0515AEA427B9BC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* L_0 = (U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E*)il2cpp_codegen_object_new(U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m9A0A6CF0A44BDC8C69EFC1CABA0147B274B84E7F(L_0, NULL);
|
|
((U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9A0A6CF0A44BDC8C69EFC1CABA0147B274B84E7F (U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3COnPopulateMeshU3Eb__69_0_m29E5026D688CD762FD429A9D152EADF585D01B21 (U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_x, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_0 = ___0_x;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_1 = ___1_y;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = Vert2D_CompareToVertically_mE552EFC66D85E4268BD1AEF1DE0910B146446439(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3COnPopulateMeshU3Eb__69_1_m2338E5A1505D52960F5507A5EA9D5C17B94EE895 (U3CU3Ec_tCBF54732086F2B012862B480C63C2548735FC71E* __this, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___0_x, Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_0 = ___0_x;
|
|
Vert2D_tD6D4F28EE1F1EC7E2DCAE6D6FE0072813B5C4EF4* L_1 = ___1_y;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = Vert2D_CompareToHorizontally_m637A2E1B307E2EEFEDCCC839CF949E05804AE4DD(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void UXTextMeshPro_Start_mB493B6E4F7864EF750F4F691B1E6F051C29037AD (UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE* __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;
|
|
}
|
|
{
|
|
UIBehaviour_Start_mB12643ED6D859CD3682B4BF5B9CA7F72E8A72B45(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Application_get_isPlaying_m25B0ABDFEF54F5370CD3F263A813540843D00F34(NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
UXTextMeshPro_ChangeLanguage_mEE02B19414EF9582AE79814D6D27ED4FC50652DF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXTextMeshPro_ChangeLanguage_mEE02B19414EF9582AE79814D6D27ED4FC50652DF (UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IUXLocalizationHelper_t5FFA87FED03F40177DC8FB04E4D462FAE8A24ABE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = __this->___m_localizationKey;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___m_localizationKey;
|
|
NullCheck(_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318);
|
|
bool L_3;
|
|
L_3 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318, L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ((UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_StaticFields*)il2cpp_codegen_static_fields_for(UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_il2cpp_TypeInfo_var))->___LocalizationHelper;
|
|
if (!L_4)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = ((UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_StaticFields*)il2cpp_codegen_static_fields_for(UXComponentExtensionsHelper_t3B0EC6AF33E27E837EF8D813813CAB5EC4CD698D_il2cpp_TypeInfo_var))->___LocalizationHelper;
|
|
String_t* L_6 = __this->___m_localizationKey;
|
|
NullCheck(L_5);
|
|
String_t* L_7;
|
|
L_7 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(0, IUXLocalizationHelper_t5FFA87FED03F40177DC8FB04E4D462FAE8A24ABE_il2cpp_TypeInfo_var, L_5, L_6);
|
|
VirtualActionInvoker1< String_t* >::Invoke(66, __this, L_7);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXTextMeshPro_SetLocalization_mA4BBCCC0B04E49BFFE22688E5E522F95AF68AC07 (UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE* __this, String_t* ___0_localizationID, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_localizationID;
|
|
__this->___m_localizationKey = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_localizationKey), (void*)L_0);
|
|
UXTextMeshPro_ChangeLanguage_mEE02B19414EF9582AE79814D6D27ED4FC50652DF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXTextMeshPro__ctor_m5EC1A2F187A99BA26645C88FDF7A873DBAC37AB1 (UXTextMeshPro_t2E4024F7F801773C415A5567B6B85EA1D8D5F2EE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___m_localizationKey = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_localizationKey), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
il2cpp_codegen_runtime_class_init_inline(TextMeshProUGUI_t101091AF4B578BB534C92E9D1EEAF0611636D957_il2cpp_TypeInfo_var);
|
|
TextMeshProUGUI__ctor_m3733FC98975BAD7C96BA932B8BE6A63602BA83B3(__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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityGameObjectFactory__ctor_mAD1AA4C222C9B92893F7A6271CF2D0F8909BBB6C (UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_template, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_template;
|
|
__this->___template = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___template), (void*)L_0);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = ___1_parent;
|
|
__this->___parent = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___parent), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* UnityGameObjectFactory_Create_m04419309D29C834BA81197AB06624D3BF021B79A (UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = __this->___parent;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811(L_0, L_1, Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityGameObjectFactory_Reset_mCD1470102EA641969A1A271858F9D978830C00BF (UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_obj;
|
|
NullCheck(L_0);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_0, (bool)0, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___0_obj;
|
|
NullCheck(L_1);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_2;
|
|
L_2 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_1, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_2);
|
|
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156(L_2, L_3, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = ___0_obj;
|
|
NullCheck(L_4);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
|
|
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_6;
|
|
L_6 = Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline(NULL);
|
|
NullCheck(L_5);
|
|
Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D(L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityGameObjectFactory_Destroy_mE5A8BFB536AF9638EE1325A0FDC776E26EBC1B90 (UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_obj, 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* L_0 = ___0_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityGameObjectFactory_Validate_m4E3F1946E8D122728B941E3E35EF6BB0FCA280DD (UnityGameObjectFactory_t5D7A55D28876229C46A23F864B3480BFFAB0A092* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void UnityMixedGameObjectFactory__ctor_m7895982090D30B173A7393D1CF4256C015016F30 (UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_template, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_parent, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___0_template;
|
|
__this->___template = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___template), (void*)L_0);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = ___1_parent;
|
|
__this->___parent = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___parent), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* UnityMixedGameObjectFactory_Create_mD99340FAC0FC42B61D3701D2F1310C831F591F2D (UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87* __this, String_t* ___0_typeName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Resources_Load_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m496A3B1B60A28F5E0397043974B848C9157B625A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9721D3DCBC6F1B0779AEC0391045510E0059948B);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___template;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = __this->___parent;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2;
|
|
L_2 = Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811(L_0, L_1, Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
String_t* L_3 = ___0_typeName;
|
|
String_t* L_4;
|
|
L_4 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral9721D3DCBC6F1B0779AEC0391045510E0059948B, L_3, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5;
|
|
L_5 = Resources_Load_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m496A3B1B60A28F5E0397043974B848C9157B625A(L_4, Resources_Load_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m496A3B1B60A28F5E0397043974B848C9157B625A_RuntimeMethod_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7;
|
|
L_7 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_6, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_8;
|
|
L_8 = Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811(L_5, L_7, Object_Instantiate_TisGameObject_t76FEDD663AB33C991A9C9A23129337651094216F_m58C654F1134533E29502629CA67645682B404811_RuntimeMethod_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = L_8;
|
|
NullCheck(L_9);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_10;
|
|
L_10 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_9, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11;
|
|
L_11 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_10);
|
|
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156(L_10, L_11, NULL);
|
|
NullCheck(L_9);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_12;
|
|
L_12 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_9, NULL);
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_13;
|
|
L_13 = Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline(NULL);
|
|
NullCheck(L_12);
|
|
Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D(L_12, L_13, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14 = V_0;
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityMixedGameObjectFactory_Destroy_mFCB28ED9591BFCD0F63C304239EEAC649EAACB33 (UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87* __this, String_t* ___0_typeName, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_obj, 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* L_0 = ___1_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityMixedGameObjectFactory_Reset_m5E4A74F5F2A8ECE21EF02A50626B4F30E7AA7E03 (UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87* __this, String_t* ___0_typeName, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = ___1_obj;
|
|
NullCheck(L_0);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_0, (bool)0, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1 = ___1_obj;
|
|
NullCheck(L_1);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_2;
|
|
L_2 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_1, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_2);
|
|
Transform_set_position_mA1A817124BB41B685043DED2A9BA48CDF37C4156(L_2, L_3, NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = ___1_obj;
|
|
NullCheck(L_4);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5;
|
|
L_5 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_4, NULL);
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_6;
|
|
L_6 = Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline(NULL);
|
|
NullCheck(L_5);
|
|
Transform_set_rotation_m61340DE74726CF0F9946743A727C4D444397331D(L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityMixedGameObjectFactory_Validate_mC84DA62B3853BCAD30952AF9829CBAC82381AD7F (UnityMixedGameObjectFactory_tC44EF2A9D186A910C3C202372EB0A97429BB9F87* __this, String_t* ___0_typeName, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___1_obj, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void UIMetaRegistryInitializer_RegisterAll_mF3289EF454400448C7068C6EB8B1DAE258ACE445 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
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 IL2CPP_METHOD_ATTR void UIResRegistryInitializer_RegisterAll_m3084CED17E9EBBA181F1C6C69CF1EDF5A496B6F2 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
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 IL2CPP_METHOD_ATTR void UXHotkey_OnValidate_m8E53198D79F7D951812EEC32CCA7ECE133352CFC (UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisUXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_mBD7930E930E3A30CD4ADB7953FD2E70AB4AECC60_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* L_0;
|
|
L_0 = Component_GetComponent_TisUXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_mBD7930E930E3A30CD4ADB7953FD2E70AB4AECC60(__this, Component_GetComponent_TisUXButton_tAC89BF6126388CDA4562439E5531356DD24AF107_mBD7930E930E3A30CD4ADB7953FD2E70AB4AECC60_RuntimeMethod_var);
|
|
__this->____button = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____button), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXHotkey_HotkeyActionTrigger_m611EB6C3FB6FEAF1E47512B5D4DAF40FED11BC33 (UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* L_0 = __this->____button;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = UXButton_get_Interactable_m294867322832CB537EA0D0E2D96019C154111731_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* L_2 = __this->____button;
|
|
NullCheck(L_2);
|
|
UXButton_OnSubmit_mEDBD9C943B184D786B471E6859473A853507CC08(L_2, (BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F*)NULL, NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXHotkey__ctor_mC1E2A48E3DD87A0FC5B5DB4491CC86F300ACD970 (UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXDraggable_UnityEngine_EventSystems_IDragHandler_OnDrag_m965901E5FDEA37C3AAB8B25CCBB7F35DF7DFCA36 (UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B2_0 = NULL;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B1_0 = NULL;
|
|
{
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_0 = __this->___onDrag;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_eventData;
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20(G_B2_0, L_2, UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXDraggable_UnityEngine_EventSystems_IBeginDragHandler_OnBeginDrag_m2E7F093B1493378F3D3C0AE19102B49D5656C103 (UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B2_0 = NULL;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B1_0 = NULL;
|
|
{
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_0 = __this->___onBeginDrag;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_eventData;
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20(G_B2_0, L_2, UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXDraggable_UnityEngine_EventSystems_IEndDragHandler_OnEndDrag_mBE0FD6E11DE14BCBFEAB350B38F9ACF4AF361180 (UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B2_0 = NULL;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* G_B1_0 = NULL;
|
|
{
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_0 = __this->___onEndDrag;
|
|
UnityEvent_1_t246E957CC4C55776B735AB1937E08A4264B58B46* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_eventData;
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20(G_B2_0, L_2, UnityEvent_1_Invoke_m768DD8D2194DCE6F09DA74F8A50E4EAB446DFE20_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXDraggable__ctor_mC4D850DC461D4836CD2F94C0FFDA38B88E11CF46 (UXDraggable_t36FF787EFEAA5CAEFB290A5000FA7112B6243FA1* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation_OnValidate_m271313FAB1D1EB25BAC2B709E36340093E7A7BAB (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisAnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1_m11BEC94A2A9C0D8DA3A0150285850F76C5A1643E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* L_0;
|
|
L_0 = Component_GetComponent_TisAnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1_m11BEC94A2A9C0D8DA3A0150285850F76C5A1643E(__this, Component_GetComponent_TisAnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1_m11BEC94A2A9C0D8DA3A0150285850F76C5A1643E_RuntimeMethod_var);
|
|
__this->___animationFlow = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___animationFlow), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation_Awake_m81F6F942B095A7ADD202CA25BA4535965CFAFAB0 (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __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*)&Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_0;
|
|
L_0 = Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC(__this, Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC_RuntimeMethod_var);
|
|
__this->____holderObjectBase = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____holderObjectBase), (void*)L_0);
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_1 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = L_2->___OnWindowShowEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, __this, (intptr_t)((void*)UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_5;
|
|
L_5 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_3, L_4, NULL);
|
|
NullCheck(L_2);
|
|
L_2->___OnWindowShowEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_5, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_2->___OnWindowShowEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_5, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_6 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_7 = L_6;
|
|
NullCheck(L_7);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = L_7->___OnWindowClosedEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_9, __this, (intptr_t)((void*)UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_10;
|
|
L_10 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_8, L_9, NULL);
|
|
NullCheck(L_7);
|
|
L_7->___OnWindowClosedEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_10, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_7->___OnWindowClosedEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_10, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation_OnDestroy_mE44EB80A941714AFDDAB02DF456FEA85A5BC1E0F (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __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*)&UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_0 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = L_1->___OnWindowShowEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_3, __this, (intptr_t)((void*)UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
NullCheck(L_1);
|
|
L_1->___OnWindowShowEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___OnWindowShowEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_5 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_6 = L_5;
|
|
NullCheck(L_6);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = L_6->___OnWindowClosedEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_8, __this, (intptr_t)((void*)UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_9;
|
|
L_9 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_7, L_8, NULL);
|
|
NullCheck(L_6);
|
|
L_6->___OnWindowClosedEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_9, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_6->___OnWindowClosedEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_9, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation_ShowAnimation_m63CE5756D1B8F4DD295327FFFBDD0A5F75E7DE2D (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* L_0 = __this->___animationFlow;
|
|
String_t* L_1 = __this->___ShowAnimationName;
|
|
NullCheck(L_0);
|
|
AnimationFlow_Play_m057D4AA431EC04FBCBC4DD723F581526A1E05C8D(L_0, L_1, (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)NULL, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation_CloseAnimation_m486A4FE8AB7FCFE2EE3AFE9429C09F81E9381446 (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationFlow_t2B7D5D29716050E20BD23731BD4761494F9575B1* L_0 = __this->___animationFlow;
|
|
String_t* L_1 = __this->___HideAnimationName;
|
|
NullCheck(L_0);
|
|
AnimationFlow_Play_m057D4AA431EC04FBCBC4DD723F581526A1E05C8D(L_0, L_1, (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)NULL, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UXUIAnimation__ctor_mB6405D64103253889DA33A413D80A34DC9B73010 (UXUIAnimation_t9D3FCB5FA6C095BC4DA375C7BF7B4D5FFA1BB14B* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HotkeyBindComponent_Awake_m799F6D84EF90CE3EFB78FB39C0EC3492D50D2BF0 (HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE* __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*)&Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_0;
|
|
L_0 = Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC(__this, Component_GetComponent_TisUIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702_mAB22F6604DB80FEC3E40BEBFC06D402692B28DAC_RuntimeMethod_var);
|
|
__this->____holderObjectBase = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____holderObjectBase), (void*)L_0);
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_1 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = L_2->___OnWindowShowEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, __this, (intptr_t)((void*)HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_5;
|
|
L_5 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_3, L_4, NULL);
|
|
NullCheck(L_2);
|
|
L_2->___OnWindowShowEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_5, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_2->___OnWindowShowEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_5, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_6 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_7 = L_6;
|
|
NullCheck(L_7);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = L_7->___OnWindowClosedEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_9, __this, (intptr_t)((void*)HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_10;
|
|
L_10 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_8, L_9, NULL);
|
|
NullCheck(L_7);
|
|
L_7->___OnWindowClosedEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_10, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_7->___OnWindowClosedEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_10, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HotkeyBindComponent_OnDestroy_mD031B7E8F9F24B27BAC20DAB6ED0B0486392DBA9 (HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE* __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*)&HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_0 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = L_1->___OnWindowShowEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_3, __this, (intptr_t)((void*)HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
NullCheck(L_1);
|
|
L_1->___OnWindowShowEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___OnWindowShowEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_5 = __this->____holderObjectBase;
|
|
UIHolderObjectBase_t5892BF747BADF3D34ACAA0515BE2CD41CA674702* L_6 = L_5;
|
|
NullCheck(L_6);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = L_6->___OnWindowClosedEvent;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_8, __this, (intptr_t)((void*)HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_9;
|
|
L_9 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_7, L_8, NULL);
|
|
NullCheck(L_6);
|
|
L_6->___OnWindowClosedEvent = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_9, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_6->___OnWindowClosedEvent), (void*)((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_9, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var)));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HotkeyBindComponent_BindHotKeys_m0547624E05B2B2BB65CAECBEAD0706BEEC237C15 (HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60* L_0 = __this->___hotButtons;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
UXHotkeyHotkeyExtension_BindHotKey_m318A40FE5CF238B5F7E378354085983139497CE1(L_3, NULL);
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60* L_6 = __this->___hotButtons;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HotkeyBindComponent_UnBindHotKeys_mB6314CF71223CE488CEDEA2F91C8C43377FAE4BE (HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60* L_0 = __this->___hotButtons;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
UXHotkey_t258912A216E9504F449828C1D17BE9C374588C5E* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
UXHotkeyHotkeyExtension_UnBindHotKey_m193DFBF3816C69A6FF0699E14A8C18F086D36F6B(L_3, NULL);
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
UXHotkeyU5BU5D_t052CA94C7B236FE59BDCFAF4B72DE57B7D5C0A60* L_6 = __this->___hotButtons;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HotkeyBindComponent__ctor_mD86A355D27290BE878082A900FA34913CC7F0748 (HotkeyBindComponent_tC1DB19EE1269B7E17E5B88E1BFC928DA8F80E0FE* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetPropertyUtility_SetColor_mE55A1EE4423192B81A5F1969DB25EFBCEC192A4C (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___0_currentValue, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_newValue, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_0 = ___0_currentValue;
|
|
float L_1 = L_0->___r;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_newValue;
|
|
float L_3 = L_2.___r;
|
|
if ((!(((float)L_1) == ((float)L_3))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_4 = ___0_currentValue;
|
|
float L_5 = L_4->___g;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = ___1_newValue;
|
|
float L_7 = L_6.___g;
|
|
if ((!(((float)L_5) == ((float)L_7))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_8 = ___0_currentValue;
|
|
float L_9 = L_8->___b;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_10 = ___1_newValue;
|
|
float L_11 = L_10.___b;
|
|
if ((!(((float)L_9) == ((float)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_12 = ___0_currentValue;
|
|
float L_13 = L_12->___a;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_14 = ___1_newValue;
|
|
float L_15 = L_14.___a;
|
|
if ((!(((float)L_13) == ((float)L_15))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_16 = ___0_currentValue;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_17 = ___1_newValue;
|
|
*(Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)L_16 = L_17;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void GroupAdapter__ctor_m3B6C366892F72F4895C7552E00A7F4FA761229CC (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, String_t* ___1_groupViewName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_m3613B99C32927B766D7A29B6B58E2ECB89C5F358_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*)il2cpp_codegen_object_new(List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64(L_0, List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
__this->___showList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___showList), (void*)L_0);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_1 = ___0_recyclerView;
|
|
Adapter_1__ctor_m3613B99C32927B766D7A29B6B58E2ECB89C5F358(__this, L_1, Adapter_1__ctor_m3613B99C32927B766D7A29B6B58E2ECB89C5F358_RuntimeMethod_var);
|
|
String_t* L_2 = ___1_groupViewName;
|
|
__this->___groupViewName = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___groupViewName), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter__ctor_m104AB7C3E911C2CF8FBEA30644F0F625F36C70F7 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___1_list, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_mD182E15A9CCDEFE45CB7C1F224DF6CEB468FC6FD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*)il2cpp_codegen_object_new(List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64(L_0, List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
__this->___showList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___showList), (void*)L_0);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_1 = ___0_recyclerView;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_2 = ___1_list;
|
|
Adapter_1__ctor_mD182E15A9CCDEFE45CB7C1F224DF6CEB468FC6FD(__this, L_1, L_2, Adapter_1__ctor_mD182E15A9CCDEFE45CB7C1F224DF6CEB468FC6FD_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter__ctor_m3CB51E6178B2718E0C9BA067787D880762A79FC3 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___1_list, Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* ___2_onItemClick, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_mBC90A89476E389E2EF4C90E4EEFAB8FEFEF02735_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = (List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9*)il2cpp_codegen_object_new(List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64(L_0, List_1__ctor_mFB06A18F358111BDCEC4074E1D370350DC7EDB64_RuntimeMethod_var);
|
|
__this->___showList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___showList), (void*)L_0);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_1 = ___0_recyclerView;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_2 = ___1_list;
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* L_3 = ___2_onItemClick;
|
|
Adapter_1__ctor_mBC90A89476E389E2EF4C90E4EEFAB8FEFEF02735(__this, L_1, L_2, L_3, Adapter_1__ctor_mBC90A89476E389E2EF4C90E4EEFAB8FEFEF02735_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GroupAdapter_GetItemCount_m382997799C1C3499E9991A164B8D6CFC857E276C (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = __this->___showList;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_inline(L_0, List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* GroupAdapter_GetViewName_m3DA6D69F74F0A1B249399430AACBAFCACD51DACC (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = __this->___showList;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_2;
|
|
L_2 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_0, L_1, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
String_t* L_3 = L_2->___viewName;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_OnBindViewHolder_m796BB2ADC3BF23D7F2089810C8F57434E67A54C5 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___0_viewHolder, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t23196CB948F3937CC8818C6622617290FE263A2A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass7_0_U3COnBindViewHolderU3Eb__0_m6CCBA1EBB8C4FF3814D0A156CAFE04586B04C051_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ViewHolder_BindItemClick_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_m6E1B27E8366039E9801761D20ECD3499470ADF9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ViewHolder_BindViewData_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_mC5B4CD24B691D7316A88A57B552115E653500B69_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* V_0 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_0 = (U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass7_0__ctor_m67CE3DED5CB772FADCB1631A49339008F8DF0327(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_2 = V_0;
|
|
int32_t L_3 = ___1_index;
|
|
NullCheck(L_2);
|
|
L_2->___index = L_3;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___index;
|
|
if ((((int32_t)L_5) < ((int32_t)0)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___index;
|
|
int32_t L_8;
|
|
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(9, __this);
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_9 = V_0;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_10 = __this->___showList;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = L_11->___index;
|
|
NullCheck(L_10);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_13;
|
|
L_13 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_10, L_12, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
L_9->___data = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_9->___data), (void*)L_13);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_14 = ___0_viewHolder;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_16 = L_15->___data;
|
|
NullCheck(L_14);
|
|
GenericVirtualActionInvoker1< GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* >::Invoke(ViewHolder_BindViewData_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_mC5B4CD24B691D7316A88A57B552115E653500B69_RuntimeMethod_var, L_14, L_16);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_17 = ___0_viewHolder;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_19 = L_18->___data;
|
|
U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* L_20 = V_0;
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* L_21 = (Action_1_t23196CB948F3937CC8818C6622617290FE263A2A*)il2cpp_codegen_object_new(Action_1_t23196CB948F3937CC8818C6622617290FE263A2A_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m51CE6D98AC647E8AA8FB5AEC8AFDBAABEF8D97BC(L_21, L_20, (intptr_t)((void*)U3CU3Ec__DisplayClass7_0_U3COnBindViewHolderU3Eb__0_m6CCBA1EBB8C4FF3814D0A156CAFE04586B04C051_RuntimeMethod_var), NULL);
|
|
NullCheck(L_17);
|
|
GenericVirtualActionInvoker2< GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*, Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* >::Invoke(ViewHolder_BindItemClick_TisGroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_m6E1B27E8366039E9801761D20ECD3499470ADF9C_RuntimeMethod_var, L_17, L_19, L_21);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_NotifyDataChanged_mCEDC151DCA61158846D225468395936D60B67093 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1_NotifyDataChanged_mEB20DF8CB26F5CFAB68F4F17129A4FAC908F6016_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupAdapter_U3CNotifyDataChangedU3Eb__8_0_m769795289BAEA7938EF2C035111EB2BC4D714A2C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_mE6568D1644F6B4A84A125109851AA0817BCE91B0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m73FD26ED83A437CC8C770724A3887CE6CE0545DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass8_0_U3CNotifyDataChangedU3Eb__1_m1C7CDB675FA8C0B0605CABFB61A70FDEA0500B3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* V_0 = NULL;
|
|
Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* V_5 = NULL;
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = ((Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*)__this)->___list;
|
|
NullCheck(L_0);
|
|
Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01 L_1;
|
|
L_1 = List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72(L_0, List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72_RuntimeMethod_var);
|
|
V_1 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002d:
|
|
{
|
|
Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0((&V_1), Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_2;
|
|
L_2 = Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_inline((&V_1), Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_RuntimeMethod_var);
|
|
V_2 = L_2;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_3 = V_2;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___type;
|
|
GroupAdapter_CreateGroup_m019A5562DB2F1D1649AF3E8E9A4CA1615F48ADE6(__this, L_4, NULL);
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
bool L_5;
|
|
L_5 = Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2((&V_1), Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_6 = __this->___showList;
|
|
Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* L_7 = (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*)il2cpp_codegen_object_new(Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73(L_7, __this, (intptr_t)((void*)GroupAdapter_U3CNotifyDataChangedU3Eb__8_0_m769795289BAEA7938EF2C035111EB2BC4D714A2C_RuntimeMethod_var), NULL);
|
|
NullCheck(L_6);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_8;
|
|
L_8 = List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882(L_6, L_7, List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
V_0 = L_8;
|
|
V_3 = 0;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_9 = __this->___showList;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_10 = V_0;
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_10);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_12;
|
|
L_12 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_10, L_11, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
int32_t L_13;
|
|
L_13 = List_1_IndexOf_mE6568D1644F6B4A84A125109851AA0817BCE91B0(L_9, L_12, List_1_IndexOf_mE6568D1644F6B4A84A125109851AA0817BCE91B0_RuntimeMethod_var);
|
|
V_4 = L_13;
|
|
int32_t L_14 = V_4;
|
|
GroupAdapter_Collapse_m80FEB3A72F7C56D3141FA53AB4F06DACD2FBB7FC(__this, L_14, NULL);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_15 = V_0;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_17;
|
|
L_17 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_15, L_16, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_17);
|
|
bool L_18 = L_17->___bExpand;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_4;
|
|
GroupAdapter_Expand_m03A7524684580D3921983BC2159C43E7F010C717(__this, L_19, NULL);
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
int32_t L_20 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_21 = V_3;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_inline(L_22, List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
if ((((int32_t)L_21) < ((int32_t)L_23)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
Enumerator_tA88F91865FADFF30660CB9D461F62800AE9DCB01 L_25;
|
|
L_25 = List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72(L_24, List_1_GetEnumerator_mA1D558DA1C1C163DBD48AA2B9593313BAEFACF72_RuntimeMethod_var);
|
|
V_1 = L_25;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00f1:
|
|
{
|
|
Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0((&V_1), Enumerator_Dispose_mB87C0753B6FFF9A3A2B0A83C6FB8EB268F5879E0_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00e6_1;
|
|
}
|
|
|
|
IL_009f_1:
|
|
{
|
|
U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* L_26 = (U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass8_0__ctor_m0B9E8FFBBCE87E63C0AC734ACC1DD56FC847DD98(L_26, NULL);
|
|
V_5 = L_26;
|
|
U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* L_27 = V_5;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_28;
|
|
L_28 = Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_inline((&V_1), Enumerator_get_Current_m74514C79D681DE909D0A281F1DC401B0F9E01B16_RuntimeMethod_var);
|
|
NullCheck(L_27);
|
|
L_27->___group = L_28;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_27->___group), (void*)L_28);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_29 = ((Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*)__this)->___list;
|
|
U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* L_30 = V_5;
|
|
Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* L_31 = (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*)il2cpp_codegen_object_new(Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73(L_31, L_30, (intptr_t)((void*)U3CU3Ec__DisplayClass8_0_U3CNotifyDataChangedU3Eb__1_m1C7CDB675FA8C0B0605CABFB61A70FDEA0500B3D_RuntimeMethod_var), NULL);
|
|
NullCheck(L_29);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_32;
|
|
L_32 = List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882(L_29, L_31, List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_inline(L_32, List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
if (L_33)
|
|
{
|
|
goto IL_00e6_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_34 = __this->___showList;
|
|
U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* L_35 = V_5;
|
|
NullCheck(L_35);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_36 = L_35->___group;
|
|
NullCheck(L_34);
|
|
bool L_37;
|
|
L_37 = List_1_Remove_m73FD26ED83A437CC8C770724A3887CE6CE0545DC(L_34, L_36, List_1_Remove_m73FD26ED83A437CC8C770724A3887CE6CE0545DC_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
bool L_38;
|
|
L_38 = Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2((&V_1), Enumerator_MoveNext_m19CE5F178A610AD2E04F8E4FB2BFADA988C44DD2_RuntimeMethod_var);
|
|
if (L_38)
|
|
{
|
|
goto IL_009f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
Adapter_1_NotifyDataChanged_mEB20DF8CB26F5CFAB68F4F17129A4FAC908F6016(__this, Adapter_1_NotifyDataChanged_mEB20DF8CB26F5CFAB68F4F17129A4FAC908F6016_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_SetList_mCACE54D3A02E0955B7E1690426FB98824700BD5D (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1_SetList_mC831823BEAD7EF24E78C2C9115247042E4A84B5D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mCE6E8AC696882AE5172BF850786FD42B5EC9E001_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_0 = __this->___showList;
|
|
NullCheck(L_0);
|
|
List_1_Clear_mCE6E8AC696882AE5172BF850786FD42B5EC9E001_inline(L_0, List_1_Clear_mCE6E8AC696882AE5172BF850786FD42B5EC9E001_RuntimeMethod_var);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_1 = ___0_list;
|
|
Adapter_1_SetList_mC831823BEAD7EF24E78C2C9115247042E4A84B5D(__this, L_1, Adapter_1_SetList_mC831823BEAD7EF24E78C2C9115247042E4A84B5D_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_CreateGroup_m019A5562DB2F1D1649AF3E8E9A4CA1615F48ADE6 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m7A1454F98FD5D62BD225B2C5B846D433A6ECB426_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Find_mFB470F8C716CD0393D276ADCA71DFCCD1DC7B1CD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass10_0_U3CCreateGroupU3Eb__0_mF3B22BEE534816F2615ABD5B39F7D5CA9B02E182_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* V_0 = NULL;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* V_1 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_0 = (U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass10_0__ctor_m82066613A2B1033A24DA21BB4CDBBFE53BC40DDD(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_1 = V_0;
|
|
int32_t L_2 = ___0_type;
|
|
NullCheck(L_1);
|
|
L_1->___type = L_2;
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
L_3->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_3->___U3CU3E4__this), (void*)__this);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_4 = __this->___showList;
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_5 = V_0;
|
|
Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* L_6 = (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*)il2cpp_codegen_object_new(Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass10_0_U3CCreateGroupU3Eb__0_mF3B22BEE534816F2615ABD5B39F7D5CA9B02E182_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_7;
|
|
L_7 = List_1_Find_mFB470F8C716CD0393D276ADCA71DFCCD1DC7B1CD(L_4, L_6, List_1_Find_mFB470F8C716CD0393D276ADCA71DFCCD1DC7B1CD_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_8 = V_1;
|
|
if (L_8)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___type;
|
|
String_t* L_11 = __this->___groupViewName;
|
|
U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
int32_t* L_13 = (int32_t*)(&L_12->___type);
|
|
String_t* L_14;
|
|
L_14 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_13, NULL);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_15 = (GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6*)il2cpp_codegen_object_new(GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6_il2cpp_TypeInfo_var);
|
|
GroupData__ctor_mB1ADEB884AA47DC569E8E678E231A31DB76D28B6(L_15, L_10, L_11, L_14, NULL);
|
|
V_1 = L_15;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_16 = __this->___showList;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_17 = V_1;
|
|
NullCheck(L_16);
|
|
List_1_Add_m7A1454F98FD5D62BD225B2C5B846D433A6ECB426_inline(L_16, L_17, List_1_Add_m7A1454F98FD5D62BD225B2C5B846D433A6ECB426_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_Expand_m03A7524684580D3921983BC2159C43E7F010C717 (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_InsertRange_mC78A0CD322C39BEEDB11FE4ABE1761B160DD6FCC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_U3CExpandU3Eb__0_m5CF3C655751421BF67420C53F89B635FAAC79B57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* V_0 = NULL;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* V_1 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* L_0 = (U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass11_0__ctor_m725F9F3F3EDC754C2B6A313C000C9260B45CD211(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* L_2 = V_0;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
L_2->___index = L_3;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_4 = ((Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*)__this)->___list;
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* L_5 = V_0;
|
|
Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* L_6 = (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*)il2cpp_codegen_object_new(Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass11_0_U3CExpandU3Eb__0_m5CF3C655751421BF67420C53F89B635FAAC79B57_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_7;
|
|
L_7 = List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882(L_4, L_6, List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_8 = __this->___showList;
|
|
U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___index;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_11 = V_1;
|
|
NullCheck(L_8);
|
|
List_1_InsertRange_mC78A0CD322C39BEEDB11FE4ABE1761B160DD6FCC(L_8, ((int32_t)il2cpp_codegen_add(L_10, 1)), L_11, List_1_InsertRange_mC78A0CD322C39BEEDB11FE4ABE1761B160DD6FCC_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupAdapter_Collapse_m80FEB3A72F7C56D3141FA53AB4F06DACD2FBB7FC (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_mD6E55763BEDC1BC8FB9318CC2E894E6D96A2D246_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass12_0_U3CCollapseU3Eb__0_m4FDDEFBA4F4C93643D7352306F2CA683FD147FC8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* V_0 = NULL;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* V_1 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* L_0 = (U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass12_0__ctor_m73A9A01DA1BC3E8ECE9601C26970E5CF58819E3F(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* L_2 = V_0;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
L_2->___index = L_3;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_4 = __this->___showList;
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* L_5 = V_0;
|
|
Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841* L_6 = (Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841*)il2cpp_codegen_object_new(Predicate_1_tD18610D028087D8CEB76929467D09852FD09D841_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mCE436BF0DA53E5ECC42E5DFA3D14ED23FC8B7A73(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass12_0_U3CCollapseU3Eb__0_m4FDDEFBA4F4C93643D7352306F2CA683FD147FC8_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_7;
|
|
L_7 = List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882(L_4, L_6, List_1_FindAll_mC8B37BF923F2E96A8EAAC4E7D79CB107E86EB882_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_8 = __this->___showList;
|
|
U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10 = L_9->___index;
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_inline(L_11, List_1_get_Count_m9A2BDFB092581F5618D0D7FAA6F1D4B4C993D985_RuntimeMethod_var);
|
|
NullCheck(L_8);
|
|
List_1_RemoveRange_mD6E55763BEDC1BC8FB9318CC2E894E6D96A2D246(L_8, ((int32_t)il2cpp_codegen_add(L_10, 1)), L_12, List_1_RemoveRange_mD6E55763BEDC1BC8FB9318CC2E894E6D96A2D246_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GroupAdapter_U3CNotifyDataChangedU3Eb__8_0_m769795289BAEA7938EF2C035111EB2BC4D714A2C (GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = L_0->___viewName;
|
|
String_t* L_2 = __this->___groupViewName;
|
|
bool L_3;
|
|
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass10_0__ctor_m82066613A2B1033A24DA21BB4CDBBFE53BC40DDD (U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass10_0_U3CCreateGroupU3Eb__0_mF3B22BEE534816F2615ABD5B39F7D5CA9B02E182 (U3CU3Ec__DisplayClass10_0_tB03C64D7178792D4F1B94E92723525F6188487F6* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
int32_t L_2 = __this->___type;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_3 = ___0_data;
|
|
NullCheck(L_3);
|
|
String_t* L_4 = L_3->___viewName;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_5 = __this->___U3CU3E4__this;
|
|
NullCheck(L_5);
|
|
String_t* L_6 = L_5->___groupViewName;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, L_6, NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_m725F9F3F3EDC754C2B6A313C000C9260B45CD211 (U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass11_0_U3CExpandU3Eb__0_m5CF3C655751421BF67420C53F89B635FAAC79B57 (U3CU3Ec__DisplayClass11_0_t69B208A3F4FF54E4E93732D2FB7C611FCA4BD498* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_2 = __this->___U3CU3E4__this;
|
|
NullCheck(L_2);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_3 = L_2->___showList;
|
|
int32_t L_4 = __this->___index;
|
|
NullCheck(L_3);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_5;
|
|
L_5 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_3, L_4, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
int32_t L_6 = L_5->___type;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)L_6))? 1 : 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m73A9A01DA1BC3E8ECE9601C26970E5CF58819E3F (U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass12_0_U3CCollapseU3Eb__0_m4FDDEFBA4F4C93643D7352306F2CA683FD147FC8 (U3CU3Ec__DisplayClass12_0_t469E445B4A26A88B0E503B3A052110CF113780A8* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_2 = __this->___U3CU3E4__this;
|
|
NullCheck(L_2);
|
|
List_1_tC86341BEA760DA6AC90ABCFBF43D3D48B13ABFD9* L_3 = L_2->___showList;
|
|
int32_t L_4 = __this->___index;
|
|
NullCheck(L_3);
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_5;
|
|
L_5 = List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9(L_3, L_4, List_1_get_Item_m9762C046038049C468742C0E9643D4435D7E9BF9_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
int32_t L_6 = L_5->___type;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_7 = ___0_data;
|
|
NullCheck(L_7);
|
|
String_t* L_8 = L_7->___viewName;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_9 = __this->___U3CU3E4__this;
|
|
NullCheck(L_9);
|
|
String_t* L_10 = L_9->___groupViewName;
|
|
bool L_11;
|
|
L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_8, L_10, NULL);
|
|
return L_11;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass7_0__ctor_m67CE3DED5CB772FADCB1631A49339008F8DF0327 (U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass7_0_U3COnBindViewHolderU3Eb__0_m6CCBA1EBB8C4FF3814D0A156CAFE04586B04C051 (U3CU3Ec__DisplayClass7_0_tC5F1FE4ACF53ECB31BE8CFA56F650CD565C1266B* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_t, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1_SetChoiceIndex_m15338460D02990C60920379CE21DC39E6E42B94B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* G_B4_0 = NULL;
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* G_B3_0 = NULL;
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = __this->___data;
|
|
NullCheck(L_0);
|
|
String_t* L_1 = L_0->___viewName;
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_2 = __this->___U3CU3E4__this;
|
|
NullCheck(L_2);
|
|
String_t* L_3 = L_2->___groupViewName;
|
|
bool L_4;
|
|
L_4 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_5 = __this->___data;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_6 = __this->___data;
|
|
NullCheck(L_6);
|
|
bool L_7 = L_6->___bExpand;
|
|
NullCheck(L_5);
|
|
L_5->___bExpand = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_8 = __this->___U3CU3E4__this;
|
|
NullCheck(L_8);
|
|
VirtualActionInvoker0::Invoke(13, L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_9 = __this->___U3CU3E4__this;
|
|
int32_t L_10 = __this->___index;
|
|
NullCheck(L_9);
|
|
Adapter_1_SetChoiceIndex_m15338460D02990C60920379CE21DC39E6E42B94B(L_9, L_10, Adapter_1_SetChoiceIndex_m15338460D02990C60920379CE21DC39E6E42B94B_RuntimeMethod_var);
|
|
GroupAdapter_tF32D5C46646FBB38D4B8E17E5C4CF666CD628EA7* L_11 = __this->___U3CU3E4__this;
|
|
NullCheck(L_11);
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* L_12 = ((Adapter_1_t1B330B88D8958226004BACB134AAEE9F038C9551*)L_11)->___onItemClick;
|
|
Action_1_t23196CB948F3937CC8818C6622617290FE263A2A* L_13 = L_12;
|
|
if (L_13)
|
|
{
|
|
G_B4_0 = L_13;
|
|
goto IL_0063;
|
|
}
|
|
G_B3_0 = L_13;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_14 = __this->___data;
|
|
NullCheck(G_B4_0);
|
|
Action_1_Invoke_m14E63D4E00F8CF21CC6EB3F50F9D8EBA328DCC22_inline(G_B4_0, L_14, 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass8_0__ctor_m0B9E8FFBBCE87E63C0AC734ACC1DD56FC847DD98 (U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass8_0_U3CNotifyDataChangedU3Eb__1_m1C7CDB675FA8C0B0605CABFB61A70FDEA0500B3D (U3CU3Ec__DisplayClass8_0_t45855F0E7FA0C725CC3930A7D6962212B73506B3* __this, GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* ___0_data, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_0 = ___0_data;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = L_0->___type;
|
|
GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* L_2 = __this->___group;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___type;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GroupData__ctor_mB1ADEB884AA47DC569E8E678E231A31DB76D28B6 (GroupData_tDA3E3DC165C360649B9F5F34154F5630527855B6* __this, int32_t ___0_type, String_t* ___1_viewName, String_t* ___2_name, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_type;
|
|
__this->___type = L_0;
|
|
String_t* L_1 = ___1_viewName;
|
|
__this->___viewName = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___viewName), (void*)L_1);
|
|
String_t* L_2 = ___2_name;
|
|
__this->___name = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name), (void*)L_2);
|
|
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 IL2CPP_METHOD_ATTR void MixedAdapter__ctor_mB8E5F01AE34738A19517E1DD67C9B0D6DCCE8AF0 (MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_m5226157496E913EECE85FF96C0F4E8037136F1C9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = ___0_recyclerView;
|
|
Adapter_1__ctor_m5226157496E913EECE85FF96C0F4E8037136F1C9(__this, L_0, Adapter_1__ctor_m5226157496E913EECE85FF96C0F4E8037136F1C9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedAdapter__ctor_m08C6C86FB5835C392AE0CF38B88E5E2F2AD4577C (MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* ___1_list, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_m1C80900B53CBE5A805520304F9CBC0C8403AED2B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = ___0_recyclerView;
|
|
List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* L_1 = ___1_list;
|
|
Adapter_1__ctor_m1C80900B53CBE5A805520304F9CBC0C8403AED2B(__this, L_0, L_1, Adapter_1__ctor_m1C80900B53CBE5A805520304F9CBC0C8403AED2B_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedAdapter__ctor_m1D098FDCDDE433A73C49D4716DEB35B175ACE107 (MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* ___1_list, Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2* ___2_onItemClick, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adapter_1__ctor_m80B8B400A810D274A833178228593413CC7DD7F4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = ___0_recyclerView;
|
|
List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* L_1 = ___1_list;
|
|
Action_1_t429CE323C86D1E9A4D2E89B907FBA093E716DCD2* L_2 = ___2_onItemClick;
|
|
Adapter_1__ctor_m80B8B400A810D274A833178228593413CC7DD7F4(__this, L_0, L_1, L_2, Adapter_1__ctor_m80B8B400A810D274A833178228593413CC7DD7F4_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MixedAdapter_GetViewName_m0284EA86C7E898547B1B01E5F8C26404AEF33E79 (MixedAdapter_t4C06518E6187EF59D8EB5F651F82ADFB7E5D21C4* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMixedData_tA5914904D328BA239E101B230B5A3D001E134A3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m192832D449F45BBFEF93EA8AFB1F21BA67C5D0B6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t0BC81B1009AEDB74CC2C644F3A9968BBCA6FFAD8* L_0 = ((Adapter_1_tB3CEE48BD27BDC9F1D5DD604DEB0933A8944D8D4*)__this)->___list;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = List_1_get_Item_m192832D449F45BBFEF93EA8AFB1F21BA67C5D0B6(L_0, L_1, List_1_get_Item_m192832D449F45BBFEF93EA8AFB1F21BA67C5D0B6_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
String_t* L_3;
|
|
L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(0, IMixedData_tA5914904D328BA239E101B230B5A3D001E134A3D_il2cpp_TypeInfo_var, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 AlignableLinearLayoutManager_CalculatePosition_mA8AE7753B24C5CDE0DF1AD98F549A6B50DC9BFA3 (AlignableLinearLayoutManager_t96C0DD95811F4C077010824DEB04DEA8A6343DDE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_0)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
float L_2 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_4 = L_3->___y;
|
|
float L_5;
|
|
L_5 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_1), ((float)il2cpp_codegen_add(L_2, L_4)))), L_5));
|
|
float L_6 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_8 = L_7->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_9), (0.0f), ((float)il2cpp_codegen_add(L_6, L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = ___0_index;
|
|
float L_11 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___x;
|
|
float L_14;
|
|
L_14 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_11, L_13)))), L_14));
|
|
float L_15 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_17 = L_16->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_18), ((float)il2cpp_codegen_add(L_15, L_17)), (0.0f), NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AlignableLinearLayoutManager_IndexToPosition_m0FCE1A5D9122832B9D6EC27EB79814AC9F47A4FF (AlignableLinearLayoutManager_t96C0DD95811F4C077010824DEB04DEA8A6343DDE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float G_B7_0 = 0.0f;
|
|
float G_B11_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
RuntimeObject* L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_2);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (0.0f);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_4)
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___0_index;
|
|
float L_6 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_8 = L_7->___y;
|
|
float L_9 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_11 = L_10->___y;
|
|
float L_12 = __this->___alignmentCount;
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_5), ((float)il2cpp_codegen_add(L_6, L_8)))), ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_add(L_9, L_11)), L_12))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_14 = L_13->___y;
|
|
V_1 = L_14;
|
|
float L_15 = V_0;
|
|
float L_16 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_18 = L_17->___y;
|
|
if ((((float)((float)il2cpp_codegen_add(L_15, L_16))) > ((float)L_18)))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
float L_19 = V_0;
|
|
G_B7_0 = L_19;
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_21 = L_20->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_23 = L_22->___y;
|
|
G_B7_0 = ((float)il2cpp_codegen_subtract(L_21, L_23));
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
V_2 = G_B7_0;
|
|
goto IL_00d6;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
int32_t L_24 = ___0_index;
|
|
float L_25 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_26 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_27 = L_26->___x;
|
|
V_0 = ((float)il2cpp_codegen_multiply(((float)L_24), ((float)il2cpp_codegen_add(L_25, L_27))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_29 = L_28->___x;
|
|
V_1 = L_29;
|
|
float L_30 = V_0;
|
|
float L_31 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_32 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_33 = L_32->___x;
|
|
if ((((float)((float)il2cpp_codegen_add(L_30, L_31))) > ((float)L_33)))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
float L_34 = V_0;
|
|
G_B11_0 = L_34;
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_35 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_36 = L_35->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_37 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_38 = L_37->___x;
|
|
G_B11_0 = ((float)il2cpp_codegen_subtract(L_36, L_38));
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
V_2 = G_B11_0;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
float L_39 = V_2;
|
|
return L_39;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlignableLinearLayoutManager__ctor_m7DD77EF5CFB44EFC41AD166B3AB582680422E9E3 (AlignableLinearLayoutManager_t96C0DD95811F4C077010824DEB04DEA8A6343DDE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LinearLayoutManager__ctor_mB6545B1463D103A333765C2F1726DD0CDE6DDB1F(__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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleLayoutManager__ctor_m2147801BAECCD2243C63C9099EDCAB63CFFC7FE5 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_direction, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503(__this, NULL);
|
|
int32_t L_0 = ___0_direction;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleLayoutManager__ctor_mEC98EA726B2BDC614C923A7D821EB3F6237D4084 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 CircleLayoutManager_CalculateContentSize_mF36002DF588C93EF61CC676D7B80F053122255DE (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* G_B2_0 = NULL;
|
|
CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* G_B3_1 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_3 = L_2->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_4 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_5 = L_4->___y;
|
|
float L_6;
|
|
L_6 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_3, L_5, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
float L_8 = L_7.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
float L_10 = L_9.___y;
|
|
float L_11;
|
|
L_11 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_8, L_10, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_13 = L_12->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_15 = L_14->___y;
|
|
float L_16;
|
|
L_16 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_13, L_15, NULL);
|
|
__this->___radius = ((float)il2cpp_codegen_subtract(((float)(((float)il2cpp_codegen_subtract(L_6, L_11))/(2.0f))), L_16));
|
|
RuntimeObject* L_17 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_17);
|
|
if ((((int32_t)L_18) > ((int32_t)0)))
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_0078;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
G_B3_0 = (0.0f);
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
RuntimeObject* L_19 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_19);
|
|
G_B3_0 = ((float)((360.0f)/((float)L_20)));
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->___intervalAngle = G_B3_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize;
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 CircleLayoutManager_CalculateContentOffset_m11E9DC92CD7CE115D68AB4FBFDD8B0342403A2BF (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 CircleLayoutManager_CalculateViewportOffset_m7D644D41EEDDB2D8938FDB7367339395495D0DF9 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleLayoutManager_Layout_m6F70D0DA98758803C9620362C8B7411C9A832B0A (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___0_viewHolder, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_0 = ___0_viewHolder;
|
|
NullCheck(L_0);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_1;
|
|
L_1 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_0, NULL);
|
|
int32_t L_2 = ___1_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_2);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
|
|
L_4 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_3, NULL);
|
|
NullCheck(L_1);
|
|
RectTransform_set_anchoredPosition3D_m214FBDBA019743FAED8FA03857475073AA0539C4(L_1, L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 CircleLayoutManager_CalculatePosition_m34A7F43DA9C031A8AD2165C6CEA12A8515ABC167 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
float L_1 = __this->___intervalAngle;
|
|
V_0 = ((float)il2cpp_codegen_multiply(((float)L_0), L_1));
|
|
int32_t L_2 = __this->___direction;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = V_0;
|
|
G_B3_0 = ((-L_3));
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
float L_4 = V_0;
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = G_B3_0;
|
|
float L_5 = V_0;
|
|
float L_6 = __this->___initalAngle;
|
|
float L_7;
|
|
L_7 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_5, ((float)il2cpp_codegen_add(L_6, L_7))));
|
|
float L_8 = V_0;
|
|
V_1 = ((float)il2cpp_codegen_multiply(L_8, (0.0174532924f)));
|
|
float L_9 = __this->___radius;
|
|
float L_10 = V_1;
|
|
float L_11;
|
|
L_11 = sinf(L_10);
|
|
float L_12 = __this->___radius;
|
|
float L_13 = V_1;
|
|
float L_14;
|
|
L_14 = cosf(L_13);
|
|
V_2 = ((float)il2cpp_codegen_multiply(L_12, L_14));
|
|
float L_15 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_16), ((float)il2cpp_codegen_multiply(L_9, L_11)), L_15, NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CircleLayoutManager_GetStartIndex_m6A119F97D822333A6BF111D8037BB8E318E8DAA9 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CircleLayoutManager_GetEndIndex_m5C806E34712D0D157566718BB468D992FC4605DE (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_0);
|
|
return ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CircleLayoutManager_IsFullVisibleStart_m08F01A7BAC0799052C416C44CC9F5445B5C65990 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CircleLayoutManager_IsFullInvisibleStart_m7CA809AA49FEEC9C6CCD57A9B4C96927AC4ACF71 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CircleLayoutManager_IsFullVisibleEnd_m9863141C61A34EE9C5A8F0FF29CF873B391AD857 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CircleLayoutManager_IsFullInvisibleEnd_m907FA19024C4D037F62D96E8977DCA3F61227974 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CircleLayoutManager_IsVisible_m65B17D7D0E9247D8089AF4805B2B4BE4FA7CDC09 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CircleLayoutManager_IndexToPosition_m89C0FDBE3ED137EB84EF8F609DBA09B1E5BE3E11 (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
float L_1 = __this->___intervalAngle;
|
|
return ((-((float)il2cpp_codegen_multiply(((float)L_0), L_1))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CircleLayoutManager_PositionToIndex_m2E842E413546BACCF1D2F7EB3B701295FDEAF13F (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, float ___0_position, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_position;
|
|
float L_1 = __this->___intervalAngle;
|
|
int32_t L_2;
|
|
L_2 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(((float)(L_0/L_1)), NULL);
|
|
return ((-L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleLayoutManager_DoItemAnimation_m53A7DB6B9D23207E215402011A70E567C5BD60BD (CircleLayoutManager_tE7D4F84F550DE99C85968C514F814F7543558352* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B7_0 = 0.0f;
|
|
float G_B10_0 = 0.0f;
|
|
float G_B13_0 = 0.0f;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_1;
|
|
L_1 = ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
float L_3 = __this->___intervalAngle;
|
|
float L_4 = __this->___initalAngle;
|
|
V_2 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(((float)L_2), L_3)), L_4));
|
|
int32_t L_5 = __this->___direction;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
float L_6 = V_2;
|
|
float L_7;
|
|
L_7 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
G_B4_0 = ((float)il2cpp_codegen_subtract(L_6, L_7));
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
float L_8 = V_2;
|
|
float L_9;
|
|
L_9 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
G_B4_0 = ((float)il2cpp_codegen_add(L_8, L_9));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
V_2 = G_B4_0;
|
|
float L_10 = V_2;
|
|
float L_11 = __this->___initalAngle;
|
|
V_3 = (fmodf(((float)il2cpp_codegen_subtract(L_10, L_11)), (360.0f)));
|
|
float L_12 = V_3;
|
|
if ((((float)L_12) < ((float)(0.0f))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
float L_13 = V_3;
|
|
G_B7_0 = L_13;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
float L_14 = V_3;
|
|
G_B7_0 = ((float)il2cpp_codegen_add(L_14, (360.0f)));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
V_3 = G_B7_0;
|
|
float L_15 = V_3;
|
|
if ((((float)L_15) > ((float)(180.0f))))
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
float L_16 = V_3;
|
|
G_B10_0 = L_16;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
float L_17 = V_3;
|
|
G_B10_0 = ((float)il2cpp_codegen_subtract((360.0f), L_17));
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
V_3 = G_B10_0;
|
|
float L_18 = V_3;
|
|
float L_19 = __this->___intervalAngle;
|
|
if ((((float)L_18) < ((float)L_19)))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
G_B13_0 = (1.0f);
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
float L_20 = V_3;
|
|
float L_21 = __this->___intervalAngle;
|
|
G_B13_0 = ((float)il2cpp_codegen_subtract((1.39999998f), ((float)(L_20/L_21))));
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
V_4 = G_B13_0;
|
|
float L_22 = V_4;
|
|
float L_23;
|
|
L_23 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_22, (1.0f), NULL);
|
|
V_4 = L_23;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_24 = V_0;
|
|
int32_t L_25 = V_1;
|
|
NullCheck(L_24);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_26;
|
|
L_26 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_24, L_25, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
NullCheck(L_26);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_27;
|
|
L_27 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_26, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_28;
|
|
L_28 = Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline(NULL);
|
|
float L_29 = V_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30;
|
|
L_30 = Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline(L_28, L_29, NULL);
|
|
NullCheck(L_27);
|
|
Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633(L_27, L_30, NULL);
|
|
int32_t L_31 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
int32_t L_32 = V_1;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_33 = V_0;
|
|
NullCheck(L_33);
|
|
int32_t L_34;
|
|
L_34 = List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_inline(L_33, List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
if ((((int32_t)L_32) < ((int32_t)L_34)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GridLayoutManager__ctor_mD37133FE7E36003A3385B386921248CC317E712B (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503(__this, NULL);
|
|
int32_t L_0 = __this->___cellCount;
|
|
((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GridLayoutManager_CalculateContentSize_m5EC14B2CF1265A0D303F0C03071B0DA8A6372A00 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
__this->___cellSize = L_1;
|
|
RuntimeObject* L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_2);
|
|
int32_t L_4 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
int32_t L_5;
|
|
L_5 = Mathf_CeilToInt_mF2BF9F4261B3431DC20E10A46CFEEED103C48963_inline(((float)(((float)L_3)/((float)L_4))), NULL);
|
|
V_0 = L_5;
|
|
int32_t L_6 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_6)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_9 = L_8->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_11 = L_10->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___y;
|
|
V_1 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_7), ((float)il2cpp_codegen_add(L_9, L_11)))), L_13));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_15 = L_14->___x;
|
|
float L_16 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_18 = L_17->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
|
|
memset((&L_19), 0, sizeof(L_19));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_19), L_15, ((float)il2cpp_codegen_add(L_16, ((float)il2cpp_codegen_multiply(L_18, (2.0f))))), NULL);
|
|
return L_19;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
int32_t L_20 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_21 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_22 = L_21->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_23 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_24 = L_23->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_25 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_26 = L_25->___x;
|
|
V_1 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_20), ((float)il2cpp_codegen_add(L_22, L_24)))), L_26));
|
|
float L_27 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_29 = L_28->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_30 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_31 = L_30->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_32;
|
|
memset((&L_32), 0, sizeof(L_32));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_32), L_27, ((float)il2cpp_codegen_add(L_29, ((float)il2cpp_codegen_multiply(L_31, (2.0f))))), NULL);
|
|
return L_32;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GridLayoutManager_CalculatePosition_mD92310EEC717638BDA5E922B1883D3B170EE4EB9 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
V_0 = ((int32_t)(L_0/L_1));
|
|
int32_t L_2 = ___0_index;
|
|
int32_t L_3 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
V_1 = ((int32_t)(L_2%L_3));
|
|
int32_t L_4 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_4)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_7 = L_6->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_9 = L_8->___x;
|
|
V_2 = ((float)il2cpp_codegen_multiply(((float)L_5), ((float)il2cpp_codegen_add(L_7, L_9))));
|
|
int32_t L_10 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_11 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_12 = L_11->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_14 = L_13->___y;
|
|
float L_15;
|
|
L_15 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_3 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_12, L_14)))), L_15));
|
|
goto IL_0096;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_16 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_18 = L_17->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_19 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_20 = L_19->___x;
|
|
float L_21;
|
|
L_21 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_2 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_16), ((float)il2cpp_codegen_add(L_18, L_20)))), L_21));
|
|
int32_t L_22 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_23 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_24 = L_23->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_25 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_26 = L_25->___y;
|
|
V_3 = ((float)il2cpp_codegen_multiply(((float)L_22), ((float)il2cpp_codegen_add(L_24, L_26))));
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
float L_27 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_29 = L_28->___x;
|
|
float L_30 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_31 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_32 = L_31->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_33;
|
|
memset((&L_33), 0, sizeof(L_33));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_33), ((float)il2cpp_codegen_add(L_27, L_29)), ((float)il2cpp_codegen_add(L_30, L_32)), NULL);
|
|
return L_33;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GridLayoutManager_CalculateContentOffset_m7AD5F3343558D702A940EC0ECE687E6B00EFCB41 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___alignment;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___x;
|
|
float L_5;
|
|
L_5 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_2, L_4, NULL);
|
|
V_0 = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_7 = L_6->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_9 = L_8->___y;
|
|
float L_10;
|
|
L_10 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_7, L_9, NULL);
|
|
V_1 = L_10;
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_11 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_12 = L_11->___x;
|
|
V_0 = L_12;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_14 = L_13->___y;
|
|
V_1 = L_14;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
float L_15 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_17 = L_16->___x;
|
|
float L_18 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_19 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_20 = L_19->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_21), ((float)(((float)il2cpp_codegen_subtract(L_15, L_17))/(2.0f))), ((float)(((float)il2cpp_codegen_subtract(L_18, L_20))/(2.0f))), NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GridLayoutManager_CalculateViewportOffset_mB4E648C4F9B4768AE597743FC6509F086A77B49D (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___alignment;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___x;
|
|
float L_5;
|
|
L_5 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_2, L_4, NULL);
|
|
V_0 = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_7 = L_6->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_9 = L_8->___y;
|
|
float L_10;
|
|
L_10 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_7, L_9, NULL);
|
|
V_1 = L_10;
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_11 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_12 = L_11->___x;
|
|
V_0 = L_12;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_14 = L_13->___y;
|
|
V_1 = L_14;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
float L_15 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_17 = L_16->___x;
|
|
float L_18 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_19 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_20 = L_19->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_21), ((float)(((float)il2cpp_codegen_subtract(L_15, L_17))/(2.0f))), ((float)(((float)il2cpp_codegen_subtract(L_18, L_20))/(2.0f))), NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GridLayoutManager_GetStartIndex_m657BF72FD9DF766F7C789CAA5057A9DE526B9F66 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
int32_t V_1 = 0;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_4 = L_3->___x;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_2, L_4));
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_6 = L_5->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_8 = L_7->___y;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_6, L_8));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
V_0 = G_B3_0;
|
|
float L_9;
|
|
L_9 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
float L_10 = V_0;
|
|
int32_t L_11;
|
|
L_11 = Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(((float)(L_9/L_10)), NULL);
|
|
int32_t L_12 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
V_1 = ((int32_t)il2cpp_codegen_multiply(L_11, L_12));
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14;
|
|
L_14 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(0, L_13, NULL);
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GridLayoutManager_GetEndIndex_m9D87911065944A21E0522E7D489694D56D7A4240 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
float G_B6_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_2 = L_1->___x;
|
|
G_B3_0 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___y;
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
V_0 = G_B3_0;
|
|
int32_t L_5 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_7 = L_6->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_9 = L_8->___x;
|
|
G_B6_0 = ((float)il2cpp_codegen_add(L_7, L_9));
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_11 = L_10->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___y;
|
|
G_B6_0 = ((float)il2cpp_codegen_add(L_11, L_13));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
V_1 = G_B6_0;
|
|
float L_14;
|
|
L_14 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
float L_15 = V_0;
|
|
float L_16 = V_1;
|
|
int32_t L_17;
|
|
L_17 = Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(((float)(((float)il2cpp_codegen_add(L_14, L_15))/L_16)), NULL);
|
|
int32_t L_18 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
RuntimeObject* L_19 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_19);
|
|
int32_t L_21;
|
|
L_21 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(((int32_t)il2cpp_codegen_multiply(L_17, L_18)), ((int32_t)il2cpp_codegen_subtract(L_20, 1)), NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float GridLayoutManager_IndexToPosition_m4CF74F677FB5393BB4BF616F526910EF13249315 (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B8_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
V_0 = ((int32_t)(L_0/L_1));
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_2)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_4 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_5 = L_4->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_7 = L_6->___y;
|
|
V_1 = ((float)il2cpp_codegen_multiply(((float)L_3), ((float)il2cpp_codegen_add(L_5, L_7))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_9 = L_8->___y;
|
|
V_2 = L_9;
|
|
float L_10 = V_1;
|
|
float L_11 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_13 = L_12->___y;
|
|
if ((((float)((float)il2cpp_codegen_add(L_10, L_11))) > ((float)L_13)))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
float L_14 = V_1;
|
|
G_B4_0 = L_14;
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_15 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_16 = L_15->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_18 = L_17->___y;
|
|
G_B4_0 = ((float)il2cpp_codegen_subtract(L_16, L_18));
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
V_3 = G_B4_0;
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_21 = L_20->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_23 = L_22->___x;
|
|
V_1 = ((float)il2cpp_codegen_multiply(((float)L_19), ((float)il2cpp_codegen_add(L_21, L_23))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_24 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_25 = L_24->___x;
|
|
V_2 = L_25;
|
|
float L_26 = V_1;
|
|
float L_27 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_29 = L_28->___x;
|
|
if ((((float)((float)il2cpp_codegen_add(L_26, L_27))) > ((float)L_29)))
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
float L_30 = V_1;
|
|
G_B8_0 = L_30;
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_31 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_32 = L_31->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_33 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_34 = L_33->___x;
|
|
G_B8_0 = ((float)il2cpp_codegen_subtract(L_32, L_34));
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
V_3 = G_B8_0;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
float L_35 = V_3;
|
|
return L_35;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GridLayoutManager_PositionToIndex_m37F0729C0353D5CEC59E20049C7CE82E53CCBC2C (GridLayoutManager_t50E4AB77AAACCE802C265B21ABB6E004492E3633* __this, float ___0_position, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_4 = L_3->___x;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_2, L_4));
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___cellSize);
|
|
float L_6 = L_5->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_8 = L_7->___y;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_6, L_8));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
V_0 = G_B3_0;
|
|
float L_9 = ___0_position;
|
|
float L_10 = V_0;
|
|
int32_t L_11;
|
|
L_11 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(((float)(L_9/L_10)), NULL);
|
|
int32_t L_12 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___unit;
|
|
return ((int32_t)il2cpp_codegen_multiply(L_11, L_12));
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___viewportSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_ViewportSize_m69676298F202E88DD55229118CA88B03F3B58304 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___viewportSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___contentSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_ContentSize_m44317582367FE7FA56ACC9DF7651DF246691C3B5 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___contentSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ContentOffset_m5D09A6067CF22800340D33D3AA2EA1A8F8F53D3C (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___contentOffset;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_ContentOffset_mC4B1D0BEF44FE3501F0CD0A3164EEBC26579CCB1 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___contentOffset = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ViewportOffset_m584EC7A68272631B2E3C4550DAD3B44EBA34C3AF (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___viewportOffset;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_ViewportOffset_m3868C01781B0FC7792AC3EFC3FA0BE62E19DCE66 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___viewportOffset = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LayoutManager_get_Adapter_m0F76E3C148854158E60C6520B6A83336EBDDA2FC (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___adapter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Adapter_mE4AE12C288B386CA8349EB138A01F6C4D0277CAB (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___adapter = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___adapter), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* LayoutManager_get_ViewProvider_m6D36DA52C4766C0CB1920962B4F59AE8C65783C1 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = __this->___viewProvider;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_ViewProvider_mF69F66B44710401EDC85FCBBB9F0F7743AFD52B3 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ___0_value;
|
|
__this->___viewProvider = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___viewProvider), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* LayoutManager_get_RecyclerView_mC580C9834C8ECA08C30BD983F9230ADF89E6CBF4 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = __this->___recyclerView;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_RecyclerView_mD792B87582DE513A427E85C6FC83C91826334151 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = ___0_value;
|
|
__this->___recyclerView = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___recyclerView), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayoutManager_get_Direction_m465C222F197099F8CE2CCF844C3609278BCA6DA9 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Direction_mA60034A25B64C5D0E10EEC2B34AF40DB29910571 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayoutManager_get_Alignment_mBB0D4B5D4F3E189ADEEF4F9D0836F5182A008F35 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___alignment;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Alignment_m1D0A697AF1E79A48454DCACF00722D48F0262C8F (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___alignment = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_Spacing_m8D37E57F073E265FEE45D04114C157E1FC945CE8 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___spacing;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Spacing_m9D179720485C394311CBE430FF793F76C6DAE767 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___spacing = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_Padding_m833C52D447AFB6A7512D8547425ED6E5ED63CB95 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___padding;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Padding_m31AFCDFDEC2173C4FA6BE0A85271587B1C361A95 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___padding = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___unit;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_Unit_mE30E91FCCA96BEB8754ACA192E3E49F0E0D82905 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___unit = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_get_CanScroll_mECC946476EE5775E831EAFE45829F6C323BC3E90 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___canScroll;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_set_CanScroll_mA710E66B10B8A748B85ADE53995C2CA31F2A0935 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___canScroll = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = __this->___recyclerView;
|
|
NullCheck(L_0);
|
|
float L_1;
|
|
L_1 = RecyclerView_GetScrollPosition_mABC87E956A385236362D93B9F26D38A18A6179F5(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___unit = 1;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_SetContentSize_m4207BF2D3C58189470F5939C86A2358A15792B14 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = __this->___recyclerView;
|
|
NullCheck(L_0);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_1;
|
|
L_1 = Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4(L_0, Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
NullCheck(L_1);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2;
|
|
L_2 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_1, NULL);
|
|
V_0 = L_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267_inline((&V_0), NULL);
|
|
__this->___viewportSize = L_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(24, __this);
|
|
__this->___contentSize = L_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(26, __this);
|
|
__this->___contentOffset = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VirtualFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(27, __this);
|
|
__this->___viewportOffset = L_6;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_UpdateLayout_mB832BB641413BCAA98D72A31EE202EE1A578CFC5 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_1 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = __this->___viewProvider;
|
|
NullCheck(L_0);
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_1;
|
|
L_1 = ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E_inline(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 L_2;
|
|
L_2 = List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2(L_1, List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0033:
|
|
{
|
|
Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF((&V_0), Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_0013_1:
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3;
|
|
L_3 = Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_inline((&V_0), Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_4 = V_1;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232_inline(L_5, NULL);
|
|
VirtualActionInvoker2< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, int32_t >::Invoke(23, __this, L_4, L_6);
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296((&V_0), Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
if (L_7)
|
|
{
|
|
goto IL_0013_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_Layout_mBD84F1D3BB8FAA4C2DCB7D87DAA5504801BE39DB (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___0_viewHolder, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->___direction;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_6 = L_5->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
float L_8 = L_7.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_9 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_10 = L_9->___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11;
|
|
memset((&L_11), 0, sizeof(L_11));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_11), ((float)il2cpp_codegen_subtract(L_4, L_6)), ((float)il2cpp_codegen_add(((-L_8)), L_10)), (0.0f), NULL);
|
|
G_B3_0 = L_11;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_0;
|
|
float L_13 = L_12.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_15 = L_14->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_0;
|
|
float L_17 = L_16.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_18 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_19 = L_18->___y;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20;
|
|
memset((&L_20), 0, sizeof(L_20));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_20), ((float)il2cpp_codegen_subtract(L_13, L_15)), ((float)il2cpp_codegen_add(((-L_17)), L_19)), (0.0f), NULL);
|
|
G_B3_0 = L_20;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_1 = G_B3_0;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_21 = ___0_viewHolder;
|
|
NullCheck(L_21);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_22;
|
|
L_22 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_21, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23 = V_1;
|
|
NullCheck(L_22);
|
|
RectTransform_set_anchoredPosition3D_m214FBDBA019743FAED8FA03857475073AA0539C4(L_22, L_23, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutManager_DoItemAnimation_m37B6DDC6B85E37258E5D6B92DF1A21DD497D8F95 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_IsFullVisibleStart_m326772A76863FAAE1A60414169D996894858A13E (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->___direction;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___x;
|
|
G_B3_0 = L_4;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
float L_7;
|
|
L_7 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
return (bool)((((int32_t)((!(((float)((float)il2cpp_codegen_add(G_B3_0, L_7))) >= ((float)(0.0f))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_IsFullInvisibleStart_mEB63EBD203D95CE621664BA3F2CA38CF2A03C226 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = __this->___unit;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, ((int32_t)il2cpp_codegen_add(L_0, L_1)));
|
|
V_0 = L_2;
|
|
int32_t L_3 = __this->___direction;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = V_0;
|
|
float L_5 = L_4.___x;
|
|
G_B3_0 = L_5;
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
float L_7 = L_6.___y;
|
|
G_B3_0 = L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
float L_8;
|
|
L_8 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
return (bool)((((float)((float)il2cpp_codegen_add(G_B3_0, L_8))) < ((float)(0.0f)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_IsFullVisibleEnd_mA316EB7A60800C173F59D8C3E0FD68F03AD59058 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
float G_B5_0 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B6_0 = 0.0f;
|
|
float G_B6_1 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = __this->___unit;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, ((int32_t)il2cpp_codegen_add(L_0, L_1)));
|
|
V_0 = L_2;
|
|
int32_t L_3 = __this->___direction;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = V_0;
|
|
float L_5 = L_4.___x;
|
|
G_B3_0 = L_5;
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
float L_7 = L_6.___y;
|
|
G_B3_0 = L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t L_8 = __this->___direction;
|
|
if (!L_8)
|
|
{
|
|
G_B5_0 = G_B3_0;
|
|
goto IL_003a;
|
|
}
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_9 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_10 = L_9->___x;
|
|
G_B6_0 = L_10;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_11 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_12 = L_11->___y;
|
|
G_B6_0 = L_12;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
V_1 = G_B6_0;
|
|
float L_13;
|
|
L_13 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
float L_14 = V_1;
|
|
return (bool)((((int32_t)((!(((float)((float)il2cpp_codegen_add(G_B6_1, L_13))) <= ((float)L_14)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_IsFullInvisibleEnd_m5586736561FC59CB3A43EB0DCA8385284DCB791B (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
float G_B5_0 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B6_0 = 0.0f;
|
|
float G_B6_1 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->___direction;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___x;
|
|
G_B3_0 = L_4;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = __this->___direction;
|
|
if (!L_7)
|
|
{
|
|
G_B5_0 = G_B3_0;
|
|
goto IL_0033;
|
|
}
|
|
G_B4_0 = G_B3_0;
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_9 = L_8->___x;
|
|
G_B6_0 = L_9;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_11 = L_10->___y;
|
|
G_B6_0 = L_11;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
V_1 = G_B6_0;
|
|
float L_12;
|
|
L_12 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
float L_13 = V_1;
|
|
return (bool)((((float)((float)il2cpp_codegen_add(G_B6_1, L_12))) > ((float)L_13))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutManager_IsVisible_m0C0671E264DE08A7749DEE728F9746B82F278251 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float G_B3_0 = 0.0f;
|
|
float G_B6_0 = 0.0f;
|
|
float G_B12_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_2 = L_1->___x;
|
|
G_B3_0 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_4 = L_3->___y;
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
V_1 = G_B3_0;
|
|
int32_t L_5 = ___0_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_5);
|
|
V_2 = L_6;
|
|
int32_t L_7 = __this->___direction;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = V_2;
|
|
float L_9 = L_8.___x;
|
|
G_B6_0 = L_9;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_2;
|
|
float L_11 = L_10.___y;
|
|
G_B6_0 = L_11;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
V_0 = G_B6_0;
|
|
float L_12 = V_0;
|
|
float L_13;
|
|
L_13 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
if ((!(((float)((float)il2cpp_codegen_add(L_12, L_13))) > ((float)(0.0f)))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
float L_14 = V_0;
|
|
float L_15;
|
|
L_15 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
float L_16 = V_1;
|
|
if ((!(((float)((float)il2cpp_codegen_add(L_14, L_15))) <= ((float)L_16))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
int32_t L_18 = __this->___unit;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
|
|
L_19 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, ((int32_t)il2cpp_codegen_add(L_17, L_18)));
|
|
V_2 = L_19;
|
|
int32_t L_20 = __this->___direction;
|
|
if (!L_20)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_2;
|
|
float L_22 = L_21.___x;
|
|
G_B12_0 = L_22;
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = V_2;
|
|
float L_24 = L_23.___y;
|
|
G_B12_0 = L_24;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
V_0 = G_B12_0;
|
|
float L_25 = V_0;
|
|
float L_26;
|
|
L_26 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
if ((!(((float)((float)il2cpp_codegen_add(L_25, L_26))) > ((float)(0.0f)))))
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
float L_27 = V_0;
|
|
float L_28;
|
|
L_28 = VirtualFuncInvoker0< float >::Invoke(39, __this);
|
|
float L_29 = V_1;
|
|
if ((!(((float)((float)il2cpp_codegen_add(L_27, L_28))) <= ((float)L_29))))
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutManager_GetFitContentSize_mD7EE09D2EB98883AD172BF41830687EB8BE7515B (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B8_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
if (L_0)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->___alignment;
|
|
if ((((int32_t)L_1) == ((int32_t)1)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_3 = L_2->___y;
|
|
G_B4_0 = L_3;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_4 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentSize);
|
|
float L_5 = L_4->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_7 = L_6->___y;
|
|
float L_8;
|
|
L_8 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_5, L_7, NULL);
|
|
G_B4_0 = L_8;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
V_0 = G_B4_0;
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
int32_t L_9 = __this->___alignment;
|
|
if ((((int32_t)L_9) == ((int32_t)1)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_11 = L_10->___x;
|
|
G_B8_0 = L_11;
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentSize);
|
|
float L_13 = L_12->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportSize);
|
|
float L_15 = L_14->___x;
|
|
float L_16;
|
|
L_16 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_13, L_15, NULL);
|
|
G_B8_0 = L_16;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
V_0 = G_B8_0;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
float L_17 = V_0;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LayoutManager_GetOffset_m15AE1E425AAD50D7191ABD31A5A5788CD170E330 (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportOffset);
|
|
float L_4 = L_3->___x;
|
|
return ((float)il2cpp_codegen_add(((-L_2)), L_4));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentOffset);
|
|
float L_6 = L_5->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewportOffset);
|
|
float L_8 = L_7->___y;
|
|
return ((float)il2cpp_codegen_add(((-L_6)), L_8));
|
|
}
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LinearLayoutManager__ctor_mB6545B1463D103A333765C2F1726DD0CDE6DDB1F (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LinearLayoutManager_CalculateContentSize_m2C57B513E801EB7D05EFCA4F769ED048BCA07E22 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* G_B2_0 = NULL;
|
|
LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* G_B3_1 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_001e;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___x;
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
G_B3_0 = L_6;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->___lineHeight = G_B3_0;
|
|
RuntimeObject* L_7 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_7);
|
|
V_1 = L_8;
|
|
int32_t L_9 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_9)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_1;
|
|
float L_11 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_15 = L_14->___y;
|
|
V_2 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_11, L_13)))), L_15));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_17 = L_16->___x;
|
|
float L_18 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_19 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_20 = L_19->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_21), L_17, ((float)il2cpp_codegen_add(L_18, ((float)il2cpp_codegen_multiply(L_20, (2.0f))))), NULL);
|
|
return L_21;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
float L_23 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_24 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_25 = L_24->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_26 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_27 = L_26->___x;
|
|
V_2 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_22), ((float)il2cpp_codegen_add(L_23, L_25)))), L_27));
|
|
float L_28 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_29 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_30 = L_29->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_31 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_32 = L_31->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_33;
|
|
memset((&L_33), 0, sizeof(L_33));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_33), ((float)il2cpp_codegen_add(L_28, ((float)il2cpp_codegen_multiply(L_30, (2.0f))))), L_32, NULL);
|
|
return L_33;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LinearLayoutManager_CalculatePosition_mA9D00CFDD52D952DE765F272AB55B5D3E405CB93 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_0)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
float L_2 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_4 = L_3->___y;
|
|
float L_5;
|
|
L_5 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_1), ((float)il2cpp_codegen_add(L_2, L_4)))), L_5));
|
|
float L_6 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_8 = L_7->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_9), (0.0f), ((float)il2cpp_codegen_add(L_6, L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = ___0_index;
|
|
float L_11 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___x;
|
|
float L_14;
|
|
L_14 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_11, L_13)))), L_14));
|
|
float L_15 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_17 = L_16->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_18), ((float)il2cpp_codegen_add(L_15, L_17)), (0.0f), NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LinearLayoutManager_CalculateContentOffset_mF3EB90BFFAC994463A67ADBAAABC2817EE435443 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0;
|
|
L_0 = VirtualFuncInvoker0< float >::Invoke(38, __this);
|
|
V_0 = L_0;
|
|
int32_t L_1 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = V_0;
|
|
float L_3 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), (0.0f), ((float)(((float)il2cpp_codegen_subtract(L_2, L_3))/(2.0f))), NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
float L_5 = V_0;
|
|
float L_6 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_7), ((float)(((float)il2cpp_codegen_subtract(L_5, L_6))/(2.0f))), (0.0f), NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LinearLayoutManager_CalculateViewportOffset_m3A0FA308B312ECE3B41B25CE7DF184FE216A7D78 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_0)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_2 = L_1->___y;
|
|
float L_3 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), (0.0f), ((float)(((float)il2cpp_codegen_subtract(L_2, L_3))/(2.0f))), NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_6 = L_5->___x;
|
|
float L_7 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)(((float)il2cpp_codegen_subtract(L_6, L_7))/(2.0f))), (0.0f), NULL);
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LinearLayoutManager_GetStartIndex_m82C1DDB26F056473194234F5442C224269862367 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
int32_t V_1 = 0;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
float L_1 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_3 = L_2->___x;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_1, L_3));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
float L_4 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_6 = L_5->___y;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_4, L_6));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_0 = G_B3_0;
|
|
float L_7;
|
|
L_7 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
float L_8 = V_0;
|
|
int32_t L_9;
|
|
L_9 = Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(((float)(L_7/L_8)), NULL);
|
|
V_1 = L_9;
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11;
|
|
L_11 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(0, L_10, NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LinearLayoutManager_GetEndIndex_mC7BA09F59308EECBEB5FB9DDDA6AB227FEE37D44 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
float G_B6_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_2 = L_1->___x;
|
|
G_B3_0 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___y;
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
V_0 = G_B3_0;
|
|
int32_t L_5 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
float L_6 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_8 = L_7->___x;
|
|
G_B6_0 = ((float)il2cpp_codegen_add(L_6, L_8));
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
float L_9 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_11 = L_10->___y;
|
|
G_B6_0 = ((float)il2cpp_codegen_add(L_9, L_11));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_1 = G_B6_0;
|
|
float L_12;
|
|
L_12 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
float L_13 = V_0;
|
|
float L_14 = V_1;
|
|
int32_t L_15;
|
|
L_15 = Mathf_FloorToInt_m2A39AE881CAEE6B6A4B3BFEF9CA1ED40625F5AB7_inline(((float)(((float)il2cpp_codegen_add(L_12, L_13))/L_14)), NULL);
|
|
RuntimeObject* L_16 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_16);
|
|
int32_t L_18;
|
|
L_18 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_15, ((int32_t)il2cpp_codegen_subtract(L_17, 1)), NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float LinearLayoutManager_IndexToPosition_mF40E59281EE50B1FD464496AE30201F9F662CB0A (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float G_B7_0 = 0.0f;
|
|
float G_B11_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
RuntimeObject* L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_2);
|
|
if ((((int32_t)L_1) < ((int32_t)L_3)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return (0.0f);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_4)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___0_index;
|
|
float L_6 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_8 = L_7->___y;
|
|
V_0 = ((float)il2cpp_codegen_multiply(((float)L_5), ((float)il2cpp_codegen_add(L_6, L_8))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_9 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_10 = L_9->___y;
|
|
V_1 = L_10;
|
|
float L_11 = V_0;
|
|
float L_12 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_14 = L_13->___y;
|
|
if ((((float)((float)il2cpp_codegen_add(L_11, L_12))) > ((float)L_14)))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
float L_15 = V_0;
|
|
G_B7_0 = L_15;
|
|
goto IL_006c;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_17 = L_16->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_18 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_19 = L_18->___y;
|
|
G_B7_0 = ((float)il2cpp_codegen_subtract(L_17, L_19));
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
V_2 = G_B7_0;
|
|
goto IL_00bc;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_20 = ___0_index;
|
|
float L_21 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_23 = L_22->___x;
|
|
V_0 = ((float)il2cpp_codegen_multiply(((float)L_20), ((float)il2cpp_codegen_add(L_21, L_23))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_24 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_25 = L_24->___x;
|
|
V_1 = L_25;
|
|
float L_26 = V_0;
|
|
float L_27 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_29 = L_28->___x;
|
|
if ((((float)((float)il2cpp_codegen_add(L_26, L_27))) > ((float)L_29)))
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
{
|
|
float L_30 = V_0;
|
|
G_B11_0 = L_30;
|
|
goto IL_00bb;
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_31 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_32 = L_31->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_33 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_34 = L_33->___x;
|
|
G_B11_0 = ((float)il2cpp_codegen_subtract(L_32, L_34));
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
V_2 = G_B11_0;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
float L_35 = V_2;
|
|
return L_35;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LinearLayoutManager_PositionToIndex_m2040F9852DFC18F727A78076E464E462B093D2E3 (LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF* __this, float ___0_position, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
float L_1 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_3 = L_2->___x;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_1, L_3));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
float L_4 = __this->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_6 = L_5->___y;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_4, L_6));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_0 = G_B3_0;
|
|
float L_7 = ___0_position;
|
|
float L_8 = V_0;
|
|
int32_t L_9;
|
|
L_9 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(((float)(L_7/L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
#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 IL2CPP_METHOD_ATTR void MixedLayoutManager__ctor_m192E4322313F50919874180A0EDA74E04DCDE9C3 (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager__ctor_m09648A776E6F8D2E857DDDC1C2AA97F8FDFFD503(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MixedLayoutManager_CalculateContentSize_m1E519F7BF0AE88521CB3AA0D711B455F087ACD58 (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
V_1 = (0.0f);
|
|
V_2 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
float L_2 = V_1;
|
|
int32_t L_3 = V_2;
|
|
float L_4;
|
|
L_4 = MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA(__this, L_3, NULL);
|
|
V_1 = ((float)il2cpp_codegen_add(L_2, L_4));
|
|
int32_t L_5 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
float L_9 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_11 = L_10->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_13 = L_12->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_15 = L_14->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_16), ((float)il2cpp_codegen_add(((float)il2cpp_codegen_subtract(L_9, L_11)), ((float)il2cpp_codegen_multiply(L_13, (2.0f))))), L_15, NULL);
|
|
return L_16;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_18 = L_17->___x;
|
|
float L_19 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_21 = L_20->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_23 = L_22->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_24;
|
|
memset((&L_24), 0, sizeof(L_24));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_24), L_18, ((float)il2cpp_codegen_add(((float)il2cpp_codegen_subtract(L_19, L_21)), ((float)il2cpp_codegen_multiply(L_23, (2.0f))))), NULL);
|
|
return L_24;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MixedLayoutManager_CalculatePosition_m4C9217449E6A1E7F89C93D0BF3F2AF476B50855F (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = (0.0f);
|
|
V_1 = 0;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
float L_0 = V_0;
|
|
int32_t L_1 = V_1;
|
|
float L_2;
|
|
L_2 = MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA(__this, L_1, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, L_2));
|
|
int32_t L_3 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = V_1;
|
|
int32_t L_5 = ___0_index;
|
|
if ((((int32_t)L_4) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
float L_6 = V_0;
|
|
float L_7;
|
|
L_7 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_6, L_7));
|
|
int32_t L_8 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
float L_9 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_11 = L_10->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_12), ((float)il2cpp_codegen_add(L_9, L_11)), (0.0f), NULL);
|
|
return L_12;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
float L_13 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_15 = L_14->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_16), (0.0f), ((float)il2cpp_codegen_add(L_13, L_15)), NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MixedLayoutManager_CalculateContentOffset_mC3D5DE16942679EBC4B30D412A8D6D453C739FFB (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
float V_1 = 0.0f;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
float L_2;
|
|
L_2 = VirtualFuncInvoker0< float >::Invoke(38, __this);
|
|
V_1 = L_2;
|
|
int32_t L_3 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_3)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
float L_4 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_7), (0.0f), ((float)(((float)il2cpp_codegen_subtract(L_4, L_6))/(2.0f))), NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
float L_8 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
float L_10 = L_9.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
memset((&L_11), 0, sizeof(L_11));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_11), ((float)(((float)il2cpp_codegen_subtract(L_8, L_10))/(2.0f))), (0.0f), NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MixedLayoutManager_CalculateViewportOffset_m05FE8020A6543EFB415931FA8F11B0AD99A53689 (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_2)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_7), (0.0f), ((float)(((float)il2cpp_codegen_subtract(L_4, L_6))/(2.0f))), NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_9 = L_8->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
|
|
float L_11 = L_10.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_12), ((float)(((float)il2cpp_codegen_subtract(L_9, L_11))/(2.0f))), (0.0f), NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MixedLayoutManager_GetStartIndex_mE5C9719FE8CC8E8568B0BE0E1717A80382473C4B (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
V_0 = (0.0f);
|
|
float L_0;
|
|
L_0 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_1 = L_0;
|
|
RuntimeObject* L_1 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_1);
|
|
V_2 = L_2;
|
|
V_3 = 0;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_3 = V_0;
|
|
int32_t L_4 = V_3;
|
|
float L_5;
|
|
L_5 = MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA(__this, L_4, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_3, L_5));
|
|
float L_6 = V_0;
|
|
float L_7 = V_1;
|
|
if ((!(((float)L_6) > ((float)L_7))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_3;
|
|
int32_t L_9;
|
|
L_9 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(0, L_8, NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_10 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_11 = V_3;
|
|
int32_t L_12 = V_2;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MixedLayoutManager_GetEndIndex_mBE66B1AFBD7593C73C7F3622B5B6110703E53EF0 (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
V_0 = (0.0f);
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_2 = L_1->___x;
|
|
G_B3_0 = L_2;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_4 = L_3->___y;
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
V_1 = G_B3_0;
|
|
RuntimeObject* L_5 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_5);
|
|
V_2 = L_6;
|
|
V_3 = 0;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
float L_7 = V_0;
|
|
int32_t L_8 = V_3;
|
|
float L_9;
|
|
L_9 = MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA(__this, L_8, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_7, L_9));
|
|
float L_10 = V_0;
|
|
float L_11;
|
|
L_11 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
float L_12 = V_1;
|
|
if ((!(((float)L_10) > ((float)((float)il2cpp_codegen_add(L_11, L_12))))))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = V_3;
|
|
RuntimeObject* L_14 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_14);
|
|
int32_t L_16;
|
|
L_16 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_13, ((int32_t)il2cpp_codegen_subtract(L_15, 1)), NULL);
|
|
return L_16;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_17 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
int32_t L_18 = V_3;
|
|
int32_t L_19 = V_2;
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_2;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_20, 1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___0_index;
|
|
RuntimeObject* L_4 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_4);
|
|
if ((((int32_t)L_3) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_5, 1)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_inline(L_6, L_7, NULL);
|
|
V_0 = L_8;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_9 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
|
|
float L_11 = L_10.___x;
|
|
return L_11;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_0;
|
|
float L_13 = L_12.___y;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float MixedLayoutManager_IndexToPosition_m5A5EB0856B8DD4CB975731CA880A863B9CC3DF9C (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = VirtualFuncInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(25, __this, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_2)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___y;
|
|
float L_5;
|
|
L_5 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), L_4, NULL);
|
|
(&V_0)->___y = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
float L_7 = L_6.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_9 = L_8->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_11 = L_10->___y;
|
|
float L_12;
|
|
L_12 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_7, ((float)il2cpp_codegen_subtract(L_9, L_11)), NULL);
|
|
(&V_0)->___y = L_12;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = V_0;
|
|
float L_14 = L_13.___y;
|
|
return L_14;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15 = V_0;
|
|
float L_16 = L_15.___x;
|
|
float L_17;
|
|
L_17 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), L_16, NULL);
|
|
(&V_0)->___x = L_17;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_0;
|
|
float L_19 = L_18.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_21 = L_20->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_23 = L_22->___x;
|
|
float L_24;
|
|
L_24 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_19, ((float)il2cpp_codegen_subtract(L_21, L_23)), NULL);
|
|
(&V_0)->___x = L_24;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25 = V_0;
|
|
float L_26 = L_25.___x;
|
|
return L_26;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MixedLayoutManager_PositionToIndex_mF40B6F63B06B7DA9FBFC1B1F0E900A99AAE3D38B (MixedLayoutManager_t282E301A8188A3BA4C0BD7A6DA5A7ACC6AF1426F* __this, float ___0_position, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = (0.0f);
|
|
RuntimeObject* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_0);
|
|
V_1 = L_1;
|
|
V_2 = 0;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
float L_2 = V_0;
|
|
int32_t L_3 = V_2;
|
|
float L_4;
|
|
L_4 = MixedLayoutManager_GetLength_m3527D55BE9F9DEEAAB2AAAF271AE69457F1BBFEA(__this, L_3, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_2, L_4));
|
|
float L_5 = V_0;
|
|
float L_6 = ___0_position;
|
|
if ((!(((float)L_5) >= ((float)L_6))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_2;
|
|
return L_7;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_9 = V_2;
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_9) < ((int32_t)L_10)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
return 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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PageLayoutManager__ctor_mEDDAEE6479317D0A49BAB2C52C84051DC29A3BE2 (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LinearLayoutManager__ctor_mB6545B1463D103A333765C2F1726DD0CDE6DDB1F(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PageLayoutManager_CalculateContentSize_m6248301F60795EB1116546B0F1380E59C70AB34D (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* G_B2_0 = NULL;
|
|
PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* G_B3_1 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D(L_0, 0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_001e;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
float L_4 = L_3.___x;
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = V_0;
|
|
float L_6 = L_5.___y;
|
|
G_B3_0 = L_6;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)G_B3_1)->___lineHeight = G_B3_0;
|
|
RuntimeObject* L_7 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___adapter;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_7);
|
|
V_1 = L_8;
|
|
int32_t L_9 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_9)
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_1;
|
|
float L_11 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_14 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_15 = L_14->___y;
|
|
V_2 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_11, L_13)))), L_15));
|
|
float L_16 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_18 = L_17->___y;
|
|
float L_19 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
V_2 = ((float)il2cpp_codegen_add(L_16, ((float)il2cpp_codegen_subtract(L_18, L_19))));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_21 = L_20->___x;
|
|
float L_22 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_23 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_24 = L_23->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25;
|
|
memset((&L_25), 0, sizeof(L_25));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_25), L_21, ((float)il2cpp_codegen_add(L_22, ((float)il2cpp_codegen_multiply(L_24, (2.0f))))), NULL);
|
|
return L_25;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
int32_t L_26 = V_1;
|
|
float L_27 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_29 = L_28->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_30 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_31 = L_30->___x;
|
|
V_2 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_26), ((float)il2cpp_codegen_add(L_27, L_29)))), L_31));
|
|
float L_32 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_33 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_34 = L_33->___x;
|
|
float L_35 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
V_2 = ((float)il2cpp_codegen_add(L_32, ((float)il2cpp_codegen_subtract(L_34, L_35))));
|
|
float L_36 = V_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_37 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_38 = L_37->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_39 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___contentSize);
|
|
float L_40 = L_39->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_41;
|
|
memset((&L_41), 0, sizeof(L_41));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_41), ((float)il2cpp_codegen_add(L_36, ((float)il2cpp_codegen_multiply(L_38, (2.0f))))), L_40, NULL);
|
|
return L_41;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PageLayoutManager_CalculatePosition_mEAD957BA717AFA11D8E744EB51C722CCDF412A74 (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (L_0)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
float L_2 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_4 = L_3->___y;
|
|
float L_5;
|
|
L_5 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_1), ((float)il2cpp_codegen_add(L_2, L_4)))), L_5));
|
|
float L_6 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_7 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_8 = L_7->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_9), (0.0f), ((float)il2cpp_codegen_add(L_6, L_8)), NULL);
|
|
return L_9;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = ___0_index;
|
|
float L_11 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_12 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_13 = L_12->___x;
|
|
float L_14;
|
|
L_14 = LayoutManager_get_ScrollPosition_m2B66B7538909487471AC2F8DBD38D5BEC1349C37(__this, NULL);
|
|
V_0 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(((float)L_10), ((float)il2cpp_codegen_add(L_11, L_13)))), L_14));
|
|
float L_15 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_16 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___padding);
|
|
float L_17 = L_16->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_18), ((float)il2cpp_codegen_add(L_15, L_17)), (0.0f), NULL);
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PageLayoutManager_CalculateContentOffset_m7494EB029A7F18C81CC451FCC7B20FA3772E9CBC (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PageLayoutManager_CalculateViewportOffset_mCE0C35F6BB33E8B64D45340EA9C6025A253F7D15 (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PageLayoutManager_GetOffset_mC619ABBB9E85B6BD97656DA0E77006E4529F3F1D (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_2 = L_1->___x;
|
|
float L_3 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
G_B3_0 = ((float)il2cpp_codegen_subtract(L_2, L_3));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_4 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewportSize);
|
|
float L_5 = L_4->___y;
|
|
float L_6 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
G_B3_0 = ((float)il2cpp_codegen_subtract(L_5, L_6));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return ((float)(G_B3_0/(2.0f)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PageLayoutManager_PositionToIndex_m3120008C40C0C6F26903576E693AAA850902499F (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, float ___0_position, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
int32_t L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
float L_1 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_2 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_3 = L_2->___x;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_1, L_3));
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
float L_4 = ((LinearLayoutManager_tA4E2A0C1C6FDA9FE6602F3B76B6B5C2F023203EF*)__this)->___lineHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_5 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___spacing);
|
|
float L_6 = L_5->___y;
|
|
G_B3_0 = ((float)il2cpp_codegen_add(L_4, L_6));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_0 = G_B3_0;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_7 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___recyclerView;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = RecyclerView_get_CurrentIndex_m90730FC6C570A10BD75D08C5598B3AC70E498809_inline(L_7, NULL);
|
|
float L_9;
|
|
L_9 = VirtualFuncInvoker1< float, int32_t >::Invoke(30, __this, L_8);
|
|
V_1 = L_9;
|
|
float L_10 = ___0_position;
|
|
float L_11 = V_1;
|
|
if ((((float)L_10) > ((float)L_11)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
float L_12 = ___0_position;
|
|
float L_13 = V_0;
|
|
int32_t L_14;
|
|
L_14 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(((float)il2cpp_codegen_subtract(((float)(L_12/L_13)), (0.25f))), NULL);
|
|
return L_14;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
float L_15 = ___0_position;
|
|
float L_16 = V_0;
|
|
int32_t L_17;
|
|
L_17 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(((float)il2cpp_codegen_add(((float)(L_15/L_16)), (0.25f))), NULL);
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PageLayoutManager_DoItemAnimation_mD6E850CEBAAA44CE3D0F1E5A58A6CEC2CA94D24D (PageLayoutManager_t12902F012CBE249C3BAD04DC4BCD7170AF0D9983* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___viewProvider;
|
|
NullCheck(L_0);
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_1;
|
|
L_1 = ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0095;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = ((LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA*)__this)->___direction;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_3 = V_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5;
|
|
L_5 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_3, L_4, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_6;
|
|
L_6 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_5, NULL);
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_6, NULL);
|
|
float L_8 = L_7.___x;
|
|
G_B4_0 = L_8;
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_9 = V_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_11;
|
|
L_11 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_9, L_10, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
NullCheck(L_11);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_12;
|
|
L_12 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_11, NULL);
|
|
NullCheck(L_12);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13;
|
|
L_13 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_12, NULL);
|
|
float L_14 = L_13.___y;
|
|
G_B4_0 = ((-L_14));
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
V_2 = G_B4_0;
|
|
float L_15 = V_2;
|
|
float L_16;
|
|
L_16 = fabsf(L_15);
|
|
float L_17;
|
|
L_17 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(((float)il2cpp_codegen_multiply(L_16, (0.000600000028f))), (1.0f), NULL);
|
|
V_3 = ((float)il2cpp_codegen_subtract((1.0f), L_17));
|
|
float L_18 = V_3;
|
|
float L_19 = __this->___minScale;
|
|
float L_20;
|
|
L_20 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_18, L_19, NULL);
|
|
V_3 = L_20;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_21 = V_0;
|
|
int32_t L_22 = V_1;
|
|
NullCheck(L_21);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_23;
|
|
L_23 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_21, L_22, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
NullCheck(L_23);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_24;
|
|
L_24 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(L_23, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_25;
|
|
L_25 = Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline(NULL);
|
|
float L_26 = V_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_27;
|
|
L_27 = Vector3_op_Multiply_m87BA7C578F96C8E49BB07088DAAC4649F83B0353_inline(L_25, L_26, NULL);
|
|
NullCheck(L_24);
|
|
Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633(L_24, L_27, NULL);
|
|
int32_t L_28 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_28, 1));
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
int32_t L_29 = V_1;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_inline(L_30, List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
if ((((int32_t)L_29) < ((int32_t)L_31)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
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 IL2CPP_METHOD_ATTR int32_t RecyclerView_get_Direction_m3998EDB15AB1F9DF5E070177814F27299A1D738C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Direction_m2F39E0B0A70730046CC6A2E2518857603A55F348 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RecyclerView_get_Alignment_mF5CA0A2190F3A4B925A79AE3AF4A6B900DB9001F (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___alignment;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Alignment_m75FEEE1B3878033427BD5FF6DA91673FF0A721ED (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___alignment = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* RecyclerView_get_Content_m9300D9F5D595725EECD0D63DF2F7122AE9EFDC7F (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___content;
|
|
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_0025;
|
|
}
|
|
}
|
|
{
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_2;
|
|
L_2 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
|
|
NullCheck(L_2);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_3;
|
|
L_3 = Transform_GetChild_mE686DF0C7AAC1F7AEF356967B1C04D8B8E240EAF(L_2, 0, NULL);
|
|
NullCheck(L_3);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4;
|
|
L_4 = Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4(L_3, Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
__this->___content = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___content), (void*)L_4);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___content;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RecyclerView_get_Spacing_m733F20A4338D43386815CD9A52CB311B2EC71929 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___spacing;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Spacing_m38245D153ACD9B120C3C4E6D0BF483209162E814 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___spacing = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RecyclerView_get_Padding_m85F59D75CD7344DE4A0FA82E0192B7F8FCACEAFF (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___padding;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Padding_m15EA055489F6B4A6E0139317532528AE5678888D (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___padding = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecyclerView_get_Scroll_m4C4A3DD75880522C0F47F8A3055E0F3E1CD28855 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___scroll;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Scroll_m34817D90E513D54F439C2ADAD014657FAEFD4D0F (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___scroll = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___snap;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Snap_m9BADA0F3840C05DE3617EBE0FC2EBB3DA995AF73 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
bool L_1 = __this->___scroll;
|
|
__this->___snap = (bool)((int32_t)((int32_t)L_0&(int32_t)L_1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RecyclerView_get_ScrollSpeed_mB79D956F9E520CC64288EBF52D1AD0A59DDEDB24 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___scrollSpeed;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_ScrollSpeed_m6E6F76979A172987F645447921344238933C5B6F (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___scrollSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RecyclerView_get_WheeelSpeed_mA64A29F321BFF1D008806DC2D7718A8F3AD44549 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___wheelSpeed;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_WheeelSpeed_m47C2FD7E770DA67B9E6749E95D9EEEFCF0F4F82C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___wheelSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* RecyclerView_get_Templates_m4E38CE1900AA2F07E1EEDECFCA23EBFDAF2F383E (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = __this->___templates;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_set_Templates_m91AAED1210431E084A915E793DB0ACEA9AC85E3A (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = ___0_value;
|
|
__this->___templates = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___templates), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* RecyclerView_get_Scroller_mBFA1E0B1E3EB8795D7B3905F28F6AD91C92FCDF9 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RecyclerView_get_CurrentIndex_m90730FC6C570A10BD75D08C5598B3AC70E498809 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___currentIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RecyclerView_get_CanScroll_mC5BAC8F46392B50DD9F4A18DAE8B81924413143C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* G_B3_0 = NULL;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* G_B2_0 = NULL;
|
|
SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* G_B4_0 = NULL;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* G_B4_1 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = __this->___viewProvider;
|
|
if (L_0)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = __this->___templates;
|
|
NullCheck(L_1);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) > ((int32_t)1)))
|
|
{
|
|
G_B3_0 = __this;
|
|
goto IL_0022;
|
|
}
|
|
G_B2_0 = __this;
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_2 = __this->___templates;
|
|
SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* L_3 = (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405*)il2cpp_codegen_object_new(SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405_il2cpp_TypeInfo_var);
|
|
SimpleViewProvider__ctor_m36312456041EDF58D941F0961B302101417146E7(L_3, __this, L_2, NULL);
|
|
G_B4_0 = L_3;
|
|
G_B4_1 = G_B2_0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_4 = __this->___templates;
|
|
MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* L_5 = (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7*)il2cpp_codegen_object_new(MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7_il2cpp_TypeInfo_var);
|
|
MixedViewProvider__ctor_m427C7888F61B69A9B3CF63CB31526FE45C20CFEA(L_5, __this, L_4, NULL);
|
|
G_B4_0 = ((SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405*)(L_5));
|
|
G_B4_1 = G_B3_0;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
NullCheck(G_B4_1);
|
|
G_B4_1->___viewProvider = G_B4_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B4_1->___viewProvider), (void*)G_B4_0);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_6 = __this->___viewProvider;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_0 = __this->____scrollbar;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* RecyclerView_get_LayoutManager_mEB7F5AC55BF4A16F043DA7DFEE81C2AFB1DE0676 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->____layoutManager;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnValidate_mC04E9EC76FA4F84A77FB0D65474BDFAD3EC8945A (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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;
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
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_0030;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_2 = __this->____scroller;
|
|
float L_3 = __this->___scrollSpeed;
|
|
NullCheck(L_2);
|
|
Scroller_set_ScrollSpeed_mEF7E70CCBFC4F7FE77FD88C01E80C6C3ED06B107_inline(L_2, L_3, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = __this->____scroller;
|
|
float L_5 = __this->___wheelSpeed;
|
|
NullCheck(L_4);
|
|
Scroller_set_WheelSpeed_mAF72B2201E612CD5F5491150C350748C3CC46400_inline(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnScrollChanged_m25D5FFECFF11F93B52F7B366C4D0EDFDBDB566E5 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, float ___0_pos, 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;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B17_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B16_0 = NULL;
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->____layoutManager;
|
|
NullCheck(L_0);
|
|
LayoutManager_UpdateLayout_mB832BB641413BCAA98D72A31EE202EE1A578CFC5(L_0, NULL);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_1;
|
|
L_1 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__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_0031;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_3;
|
|
L_3 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
float L_4 = ___0_pos;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_5 = __this->____scroller;
|
|
NullCheck(L_5);
|
|
float L_6;
|
|
L_6 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(L_5, NULL);
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker1< float >::Invoke(47, L_3, ((float)(L_4/L_6)));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_7 = __this->____layoutManager;
|
|
int32_t L_8 = __this->___startIndex;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker1< bool, int32_t >::Invoke(34, L_7, L_8);
|
|
if (!L_9)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_10 = __this->___viewProvider;
|
|
int32_t L_11 = __this->___startIndex;
|
|
NullCheck(L_10);
|
|
ViewProvider_RemoveViewHolder_mFD7ACE812F9A4CCE919E8378C83A2A6BCEEBAD38(L_10, L_11, NULL);
|
|
int32_t L_12 = __this->___startIndex;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_13 = __this->____layoutManager;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_13, NULL);
|
|
__this->___startIndex = ((int32_t)il2cpp_codegen_add(L_12, L_14));
|
|
goto IL_00b3;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_15 = __this->____layoutManager;
|
|
int32_t L_16 = __this->___startIndex;
|
|
NullCheck(L_15);
|
|
bool L_17;
|
|
L_17 = VirtualFuncInvoker1< bool, int32_t >::Invoke(33, L_15, L_16);
|
|
if (!L_17)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = __this->___startIndex;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = __this->___startIndex;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_20 = __this->____layoutManager;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_20, NULL);
|
|
__this->___startIndex = ((int32_t)il2cpp_codegen_subtract(L_19, L_21));
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_22 = __this->___viewProvider;
|
|
int32_t L_23 = __this->___startIndex;
|
|
NullCheck(L_22);
|
|
ViewProvider_CreateViewHolder_m5A6C79EC4D94F93B4B80D66F9A9311D2F29FA329(L_22, L_23, NULL);
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_24 = __this->____layoutManager;
|
|
int32_t L_25 = __this->___endIndex;
|
|
NullCheck(L_24);
|
|
bool L_26;
|
|
L_26 = VirtualFuncInvoker1< bool, int32_t >::Invoke(36, L_24, L_25);
|
|
if (!L_26)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_27 = __this->___viewProvider;
|
|
int32_t L_28 = __this->___endIndex;
|
|
NullCheck(L_27);
|
|
ViewProvider_RemoveViewHolder_mFD7ACE812F9A4CCE919E8378C83A2A6BCEEBAD38(L_27, L_28, NULL);
|
|
int32_t L_29 = __this->___endIndex;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_30 = __this->____layoutManager;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_30, NULL);
|
|
__this->___endIndex = ((int32_t)il2cpp_codegen_subtract(L_29, L_31));
|
|
goto IL_014c;
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_32 = __this->____layoutManager;
|
|
int32_t L_33 = __this->___endIndex;
|
|
NullCheck(L_32);
|
|
bool L_34;
|
|
L_34 = VirtualFuncInvoker1< bool, int32_t >::Invoke(35, L_32, L_33);
|
|
if (!L_34)
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35 = __this->___endIndex;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_36 = __this->___viewProvider;
|
|
NullCheck(L_36);
|
|
int32_t L_37;
|
|
L_37 = ViewProvider_GetItemCount_mA590361C4A5D3B391D4D721B6F454E68FC4D5A06(L_36, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_38 = __this->____layoutManager;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_38, NULL);
|
|
if ((((int32_t)L_35) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_37, L_39)))))
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_40 = __this->___endIndex;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_41 = __this->____layoutManager;
|
|
NullCheck(L_41);
|
|
int32_t L_42;
|
|
L_42 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_41, NULL);
|
|
__this->___endIndex = ((int32_t)il2cpp_codegen_add(L_40, L_42));
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_43 = __this->___viewProvider;
|
|
int32_t L_44 = __this->___endIndex;
|
|
NullCheck(L_43);
|
|
ViewProvider_CreateViewHolder_m5A6C79EC4D94F93B4B80D66F9A9311D2F29FA329(L_43, L_44, NULL);
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_45 = __this->____layoutManager;
|
|
int32_t L_46 = __this->___startIndex;
|
|
NullCheck(L_45);
|
|
bool L_47;
|
|
L_47 = VirtualFuncInvoker1< bool, int32_t >::Invoke(37, L_45, L_46);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0172;
|
|
}
|
|
}
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_48 = __this->____layoutManager;
|
|
int32_t L_49 = __this->___endIndex;
|
|
NullCheck(L_48);
|
|
bool L_50;
|
|
L_50 = VirtualFuncInvoker1< bool, int32_t >::Invoke(37, L_48, L_49);
|
|
if (L_50)
|
|
{
|
|
goto IL_0178;
|
|
}
|
|
}
|
|
|
|
IL_0172:
|
|
{
|
|
RecyclerView_Refresh_m74FFD3E2EA8CE9E5BE26F106B5A82AE11E2097E7(__this, NULL);
|
|
}
|
|
|
|
IL_0178:
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_51 = __this->____layoutManager;
|
|
NullCheck(L_51);
|
|
VirtualActionInvoker0::Invoke(32, L_51);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_52 = __this->___OnScrollValueChanged;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_53 = L_52;
|
|
if (L_53)
|
|
{
|
|
G_B17_0 = L_53;
|
|
goto IL_018e;
|
|
}
|
|
G_B16_0 = L_53;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
NullCheck(G_B17_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B17_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnMoveing_m38D445340746778D1784F73CC41D06FFDBEADCE1 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___OnMoveingChanged;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* 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);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnMoveStoped_mC437705E8449733F6264A4D4B3BC57DCBFC8A7A5 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
RecyclerView_SnapTo_mF666D36913CC02E8CF7913072EC9C62D58C8DBAD(__this, NULL);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnScrollbarChanged_m9627BC8062F6A9843981F998C09161B94F813F84 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, float ___0_ratio, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
float L_1 = ___0_ratio;
|
|
NullCheck(L_0);
|
|
VirtualActionInvoker1< float >::Invoke(12, L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnScrollbarDragEnd_mA98EC0B2C61A8F2A349C6524ED01BD2F97879ED1 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
NullCheck(L_0);
|
|
float L_1;
|
|
L_1 = Scroller_get_Position_m35047906601575F75F6517D738126D8D400AC571_inline(L_0, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_2 = __this->____scroller;
|
|
NullCheck(L_2);
|
|
float L_3;
|
|
L_3 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(L_2, NULL);
|
|
if ((!(((float)L_1) < ((float)L_3))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
bool L_4;
|
|
L_4 = RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E_inline(__this, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
RecyclerView_SnapTo_mF666D36913CC02E8CF7913072EC9C62D58C8DBAD(__this, NULL);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_Awake_mB28BE510FC6C4733A032B1E9F3265F20F4B02CA7 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = __this->___templates;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_3, NULL);
|
|
NullCheck(L_4);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_4, (bool)0, NULL);
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_7 = __this->___templates;
|
|
NullCheck(L_7);
|
|
if ((((int32_t)L_6) < ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
RecyclerView_ConfigScroller_m0F7C98AB9BFFB87C726EF561FE8C994BD25DB46C(__this, NULL);
|
|
RecyclerView_ConfigScrollbar_m9C982E595F9F30DC360D02A8387B5AC8343A8B2E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_OnDestroy_m2C2664B1AA90B25ECF3999E1AD8610172B8233EC (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* G_B2_0 = NULL;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* G_B1_0 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = __this->___viewProvider;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* 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);
|
|
ViewProvider_Dispose_m39E942F74747D518E77BC69EA8B3698FA4C9F095(G_B2_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_Reset_mCA75CEC383E037A670AA80AAC4430C0E502BD7BA (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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;
|
|
}
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* G_B2_0 = NULL;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* G_B1_0 = NULL;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = __this->___viewProvider;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
VirtualActionInvoker0::Invoke(9, G_B2_0);
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_2 = __this->____scroller;
|
|
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_002f;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = __this->____scroller;
|
|
NullCheck(L_4);
|
|
Scroller_set_Position_m529B2AC9BF884B2344D094719890060F52A6BEC8_inline(L_4, (0.0f), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_5 = __this->____scrollbar;
|
|
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_004d;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_7 = __this->____scrollbar;
|
|
NullCheck(L_7);
|
|
VirtualActionInvoker1< float >::Invoke(47, L_7, (0.0f));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_SetAdapter_m625F8D1609888689B709908AC4BF35FA3818ACAC (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, RuntimeObject* ___0_adapter, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_adapter;
|
|
__this->____adapter = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____adapter), (void*)L_0);
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_1;
|
|
L_1 = RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14(__this, NULL);
|
|
RuntimeObject* L_2 = __this->____adapter;
|
|
NullCheck(L_1);
|
|
ViewProvider_set_Adapter_m917C4297269D43BEDB1E3BD9F9F79B9E17BF9FCE_inline(L_1, L_2, NULL);
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_3;
|
|
L_3 = RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14(__this, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_4 = __this->____layoutManager;
|
|
NullCheck(L_3);
|
|
ViewProvider_set_LayoutManager_m7087DB38D3E162F23393C467B4D9BC043F8D81A7_inline(L_3, L_4, NULL);
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_5;
|
|
L_5 = RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14(__this, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_6 = __this->____layoutManager;
|
|
NullCheck(L_5);
|
|
ViewProvider_set_LayoutManager_m7087DB38D3E162F23393C467B4D9BC043F8D81A7_inline(L_5, L_6, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_7 = __this->____layoutManager;
|
|
NullCheck(L_7);
|
|
VirtualActionInvoker1< RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* >::Invoke(22, L_7, __this);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_8 = __this->____layoutManager;
|
|
RuntimeObject* L_9 = __this->____adapter;
|
|
NullCheck(L_8);
|
|
LayoutManager_set_Adapter_mE4AE12C288B386CA8349EB138A01F6C4D0277CAB_inline(L_8, L_9, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_10 = __this->____layoutManager;
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_11 = __this->___viewProvider;
|
|
NullCheck(L_10);
|
|
LayoutManager_set_ViewProvider_mF69F66B44710401EDC85FCBBB9F0F7743AFD52B3_inline(L_10, L_11, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_12 = __this->____layoutManager;
|
|
int32_t L_13 = __this->___direction;
|
|
NullCheck(L_12);
|
|
LayoutManager_set_Direction_mA60034A25B64C5D0E10EEC2B34AF40DB29910571_inline(L_12, L_13, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_14 = __this->____layoutManager;
|
|
int32_t L_15 = __this->___alignment;
|
|
NullCheck(L_14);
|
|
LayoutManager_set_Alignment_m1D0A697AF1E79A48454DCACF00722D48F0262C8F_inline(L_14, L_15, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_16 = __this->____layoutManager;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17 = __this->___spacing;
|
|
NullCheck(L_16);
|
|
LayoutManager_set_Spacing_m9D179720485C394311CBE430FF793F76C6DAE767_inline(L_16, L_17, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_18 = __this->____layoutManager;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = __this->___padding;
|
|
NullCheck(L_18);
|
|
LayoutManager_set_Padding_m31AFCDFDEC2173C4FA6BE0A85271587B1C361A95_inline(L_18, L_19, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_20 = __this->____layoutManager;
|
|
bool L_21;
|
|
L_21 = RecyclerView_get_CanScroll_mC5BAC8F46392B50DD9F4A18DAE8B81924413143C(__this, NULL);
|
|
NullCheck(L_20);
|
|
LayoutManager_set_CanScroll_mA710E66B10B8A748B85ADE53995C2CA31F2A0935_inline(L_20, L_21, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ConfigScroller_m0F7C98AB9BFFB87C726EF561FE8C994BD25DB46C (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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*)&RecyclerView_OnMoveStoped_mC437705E8449733F6264A4D4B3BC57DCBFC8A7A5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecyclerView_OnMoveing_m38D445340746778D1784F73CC41D06FFDBEADCE1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecyclerView_OnScrollChanged_m25D5FFECFF11F93B52F7B366C4D0EDFDBDB566E5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
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_0098;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_2 = __this->____scroller;
|
|
float L_3 = __this->___scrollSpeed;
|
|
NullCheck(L_2);
|
|
Scroller_set_ScrollSpeed_mEF7E70CCBFC4F7FE77FD88C01E80C6C3ED06B107_inline(L_2, L_3, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = __this->____scroller;
|
|
float L_5 = __this->___wheelSpeed;
|
|
NullCheck(L_4);
|
|
Scroller_set_WheelSpeed_mAF72B2201E612CD5F5491150C350748C3CC46400_inline(L_4, L_5, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_6 = __this->____scroller;
|
|
bool L_7;
|
|
L_7 = RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E_inline(__this, NULL);
|
|
NullCheck(L_6);
|
|
Scroller_set_Snap_m57A1975BB6E7D9CD72D6B0C04CCED25B5EDDE86D_inline(L_6, L_7, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_8 = __this->____scroller;
|
|
NullCheck(L_8);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_9;
|
|
L_9 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(L_8, NULL);
|
|
UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* L_10 = (UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90*)il2cpp_codegen_object_new(UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_mF770070D0A4FE93F6E04DA37D2EC60429EA545E5(L_10, __this, (intptr_t)((void*)RecyclerView_OnScrollChanged_m25D5FFECFF11F93B52F7B366C4D0EDFDBDB566E5_RuntimeMethod_var), NULL);
|
|
NullCheck(L_9);
|
|
UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC(L_9, L_10, UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_11 = __this->____scroller;
|
|
NullCheck(L_11);
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_12;
|
|
L_12 = Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699_inline(L_11, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_13 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_13, __this, (intptr_t)((void*)RecyclerView_OnMoveStoped_mC437705E8449733F6264A4D4B3BC57DCBFC8A7A5_RuntimeMethod_var), NULL);
|
|
NullCheck(L_12);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_12, L_13, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_14 = __this->____scroller;
|
|
NullCheck(L_14);
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_15;
|
|
L_15 = Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D_inline(L_14, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_16 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_16, __this, (intptr_t)((void*)RecyclerView_OnMoveing_m38D445340746778D1784F73CC41D06FFDBEADCE1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_15);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ConfigScrollbar_m9C982E595F9F30DC360D02A8387B5AC8343A8B2E (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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*)&GameObject_AddComponent_TisScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9_m1B9855584EB97993963365FFB804E01DBEB05BC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecyclerView_OnScrollbarChanged_m9627BC8062F6A9843981F998C09161B94F813F84_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RecyclerView_OnScrollbarDragEnd_mA98EC0B2C61A8F2A349C6524ED01BD2F97879ED1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0 = __this->____showScrollBar;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_1 = __this->____scrollbar;
|
|
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_0069;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_3 = __this->____scrollbar;
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_3, NULL);
|
|
bool L_5 = __this->___scroll;
|
|
NullCheck(L_4);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_4, L_5, NULL);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_6 = __this->____scrollbar;
|
|
NullCheck(L_6);
|
|
ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6* L_7;
|
|
L_7 = Scrollbar_get_onValueChanged_m14356CECC1A2BA96576EB73279AF2ECF28B26D6A_inline(L_6, NULL);
|
|
UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90* L_8 = (UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90*)il2cpp_codegen_object_new(UnityAction_1_tAEFA3C1C529F0E1AD7C7C7AFC88822D359E7AC90_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_mF770070D0A4FE93F6E04DA37D2EC60429EA545E5(L_8, __this, (intptr_t)((void*)RecyclerView_OnScrollbarChanged_m9627BC8062F6A9843981F998C09161B94F813F84_RuntimeMethod_var), NULL);
|
|
NullCheck(L_7);
|
|
UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC(L_7, L_8, UnityEvent_1_AddListener_m44E396BC4484BD75427FDD8CBE0B533CCAD8C1EC_RuntimeMethod_var);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_9 = __this->____scrollbar;
|
|
NullCheck(L_9);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_10;
|
|
L_10 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_9, NULL);
|
|
NullCheck(L_10);
|
|
ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* L_11;
|
|
L_11 = GameObject_AddComponent_TisScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9_m1B9855584EB97993963365FFB804E01DBEB05BC2(L_10, GameObject_AddComponent_TisScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9_m1B9855584EB97993963365FFB804E01DBEB05BC2_RuntimeMethod_var);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_12 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_12, __this, (intptr_t)((void*)RecyclerView_OnScrollbarDragEnd_mA98EC0B2C61A8F2A349C6524ED01BD2F97879ED1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_11);
|
|
L_11->___OnDragEnd = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_11->___OnDragEnd), (void*)L_12);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_Refresh_m74FFD3E2EA8CE9E5BE26F106B5A82AE11E2097E7 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0;
|
|
L_0 = RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14(__this, NULL);
|
|
NullCheck(L_0);
|
|
ViewProvider_Clear_m2579B4EE115A986778BF6FD15D28238E936A8870(L_0, NULL);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_1 = __this->____layoutManager;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(28, L_1);
|
|
__this->___startIndex = L_2;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_3 = __this->____layoutManager;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(29, L_3);
|
|
__this->___endIndex = L_4;
|
|
int32_t L_5 = __this->___startIndex;
|
|
V_0 = L_5;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_6;
|
|
L_6 = RecyclerView_get_ViewProvider_mA3132E77BDB117B25447C2D84AE32F8D1109EF14(__this, NULL);
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
ViewProvider_CreateViewHolder_m5A6C79EC4D94F93B4B80D66F9A9311D2F29FA329(L_6, L_7, NULL);
|
|
int32_t L_8 = V_0;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_9 = __this->____layoutManager;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_9, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, L_10));
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
int32_t L_12 = __this->___endIndex;
|
|
if ((((int32_t)L_11) <= ((int32_t)L_12)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_13 = __this->____layoutManager;
|
|
NullCheck(L_13);
|
|
VirtualActionInvoker0::Invoke(32, L_13);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_RequestLayout_mEF73950AF95CF9A2743C54CE62102C63EE19B905 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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;
|
|
}
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B12_0 = NULL;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B11_0 = NULL;
|
|
int32_t G_B13_0 = 0;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B13_1 = NULL;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B15_0 = NULL;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B14_0 = NULL;
|
|
float G_B16_0 = 0.0f;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* G_B16_1 = NULL;
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->____layoutManager;
|
|
NullCheck(L_0);
|
|
LayoutManager_SetContentSize_m4207BF2D3C58189470F5939C86A2358A15792B14(L_0, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->____scroller;
|
|
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_001a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_3 = __this->____scroller;
|
|
int32_t L_4 = __this->___direction;
|
|
NullCheck(L_3);
|
|
Scroller_set_Direction_mA4BD1025FD29C4073D5ABAEC22D341280A0DA648_inline(L_3, L_4, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_5 = __this->____scroller;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_6 = __this->____layoutManager;
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783_inline(L_6, NULL);
|
|
NullCheck(L_5);
|
|
Scroller_set_ViewSize_m01453E9F561D68011FD475A2C97B9660C63A6CD6_inline(L_5, L_7, NULL);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_8 = __this->____scroller;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_9 = __this->____layoutManager;
|
|
NullCheck(L_9);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10;
|
|
L_10 = LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080_inline(L_9, NULL);
|
|
NullCheck(L_8);
|
|
Scroller_set_ContentSize_m4423908D5FEE9FB6B18DB003F3B3DE5EAEE132D1_inline(L_8, L_10, NULL);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_11;
|
|
L_11 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
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_0171;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_13 = __this->____scroller;
|
|
NullCheck(L_13);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2_inline(L_13, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
bool L_16;
|
|
L_16 = Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline(L_14, L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0171;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = __this->___direction;
|
|
if (L_17)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_18 = __this->____layoutManager;
|
|
NullCheck(L_18);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
|
|
L_19 = LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080_inline(L_18, NULL);
|
|
float L_20 = L_19.___y;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_21 = __this->____layoutManager;
|
|
NullCheck(L_21);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
|
|
L_22 = LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783_inline(L_21, NULL);
|
|
float L_23 = L_22.___y;
|
|
if ((((float)L_20) <= ((float)L_23)))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
int32_t L_24 = __this->___direction;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)1))))
|
|
{
|
|
goto IL_00d7;
|
|
}
|
|
}
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_25 = __this->____layoutManager;
|
|
NullCheck(L_25);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_26;
|
|
L_26 = LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080_inline(L_25, NULL);
|
|
float L_27 = L_26.___x;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_28 = __this->____layoutManager;
|
|
NullCheck(L_28);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_29;
|
|
L_29 = LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783_inline(L_28, NULL);
|
|
float L_30 = L_29.___x;
|
|
if ((((float)L_27) <= ((float)L_30)))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
|
|
IL_00d7:
|
|
{
|
|
int32_t L_31 = __this->___direction;
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_32;
|
|
L_32 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
NullCheck(L_32);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33;
|
|
L_33 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_32, NULL);
|
|
NullCheck(L_33);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_33, (bool)0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_34;
|
|
L_34 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
NullCheck(L_34);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_35;
|
|
L_35 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_34, NULL);
|
|
NullCheck(L_35);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_35, (bool)1, NULL);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_36;
|
|
L_36 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
int32_t L_37 = __this->___direction;
|
|
if (!L_37)
|
|
{
|
|
G_B12_0 = L_36;
|
|
goto IL_0114;
|
|
}
|
|
G_B11_0 = L_36;
|
|
}
|
|
{
|
|
G_B13_0 = 0;
|
|
G_B13_1 = G_B11_0;
|
|
goto IL_0115;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
G_B13_0 = 3;
|
|
G_B13_1 = G_B12_0;
|
|
}
|
|
|
|
IL_0115:
|
|
{
|
|
NullCheck(G_B13_1);
|
|
Scrollbar_set_direction_m1C307CE73857CD7D3FBB160FE66875CA6BA6A3C6(G_B13_1, G_B13_0, NULL);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_38;
|
|
L_38 = RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline(__this, NULL);
|
|
int32_t L_39 = __this->___direction;
|
|
if (!L_39)
|
|
{
|
|
G_B15_0 = L_38;
|
|
goto IL_014b;
|
|
}
|
|
G_B14_0 = L_38;
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_40 = __this->____scroller;
|
|
NullCheck(L_40);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_41;
|
|
L_41 = Scroller_get_ViewSize_m7D4D1475EB8C7C6626E25353AC6ADB2CCECAA45C_inline(L_40, NULL);
|
|
float L_42 = L_41.___x;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_43 = __this->____scroller;
|
|
NullCheck(L_43);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44;
|
|
L_44 = Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2_inline(L_43, NULL);
|
|
float L_45 = L_44.___x;
|
|
G_B16_0 = ((float)(L_42/L_45));
|
|
G_B16_1 = G_B14_0;
|
|
goto IL_016c;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_46 = __this->____scroller;
|
|
NullCheck(L_46);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_47;
|
|
L_47 = Scroller_get_ViewSize_m7D4D1475EB8C7C6626E25353AC6ADB2CCECAA45C_inline(L_46, NULL);
|
|
float L_48 = L_47.___y;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_49 = __this->____scroller;
|
|
NullCheck(L_49);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_50;
|
|
L_50 = Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2_inline(L_49, NULL);
|
|
float L_51 = L_50.___y;
|
|
G_B16_0 = ((float)(L_48/L_51));
|
|
G_B16_1 = G_B15_0;
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
NullCheck(G_B16_1);
|
|
Scrollbar_set_size_m5376982465D6013425FAB0CA8EFC620C3E1458FB(G_B16_1, G_B16_0, NULL);
|
|
}
|
|
|
|
IL_0171:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RecyclerView_GetScrollPosition_mABC87E956A385236362D93B9F26D38A18A6179F5 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __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;
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_0 = __this->____scroller;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return (0.0f);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_2 = __this->____scroller;
|
|
NullCheck(L_2);
|
|
float L_3;
|
|
L_3 = Scroller_get_Position_m35047906601575F75F6517D738126D8D400AC571_inline(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_ScrollTo_mC7B20C79284344FD9650AF15E6C8C585A2E522D4 (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, int32_t ___0_index, bool ___1_smooth, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B7_0 = 0;
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* G_B10_0 = NULL;
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* G_B9_0 = NULL;
|
|
{
|
|
bool L_0 = __this->___scroll;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->____scroller;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_2 = __this->____layoutManager;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
float L_4;
|
|
L_4 = VirtualFuncInvoker1< float, int32_t >::Invoke(30, L_2, L_3);
|
|
bool L_5 = ___1_smooth;
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker2< float, bool >::Invoke(11, L_1, L_4, L_5);
|
|
bool L_6 = ___1_smooth;
|
|
if (L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RecyclerView_Refresh_m74FFD3E2EA8CE9E5BE26F106B5A82AE11E2097E7(__this, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_7 = ___0_index;
|
|
RuntimeObject* L_8 = __this->____adapter;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_8);
|
|
___0_index = ((int32_t)(L_7%L_9));
|
|
int32_t L_10 = ___0_index;
|
|
if ((((int32_t)L_10) < ((int32_t)0)))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___0_index;
|
|
G_B7_0 = L_11;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
RuntimeObject* L_12 = __this->____adapter;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_12);
|
|
int32_t L_14 = ___0_index;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_add(L_13, L_14));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
___0_index = G_B7_0;
|
|
int32_t L_15 = __this->___currentIndex;
|
|
int32_t L_16 = ___0_index;
|
|
if ((((int32_t)L_15) == ((int32_t)L_16)))
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
__this->___currentIndex = L_17;
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* L_18 = __this->___OnIndexChanged;
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* L_19 = L_18;
|
|
if (L_19)
|
|
{
|
|
G_B10_0 = L_19;
|
|
goto IL_006a;
|
|
}
|
|
G_B9_0 = L_19;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
int32_t L_20 = __this->___currentIndex;
|
|
NullCheck(G_B10_0);
|
|
Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_inline(G_B10_0, L_20, NULL);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView_SnapTo_mF666D36913CC02E8CF7913072EC9C62D58C8DBAD (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->____layoutManager;
|
|
float L_1;
|
|
L_1 = RecyclerView_GetScrollPosition_mABC87E956A385236362D93B9F26D38A18A6179F5(__this, NULL);
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker1< int32_t, float >::Invoke(31, L_0, L_1);
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
RecyclerView_ScrollTo_mC7B20C79284344FD9650AF15E6C8C585A2E522D4(__this, L_3, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RecyclerView__ctor_m4D30E8A73698E2BB618D56E992EFF4E245409CAD (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___scrollSpeed = (7.0f);
|
|
__this->___wheelSpeed = (30.0f);
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleScroller_Awake_m4B6C875878C3F81863DD6AAA874803D60C807FF3 (CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* V_0 = NULL;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0;
|
|
L_0 = Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4(__this, Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1;
|
|
L_1 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
|
|
NullCheck(L_1);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2;
|
|
L_2 = Transform_get_position_m69CD5FA214FDAE7BB701552943674846C220FDE1(L_1, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_2, NULL);
|
|
V_1 = L_3;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_4, NULL);
|
|
V_2 = L_5;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_6, NULL);
|
|
float L_8 = L_7.___x;
|
|
if ((!(((float)L_8) == ((float)(0.0f)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_9 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_1;
|
|
float L_11 = L_10.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_2;
|
|
float L_13 = L_12.___x;
|
|
L_9->___x = ((float)il2cpp_codegen_add(L_11, ((float)(L_13/(2.0f)))));
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_14, NULL);
|
|
float L_16 = L_15.___x;
|
|
if ((!(((float)L_16) == ((float)(0.5f)))))
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_1;
|
|
float L_19 = L_18.___x;
|
|
L_17->___x = L_19;
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_20 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_1;
|
|
float L_22 = L_21.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = V_2;
|
|
float L_24 = L_23.___x;
|
|
L_20->___x = ((float)il2cpp_codegen_subtract(L_22, ((float)(L_24/(2.0f)))));
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_26;
|
|
L_26 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_25, NULL);
|
|
float L_27 = L_26.___y;
|
|
if ((!(((float)L_27) == ((float)(0.0f)))))
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_28 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_29 = V_1;
|
|
float L_30 = L_29.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_31 = V_2;
|
|
float L_32 = L_31.___y;
|
|
L_28->___y = ((float)il2cpp_codegen_add(L_30, ((float)(L_32/(2.0f)))));
|
|
return;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_33 = V_0;
|
|
NullCheck(L_33);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34;
|
|
L_34 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_33, NULL);
|
|
float L_35 = L_34.___y;
|
|
if ((!(((float)L_35) == ((float)(0.5f)))))
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_36 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_37 = V_1;
|
|
float L_38 = L_37.___y;
|
|
L_36->___y = L_38;
|
|
return;
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_39 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = V_1;
|
|
float L_41 = L_40.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = V_2;
|
|
float L_43 = L_42.___y;
|
|
L_39->___y = ((float)il2cpp_codegen_subtract(L_41, ((float)(L_43/(2.0f)))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CircleScroller_GetDelta_m3515F389D3285ED700B1B64CA1C82B7E8BD58DDD (CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B4_0 = 0.0f;
|
|
float G_B8_0 = 0.0f;
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_0, NULL);
|
|
float L_2 = L_1.___x;
|
|
float L_3;
|
|
L_3 = fabsf(L_2);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___0_eventData;
|
|
NullCheck(L_4);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_4, NULL);
|
|
float L_6 = L_5.___y;
|
|
float L_7;
|
|
L_7 = fabsf(L_6);
|
|
if ((!(((float)L_3) > ((float)L_7))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_8 = ___0_eventData;
|
|
NullCheck(L_8);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_8, NULL);
|
|
float L_10 = L_9.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_11 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
float L_12 = L_11->___y;
|
|
if ((((float)L_10) > ((float)L_12)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_13 = ___0_eventData;
|
|
NullCheck(L_13);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_13, NULL);
|
|
float L_15 = L_14.___x;
|
|
G_B4_0 = ((-L_15));
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_16 = ___0_eventData;
|
|
NullCheck(L_16);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17;
|
|
L_17 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_16, NULL);
|
|
float L_18 = L_17.___x;
|
|
G_B4_0 = L_18;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
V_0 = G_B4_0;
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_19 = ___0_eventData;
|
|
NullCheck(L_19);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
|
|
L_20 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_19, NULL);
|
|
float L_21 = L_20.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_22 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___centerPosition);
|
|
float L_23 = L_22->___x;
|
|
if ((((float)L_21) < ((float)L_23)))
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_24 = ___0_eventData;
|
|
NullCheck(L_24);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25;
|
|
L_25 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_24, NULL);
|
|
float L_26 = L_25.___y;
|
|
G_B8_0 = ((-L_26));
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_27 = ___0_eventData;
|
|
NullCheck(L_27);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_28;
|
|
L_28 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_27, NULL);
|
|
float L_29 = L_28.___y;
|
|
G_B8_0 = L_29;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
V_0 = G_B8_0;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
float L_30 = V_0;
|
|
return ((float)il2cpp_codegen_multiply(L_30, (0.100000001f)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleScroller_Elastic_m21B680F37359FCEFC582F59E879728B832C270F2 (CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircleScroller__ctor_m85E3FA62BD3369F6E4F17EB4A29F7A1440EC7A3E (CircleScroller_t03C7F2E7F46FD1D9B2F097AB592BBC476D44B116* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scroller__ctor_m86D26F8E34EE197B952DC63EAE2D44406951E80E(__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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollerEvent__ctor_m283D2F5E15B94014C8BF55BEADB83201B18ED21D (ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MoveStopEvent__ctor_mD63236BA070CA8CB247F29847ED1B1B06D657E25 (MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235(__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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DraggingEvent__ctor_m3E63DE7FE1CBA84484B01EFE6C8EF3098C6B145E (DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934(__this, UnityEvent_1__ctor_m7A1EF666468DD954D61FBAD7C721229BD3589934_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 IL2CPP_METHOD_ATTR void MoveingEvent__ctor_mEBDCE00B12EEEBC1004AA6C0D4E8C840AF3BA1E5 (MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UnityEvent__ctor_m03D3E5121B9A6100351984D0CE3050B909CD3235(__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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx_Awake_mF761D025A7E2FC7FD1AFDB32605191934C8C614D (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisScrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3_m926D886710762EDEC3925BB69A204C1BB3E8E93D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_0;
|
|
L_0 = Component_GetComponent_TisScrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3_m926D886710762EDEC3925BB69A204C1BB3E8E93D(__this, Component_GetComponent_TisScrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3_m926D886710762EDEC3925BB69A204C1BB3E8E93D_RuntimeMethod_var);
|
|
__this->___scrollbar = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___scrollbar), (void*)L_0);
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_1 = __this->___scrollbar;
|
|
NullCheck(L_1);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_2;
|
|
L_2 = Scrollbar_get_handleRect_mEC95A981B744C4DB961D8B5DF6D2B81132CBB238_inline(L_1, NULL);
|
|
__this->___handle = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___handle), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx_OnBeginDrag_mC1691E39DFD38368A1E51EA45768F801D62A61F3 (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___dragging = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx_OnEndDrag_m3E797D7F96BFF006DB881ADF1F7FFE3CB3E8DBAE (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B7_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_0 = NULL;
|
|
{
|
|
__this->___dragging = (bool)0;
|
|
bool L_0 = __this->___hovering;
|
|
if (L_0)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_1 = __this->___scrollbar;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_1, NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)3)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_3 = __this->___scrollbar;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_3, NULL);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_6;
|
|
L_6 = Tween_ScaleX_mF52B8140B45F85AB22E4A3B7E4083611FCA22DC2(L_5, (1.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_7 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_8;
|
|
L_8 = Tween_ScaleY_m0A7DBF05F3A64F6B51C7AF0AB2244E5ED6AC23E6(L_7, (1.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = __this->___OnDragEnd;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_10 = L_9;
|
|
if (L_10)
|
|
{
|
|
G_B7_0 = L_10;
|
|
goto IL_0080;
|
|
}
|
|
G_B6_0 = L_10;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
NullCheck(G_B7_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B7_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx_OnPointerEnter_mDA814796A9E826ADB19FE0ECF4BDCA828E897317 (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___hovering = (bool)1;
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_0 = __this->___scrollbar;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_0, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)3)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_2 = __this->___scrollbar;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_2, NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_5;
|
|
L_5 = Tween_ScaleX_mF52B8140B45F85AB22E4A3B7E4083611FCA22DC2(L_4, (2.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_6 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_7;
|
|
L_7 = Tween_ScaleY_m0A7DBF05F3A64F6B51C7AF0AB2244E5ED6AC23E6(L_6, (2.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx_OnPointerExit_mD9795C30F07839EB45FB57A7FB2D4A92F9F159A6 (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___hovering = (bool)0;
|
|
bool L_0 = __this->___dragging;
|
|
if (L_0)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_1 = __this->___scrollbar;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_1, NULL);
|
|
if ((((int32_t)L_2) == ((int32_t)3)))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_3 = __this->___scrollbar;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline(L_3, NULL);
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_6;
|
|
L_6 = Tween_ScaleX_mF52B8140B45F85AB22E4A3B7E4083611FCA22DC2(L_5, (1.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_7 = __this->___handle;
|
|
Tween_tA7EBD1C270D94F96F2A6A2A37EB3646224AE6CD0 L_8;
|
|
L_8 = Tween_ScaleY_m0A7DBF05F3A64F6B51C7AF0AB2244E5ED6AC23E6(L_7, (1.0f), (0.200000003f), 0, 1, 0, (0.0f), (0.0f), (bool)0, NULL);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollbarEx__ctor_m71FC90C10AD9E0AC465FDDB3002D8175E220D81F (ScrollbarEx_tD4004D47D029692D414C87DDCE206B1529168BF9* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_Position_m35047906601575F75F6517D738126D8D400AC571 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___position;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_Position_m529B2AC9BF884B2344D094719890060F52A6BEC8 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___position = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_Velocity_mB34C32578AE5E94D2B91D4F62E4B26C010E2C1F8 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___velocity;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scroller_get_Direction_m3055269576E90A5E2EABAEE578B67F0ACAAAF4B8 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_Direction_mA4BD1025FD29C4073D5ABAEC22D341280A0DA648 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___contentSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_ContentSize_m4423908D5FEE9FB6B18DB003F3B3DE5EAEE132D1 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___contentSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ViewSize_m7D4D1475EB8C7C6626E25353AC6ADB2CCECAA45C (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___viewSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_ViewSize_m01453E9F561D68011FD475A2C97B9660C63A6CD6 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___viewSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_ScrollSpeed_m2A893B6757CE04F1A8058D3FAB577008FCC08F13 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___scrollSpeed;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_ScrollSpeed_mEF7E70CCBFC4F7FE77FD88C01E80C6C3ED06B107 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___scrollSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_WheelSpeed_m4CDFB070EE03EF07AFB73F0B7D783C1201CE1764 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___wheelSpeed;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_WheelSpeed_mAF72B2201E612CD5F5491150C350748C3CC46400 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___wheelSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Scroller_get_Snap_m8A4F5383082A14065E931821BE6F5E3D79005A53 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___snap;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_Snap_m57A1975BB6E7D9CD72D6B0C04CCED25B5EDDE86D (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___snap = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentSize);
|
|
float L_2 = L_1->___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewSize);
|
|
float L_4 = L_3->___x;
|
|
float L_5;
|
|
L_5 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_subtract(L_2, L_4)), (0.0f), NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_6 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___contentSize);
|
|
float L_7 = L_6->___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_8 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewSize);
|
|
float L_9 = L_8->___y;
|
|
float L_10;
|
|
L_10 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_subtract(L_7, L_9)), (0.0f), NULL);
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_get_ViewLength_m2C476EBE730CD7F6231296430B383F86799712BE (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___direction;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewSize);
|
|
float L_2 = L_1->___x;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_3 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___viewSize);
|
|
float L_4 = L_3->___y;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_0 = __this->___moveingEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_OnMoveing_mD0378843ABD0AE60C56464CC6E9F2CA67ACAF059 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_0 = ___0_value;
|
|
__this->___moveingEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveingEvent), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_0 = __this->___scrollerEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_OnValueChanged_m80431013DF4B18DAB80E261C007B554AEAE686D2 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_0 = ___0_value;
|
|
__this->___scrollerEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___scrollerEvent), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_0 = __this->___moveStopEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_OnMoveStoped_m69435AC090487C26CEEBAEE16C992CD839CCBC06 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_0 = ___0_value;
|
|
__this->___moveStopEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveStopEvent), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* Scroller_get_OnDragging_m39E46CA7834E932232A462EFB95736ABFCF1B2BC (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_0 = __this->___draggingEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_set_OnDragging_mD79A9AD3AED0C27DE48542904A059DBC3D40BA41 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_0 = ___0_value;
|
|
__this->___draggingEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___draggingEvent), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_ScrollTo_mC89250443755B20F8CB178EDE2C66981DEE33320 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_position, bool ___1_smooth, 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;
|
|
}
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B5_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B4_0 = NULL;
|
|
{
|
|
float L_0 = ___0_position;
|
|
float L_1 = __this->___position;
|
|
if ((!(((float)L_0) == ((float)L_1))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_2 = ___1_smooth;
|
|
if (L_2)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = ___0_position;
|
|
__this->___position = L_3;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_4;
|
|
L_4 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(__this, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_5 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B5_0 = L_5;
|
|
goto IL_001f;
|
|
}
|
|
G_B4_0 = L_5;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
float L_6 = __this->___position;
|
|
NullCheck(G_B5_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B5_0, L_6, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
float L_7 = ___0_position;
|
|
RuntimeObject* L_8;
|
|
L_8 = Scroller_MoveTo_m6236F752EC753C5E66B989AC653E5A23AB107288(__this, L_7, NULL);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_ScrollToRatio_mF563E9AC1DECDB4D9FC8648AAE1F89E23720C2E5 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_ratio, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0;
|
|
L_0 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(__this, NULL);
|
|
float L_1 = ___0_ratio;
|
|
VirtualActionInvoker2< float, bool >::Invoke(11, __this, ((float)il2cpp_codegen_multiply(L_0, L_1)), (bool)0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_OnBeginDrag_mAE4BCE7B5558F6D140EDE9110CF68FE5AB160683 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* G_B2_0 = NULL;
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* G_B1_0 = NULL;
|
|
{
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_0;
|
|
L_0 = Scroller_get_OnDragging_m39E46CA7834E932232A462EFB95736ABFCF1B2BC_inline(__this, NULL);
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653(G_B2_0, (bool)1, UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_OnEndDrag_mDD285AEF4895F346F2930A97378941794A28880D (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* G_B2_0 = NULL;
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* G_B1_0 = NULL;
|
|
{
|
|
VirtualActionInvoker0::Invoke(15, __this);
|
|
VirtualActionInvoker0::Invoke(16, __this);
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_0;
|
|
L_0 = Scroller_get_OnDragging_m39E46CA7834E932232A462EFB95736ABFCF1B2BC_inline(__this, NULL);
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0017;
|
|
}
|
|
G_B1_0 = L_1;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653(G_B2_0, (bool)0, UnityEvent_1_Invoke_m4810FCA7EC353CAA7770E91777A04496C5663653_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_OnDrag_m985C08404608912C3A1A3BD196F5E74AD22927C2 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, 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;
|
|
}
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B2_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B1_0 = NULL;
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* G_B5_0 = NULL;
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* G_B4_0 = NULL;
|
|
{
|
|
float L_0;
|
|
L_0 = Time_get_time_m3A271BB1B20041144AC5B7863B71AB1F0150374B(NULL);
|
|
__this->___dragStopTime = L_0;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___0_eventData;
|
|
float L_2;
|
|
L_2 = VirtualFuncInvoker1< float, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(14, __this, L_1);
|
|
__this->___velocity = L_2;
|
|
float L_3 = __this->___position;
|
|
float L_4 = __this->___velocity;
|
|
__this->___position = ((float)il2cpp_codegen_add(L_3, L_4));
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_5;
|
|
L_5 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(__this, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_6 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B2_0 = L_6;
|
|
goto IL_0037;
|
|
}
|
|
G_B1_0 = L_6;
|
|
}
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
float L_7 = __this->___position;
|
|
NullCheck(G_B2_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B2_0, L_7, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_8;
|
|
L_8 = Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D_inline(__this, NULL);
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B5_0 = L_9;
|
|
goto IL_004d;
|
|
}
|
|
G_B4_0 = L_9;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2(G_B5_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_OnScrolled_m48A3D38FCA0C2DBA6408D15ACFE192ACEFC73C20 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, 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;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* G_B2_0 = NULL;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* G_B3_1 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B5_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B4_0 = NULL;
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* G_B8_0 = NULL;
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* G_B7_0 = NULL;
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
float L_0;
|
|
L_0 = Scroller_GetScrollRate_mFEE7B6D9F178671E1D5A1C8DCB2713A130492819(__this, NULL);
|
|
float L_1 = __this->___wheelSpeed;
|
|
V_0 = ((float)il2cpp_codegen_multiply(L_0, L_1));
|
|
int32_t L_2 = __this->___direction;
|
|
if (!L_2)
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_002c;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___0_eventData;
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_3, NULL);
|
|
float L_5 = L_4.___x;
|
|
float L_6 = V_0;
|
|
G_B3_0 = ((float)il2cpp_codegen_multiply(L_5, L_6));
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_7 = ___0_eventData;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline(L_7, NULL);
|
|
float L_9 = L_8.___y;
|
|
float L_10 = V_0;
|
|
G_B3_0 = ((float)il2cpp_codegen_multiply(((-L_9)), L_10));
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
G_B3_1->___velocity = G_B3_0;
|
|
float L_11 = __this->___position;
|
|
float L_12 = __this->___velocity;
|
|
__this->___position = ((float)il2cpp_codegen_add(L_11, L_12));
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_13;
|
|
L_13 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(__this, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_14 = L_13;
|
|
if (L_14)
|
|
{
|
|
G_B5_0 = L_14;
|
|
goto IL_005e;
|
|
}
|
|
G_B4_0 = L_14;
|
|
}
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
float L_15 = __this->___position;
|
|
NullCheck(G_B5_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B5_0, L_15, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_16;
|
|
L_16 = Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D_inline(__this, NULL);
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_17 = L_16;
|
|
if (L_17)
|
|
{
|
|
G_B8_0 = L_17;
|
|
goto IL_0075;
|
|
}
|
|
G_B7_0 = L_17;
|
|
}
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
NullCheck(G_B8_0);
|
|
UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2(G_B8_0, NULL);
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
VirtualActionInvoker0::Invoke(16, __this);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_GetDelta_mBB8684DCC225648AD9D96EB87E30CC720739D4E4 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0;
|
|
L_0 = Scroller_GetScrollRate_mFEE7B6D9F178671E1D5A1C8DCB2713A130492819(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->___direction;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___0_eventData;
|
|
NullCheck(L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_2, NULL);
|
|
float L_4 = L_3.___x;
|
|
float L_5 = V_0;
|
|
return ((float)il2cpp_codegen_multiply(((-L_4)), L_5));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_6 = ___0_eventData;
|
|
NullCheck(L_6);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline(L_6, NULL);
|
|
float L_8 = L_7.___y;
|
|
float L_9 = V_0;
|
|
return ((float)il2cpp_codegen_multiply(L_8, L_9));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Scroller_GetScrollRate_mFEE7B6D9F178671E1D5A1C8DCB2713A130492819 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
V_0 = (1.0f);
|
|
float L_0 = __this->___position;
|
|
if ((!(((float)L_0) < ((float)(0.0f)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
float L_1 = __this->___position;
|
|
float L_2;
|
|
L_2 = fabsf(L_1);
|
|
float L_3;
|
|
L_3 = Scroller_get_ViewLength_m2C476EBE730CD7F6231296430B383F86799712BE(__this, NULL);
|
|
float L_4;
|
|
L_4 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_subtract((1.0f), ((float)(L_2/L_3)))), NULL);
|
|
V_0 = L_4;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
float L_5 = __this->___position;
|
|
float L_6;
|
|
L_6 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(__this, NULL);
|
|
if ((!(((float)L_5) > ((float)L_6))))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = __this->___position;
|
|
float L_8;
|
|
L_8 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(__this, NULL);
|
|
float L_9;
|
|
L_9 = fabsf(((float)il2cpp_codegen_subtract(L_7, L_8)));
|
|
float L_10;
|
|
L_10 = Scroller_get_ViewLength_m2C476EBE730CD7F6231296430B383F86799712BE(__this, NULL);
|
|
float L_11;
|
|
L_11 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_subtract((1.0f), ((float)(L_9/L_10)))), NULL);
|
|
V_0 = L_11;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
float L_12 = V_0;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_Inertia_mB65C31E14E9A7605038B79326C3E3C60BDF29951 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* G_B7_0 = NULL;
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* G_B6_0 = NULL;
|
|
{
|
|
bool L_0 = __this->___snap;
|
|
if (L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
float L_1;
|
|
L_1 = Time_get_time_m3A271BB1B20041144AC5B7863B71AB1F0150374B(NULL);
|
|
float L_2 = __this->___dragStopTime;
|
|
if ((!(((float)((float)il2cpp_codegen_subtract(L_1, L_2))) > ((float)(0.00999999978f)))))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
float L_3 = __this->___velocity;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
if ((!(((float)L_4) > ((float)(0.100000001f)))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
RuntimeObject* L_5;
|
|
L_5 = Scroller_InertiaTo_m9C33DD630B81669F51923BBF8ACDB183A7CE2789(__this, NULL);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_6;
|
|
L_6 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_5, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_7;
|
|
L_7 = Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699_inline(__this, NULL);
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_8 = L_7;
|
|
if (L_8)
|
|
{
|
|
G_B7_0 = L_8;
|
|
goto IL_004d;
|
|
}
|
|
G_B6_0 = L_8;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
NullCheck(G_B7_0);
|
|
UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2(G_B7_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_Elastic_m36EF76544D1F9311258802169ACB927A57AED61F (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___position;
|
|
if ((!(((float)L_0) < ((float)(0.0f)))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
RuntimeObject* L_1;
|
|
L_1 = Scroller_ElasticTo_m9732430646551A0579A8CEBD2F7D111D1306A4BD(__this, (0.0f), NULL);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_2;
|
|
L_2 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float L_3 = __this->___position;
|
|
float L_4;
|
|
L_4 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(__this, NULL);
|
|
if ((!(((float)L_3) > ((float)L_4))))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
MonoBehaviour_StopAllCoroutines_m872033451D42013A99867D09337490017E9ED318(__this, NULL);
|
|
float L_5;
|
|
L_5 = Scroller_get_MaxPosition_m45AFC76BDDC8579BCDB5D7234CA78D76249A4EB8(__this, NULL);
|
|
RuntimeObject* L_6;
|
|
L_6 = Scroller_ElasticTo_m9732430646551A0579A8CEBD2F7D111D1306A4BD(__this, L_5, NULL);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_7;
|
|
L_7 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_InertiaTo_m9C33DD630B81669F51923BBF8ACDB183A7CE2789 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* L_0 = (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D*)il2cpp_codegen_object_new(U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D_il2cpp_TypeInfo_var);
|
|
U3CInertiaToU3Ed__62__ctor_mC4AB3F95D4F434C2EF334DCF8102A296D8986D95(L_0, 0, NULL);
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_ElasticTo_m9732430646551A0579A8CEBD2F7D111D1306A4BD (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* L_0 = (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13*)il2cpp_codegen_object_new(U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13_il2cpp_TypeInfo_var);
|
|
U3CElasticToU3Ed__63__ctor_m4E0C078513D19706D4C2A100FF3B3EF978A8E5C1(L_0, 0, NULL);
|
|
U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* L_2 = L_1;
|
|
float L_3 = ___0_targetPos;
|
|
NullCheck(L_2);
|
|
L_2->___targetPos = L_3;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_MoveTo_m6236F752EC753C5E66B989AC653E5A23AB107288 (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* L_0 = (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05*)il2cpp_codegen_object_new(U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05_il2cpp_TypeInfo_var);
|
|
U3CMoveToU3Ed__64__ctor_mF9A0CCC7C4A4FEEB586A1F8401EDDF5D300B3FAC(L_0, 0, NULL);
|
|
U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* L_2 = L_1;
|
|
float L_3 = ___0_targetPos;
|
|
NullCheck(L_2);
|
|
L_2->___targetPos = L_3;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Scroller_ToPosition_mA6DAE0B0DC12230119F4539B94D087B54D0A99BC (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_targetPos, float ___1_speed, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* L_0 = (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31*)il2cpp_codegen_object_new(U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31_il2cpp_TypeInfo_var);
|
|
U3CToPositionU3Ed__65__ctor_m429912B008D50C8468F0EB27AE9C8E005ECED8C9(L_0, 0, NULL);
|
|
U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* L_2 = L_1;
|
|
float L_3 = ___0_targetPos;
|
|
NullCheck(L_2);
|
|
L_2->___targetPos = L_3;
|
|
U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* L_4 = L_2;
|
|
float L_5 = ___1_speed;
|
|
NullCheck(L_4);
|
|
L_4->___speed = L_5;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_UnityEngine_EventSystems_IScrollHandler_OnScroll_m96811C23C9CCE6A4AFD53661277D7AA1B841072B (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___0_eventData, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___0_eventData;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(13, __this, L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller__ctor_m86D26F8E34EE197B952DC63EAE2D44406951E80E (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___scrollSpeed = (1.0f);
|
|
__this->___wheelSpeed = (30.0f);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_0 = (ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9*)il2cpp_codegen_object_new(ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9_il2cpp_TypeInfo_var);
|
|
ScrollerEvent__ctor_m283D2F5E15B94014C8BF55BEADB83201B18ED21D(L_0, NULL);
|
|
__this->___scrollerEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___scrollerEvent), (void*)L_0);
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_1 = (MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81*)il2cpp_codegen_object_new(MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81_il2cpp_TypeInfo_var);
|
|
MoveStopEvent__ctor_mD63236BA070CA8CB247F29847ED1B1B06D657E25(L_1, NULL);
|
|
__this->___moveStopEvent = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveStopEvent), (void*)L_1);
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_2 = (DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009*)il2cpp_codegen_object_new(DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009_il2cpp_TypeInfo_var);
|
|
DraggingEvent__ctor_m3E63DE7FE1CBA84484B01EFE6C8EF3098C6B145E(L_2, NULL);
|
|
__this->___draggingEvent = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___draggingEvent), (void*)L_2);
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_3 = (MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267*)il2cpp_codegen_object_new(MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267_il2cpp_TypeInfo_var);
|
|
MoveingEvent__ctor_mEBDCE00B12EEEBC1004AA6C0D4E8C840AF3BA1E5(L_3, NULL);
|
|
__this->___moveingEvent = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveingEvent), (void*)L_3);
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CElasticToU3Ed__63__ctor_m4E0C078513D19706D4C2A100FF3B3EF978A8E5C1 (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_U3CU3E1__state;
|
|
__this->___U3CU3E1__state = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CElasticToU3Ed__63_System_IDisposable_Dispose_mAE21EDD4BCD5E29C42AC1DEE14B1CF2143FEAD44 (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CElasticToU3Ed__63_MoveNext_m7B674501418BFADC1D00E16F5D687B2BC29A7F1A (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state;
|
|
V_0 = L_0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->___U3CU3E4__this;
|
|
V_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = V_1;
|
|
float L_5 = __this->___targetPos;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_6;
|
|
L_6 = Scroller_ToPosition_mA6DAE0B0DC12230119F4539B94D087B54D0A99BC(L_4, L_5, (7.0f), NULL);
|
|
__this->___U3CU3E2__current = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current), (void*)L_6);
|
|
__this->___U3CU3E1__state = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CElasticToU3Ed__63_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mB5F5A949D6288832F80892E3B2434123A65CBBF0 (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CElasticToU3Ed__63_System_Collections_IEnumerator_Reset_m898105BEA03D797FB0BD8C8A25B84B68F3026DCB (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CElasticToU3Ed__63_System_Collections_IEnumerator_Reset_m898105BEA03D797FB0BD8C8A25B84B68F3026DCB_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CElasticToU3Ed__63_System_Collections_IEnumerator_get_Current_m61A330A38F11E98883C793B6E7385089121A6BD8 (U3CElasticToU3Ed__63_tC9F317AF1DE48BDF2D2E4AD75632BEBAE63CCA13* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInertiaToU3Ed__62__ctor_mC4AB3F95D4F434C2EF334DCF8102A296D8986D95 (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_U3CU3E1__state;
|
|
__this->___U3CU3E1__state = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInertiaToU3Ed__62_System_IDisposable_Dispose_mB2646C136716615BDC5E248FE0937014500B79EE (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CInertiaToU3Ed__62_MoveNext_m677A7E5FD72803F4B263FC0305349617D07B5575 (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* V_1 = NULL;
|
|
float V_2 = 0.0f;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B5_0 = NULL;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B4_0 = NULL;
|
|
float G_B6_0 = 0.0f;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B6_1 = NULL;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B8_0 = NULL;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B7_0 = NULL;
|
|
float G_B9_0 = 0.0f;
|
|
U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* G_B9_1 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B12_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B11_0 = NULL;
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* G_B18_0 = NULL;
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* G_B17_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state;
|
|
V_0 = L_0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->___U3CU3E4__this;
|
|
V_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
__this->___U3CtimerU3E5__2 = (0.0f);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
float L_5 = L_4->___position;
|
|
__this->___U3CpU3E5__3 = L_5;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
float L_7 = L_6->___velocity;
|
|
if ((((float)L_7) > ((float)(0.0f))))
|
|
{
|
|
G_B5_0 = __this;
|
|
goto IL_0058;
|
|
}
|
|
G_B4_0 = __this;
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
float L_9 = L_8->___velocity;
|
|
float L_10;
|
|
L_10 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_9, (-100.0f), NULL);
|
|
G_B6_0 = L_10;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0068;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
float L_12 = L_11->___velocity;
|
|
float L_13;
|
|
L_13 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_12, (100.0f), NULL);
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
NullCheck(G_B6_1);
|
|
G_B6_1->___U3CvU3E5__4 = G_B6_0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
bool L_15 = L_14->___snap;
|
|
if (L_15)
|
|
{
|
|
G_B8_0 = __this;
|
|
goto IL_007d;
|
|
}
|
|
G_B7_0 = __this;
|
|
}
|
|
{
|
|
G_B9_0 = (1.0f);
|
|
G_B9_1 = G_B7_0;
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
G_B9_0 = (0.100000001f);
|
|
G_B9_1 = G_B8_0;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
NullCheck(G_B9_1);
|
|
G_B9_1->___U3CdurationU3E5__5 = G_B9_0;
|
|
goto IL_00fb;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
float L_16 = __this->___U3CtimerU3E5__2;
|
|
double L_17;
|
|
L_17 = EaseUtil_EaseOutCirc_m069953831F9CF325C4465B77A318A3E3AF598312(L_16, NULL);
|
|
V_2 = ((float)il2cpp_codegen_multiply(((float)L_17), (40.0f)));
|
|
float L_18 = __this->___U3CtimerU3E5__2;
|
|
float L_19;
|
|
L_19 = Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865(NULL);
|
|
__this->___U3CtimerU3E5__2 = ((float)il2cpp_codegen_add(L_18, L_19));
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_20 = V_1;
|
|
float L_21 = __this->___U3CpU3E5__3;
|
|
float L_22 = V_2;
|
|
float L_23 = __this->___U3CvU3E5__4;
|
|
NullCheck(L_20);
|
|
L_20->___position = ((float)il2cpp_codegen_add(L_21, ((float)il2cpp_codegen_multiply(L_22, L_23))));
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_24 = V_1;
|
|
NullCheck(L_24);
|
|
VirtualActionInvoker0::Invoke(16, L_24);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_25 = V_1;
|
|
NullCheck(L_25);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_26;
|
|
L_26 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(L_25, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_27 = L_26;
|
|
if (L_27)
|
|
{
|
|
G_B12_0 = L_27;
|
|
goto IL_00d5;
|
|
}
|
|
G_B11_0 = L_27;
|
|
}
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_28 = V_1;
|
|
NullCheck(L_28);
|
|
float L_29 = L_28->___position;
|
|
NullCheck(G_B12_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B12_0, L_29, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663* L_30 = (WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663*)il2cpp_codegen_object_new(WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663_il2cpp_TypeInfo_var);
|
|
WaitForEndOfFrame__ctor_m4AF7E576C01E6B04443BB898B1AE5D645F7D45AB(L_30, NULL);
|
|
__this->___U3CU3E2__current = L_30;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current), (void*)L_30);
|
|
__this->___U3CU3E1__state = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
float L_31 = __this->___U3CtimerU3E5__2;
|
|
float L_32 = __this->___U3CdurationU3E5__5;
|
|
if ((((float)L_31) < ((float)L_32)))
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_34;
|
|
L_34 = Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699_inline(L_33, NULL);
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_35 = L_34;
|
|
if (L_35)
|
|
{
|
|
G_B18_0 = L_35;
|
|
goto IL_0115;
|
|
}
|
|
G_B17_0 = L_35;
|
|
}
|
|
{
|
|
goto IL_011a;
|
|
}
|
|
|
|
IL_0115:
|
|
{
|
|
NullCheck(G_B18_0);
|
|
UnityEvent_Invoke_mFBF80D59B03C30C5FE6A06F897D954ACADE061D2(G_B18_0, NULL);
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CInertiaToU3Ed__62_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA5035D05116527250E854412973F081921F5187C (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInertiaToU3Ed__62_System_Collections_IEnumerator_Reset_m5C38DF9DF8A40E4A5839CDE7432B2CC82EBDA3F1 (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CInertiaToU3Ed__62_System_Collections_IEnumerator_Reset_m5C38DF9DF8A40E4A5839CDE7432B2CC82EBDA3F1_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CInertiaToU3Ed__62_System_Collections_IEnumerator_get_Current_m6F3C283FF7FDE03C979E06AD191F5BF8BCD6ADE5 (U3CInertiaToU3Ed__62_tD8C4E0C5116E736219B83ACC626C2A548302E36D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToU3Ed__64__ctor_mF9A0CCC7C4A4FEEB586A1F8401EDDF5D300B3FAC (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_U3CU3E1__state;
|
|
__this->___U3CU3E1__state = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToU3Ed__64_System_IDisposable_Dispose_mF192A4BFC8C57EEE3F9965B357C2A1BA67EDF7AD (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CMoveToU3Ed__64_MoveNext_mBFDB76C0104BDAC2FB8CC1E15EC5A3003D1DDD6B (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state;
|
|
V_0 = L_0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->___U3CU3E4__this;
|
|
V_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = V_1;
|
|
float L_5 = __this->___targetPos;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
float L_7 = L_6->___scrollSpeed;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = Scroller_ToPosition_mA6DAE0B0DC12230119F4539B94D087B54D0A99BC(L_4, L_5, L_7, NULL);
|
|
__this->___U3CU3E2__current = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current), (void*)L_8);
|
|
__this->___U3CU3E1__state = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CMoveToU3Ed__64_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m3EAFA3E12BA7F798F56F4BDF2AFDEA4F60310C2F (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToU3Ed__64_System_Collections_IEnumerator_Reset_mD7B9E0FA708195F03CA6482C7782BE29C56BA381 (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CMoveToU3Ed__64_System_Collections_IEnumerator_Reset_mD7B9E0FA708195F03CA6482C7782BE29C56BA381_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CMoveToU3Ed__64_System_Collections_IEnumerator_get_Current_m458C41CAC5E9ABC24CB8A7AB8512E998BCAFAC93 (U3CMoveToU3Ed__64_tDA33A514E2F06F2E70D6DFA1AF4E0241DF713E05* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CToPositionU3Ed__65__ctor_m429912B008D50C8468F0EB27AE9C8E005ECED8C9 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_U3CU3E1__state;
|
|
__this->___U3CU3E1__state = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CToPositionU3Ed__65_System_IDisposable_Dispose_m2B6626B51081BADCA8CB8C1FA52FBE899434FF95 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CToPositionU3Ed__65_MoveNext_m93FA0880169A8164ECBB91F793288ED599AADBF9 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* V_1 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B6_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B5_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B12_0 = NULL;
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* G_B11_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state;
|
|
V_0 = L_0;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_1 = __this->___U3CU3E4__this;
|
|
V_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
float L_5 = L_4->___position;
|
|
__this->___U3CstartPosU3E5__2 = L_5;
|
|
float L_6;
|
|
L_6 = Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865(NULL);
|
|
__this->___U3CtimeU3E5__3 = L_6;
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_7 = V_1;
|
|
float L_8 = __this->___U3CstartPosU3E5__2;
|
|
float L_9 = __this->___targetPos;
|
|
float L_10 = __this->___U3CtimeU3E5__3;
|
|
float L_11 = __this->___speed;
|
|
float L_12;
|
|
L_12 = Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline(L_8, L_9, ((float)il2cpp_codegen_multiply(L_10, L_11)), NULL);
|
|
NullCheck(L_7);
|
|
L_7->___position = L_12;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_14;
|
|
L_14 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(L_13, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_15 = L_14;
|
|
if (L_15)
|
|
{
|
|
G_B6_0 = L_15;
|
|
goto IL_006a;
|
|
}
|
|
G_B5_0 = L_15;
|
|
}
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
float L_17 = L_16->___position;
|
|
NullCheck(G_B6_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B6_0, L_17, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
float L_18 = __this->___U3CtimeU3E5__3;
|
|
float L_19;
|
|
L_19 = Time_get_deltaTime_mC3195000401F0FD167DD2F948FD2BC58330D0865(NULL);
|
|
__this->___U3CtimeU3E5__3 = ((float)il2cpp_codegen_add(L_18, L_19));
|
|
WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663* L_20 = (WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663*)il2cpp_codegen_object_new(WaitForEndOfFrame_tE38D80923E3F8380069B423968C25ABE50A46663_il2cpp_TypeInfo_var);
|
|
WaitForEndOfFrame__ctor_m4AF7E576C01E6B04443BB898B1AE5D645F7D45AB(L_20, NULL);
|
|
__this->___U3CU3E2__current = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current), (void*)L_20);
|
|
__this->___U3CU3E1__state = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
__this->___U3CU3E1__state = (-1);
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
float L_21 = __this->___targetPos;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_22 = V_1;
|
|
NullCheck(L_22);
|
|
float L_23 = L_22->___position;
|
|
float L_24;
|
|
L_24 = fabsf(((float)il2cpp_codegen_subtract(L_21, L_23)));
|
|
if ((((float)L_24) > ((float)(0.100000001f))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_25 = V_1;
|
|
float L_26 = __this->___targetPos;
|
|
NullCheck(L_25);
|
|
L_25->___position = L_26;
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_27 = V_1;
|
|
NullCheck(L_27);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_28;
|
|
L_28 = Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline(L_27, NULL);
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_29 = L_28;
|
|
if (L_29)
|
|
{
|
|
G_B12_0 = L_29;
|
|
goto IL_00d6;
|
|
}
|
|
G_B11_0 = L_29;
|
|
}
|
|
{
|
|
goto IL_00e1;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* L_30 = V_1;
|
|
NullCheck(L_30);
|
|
float L_31 = L_30->___position;
|
|
NullCheck(G_B12_0);
|
|
UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805(G_B12_0, L_31, UnityEvent_1_Invoke_mABC41DCEDDFA68F8F39C0DFC1CF55B7C1B70A805_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CToPositionU3Ed__65_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mBBCD7B9B312E02EBB3C72387B91FA7DBB6184B91 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CToPositionU3Ed__65_System_Collections_IEnumerator_Reset_m8F2FF8CF51F3418B72A54A651ACD3D9DE982E523 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CToPositionU3Ed__65_System_Collections_IEnumerator_Reset_m8F2FF8CF51F3418B72A54A651ACD3D9DE982E523_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CToPositionU3Ed__65_System_Collections_IEnumerator_get_Current_m6851171605A339FB3F03F3C5BECE574DC890CC63 (U3CToPositionU3Ed__65_t479E5E16665008A9C92A55A765DFB5156CC96B31* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___rectTransform;
|
|
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;
|
|
}
|
|
}
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_2;
|
|
L_2 = Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4(__this, Component_GetComponent_TisRectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_m0640480E7E38BB88B0D1F6AD59E697C8EE6AAFA4_RuntimeMethod_var);
|
|
__this->___rectTransform = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___rectTransform), (void*)L_2);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_3 = __this->___rectTransform;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_set_RectTransform_m9D062A542DE7A7897E0D9FA3BC1467066727390D (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = ___0_value;
|
|
__this->___rectTransform = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___rectTransform), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CNameU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_set_Name_mBF29D7AEC171A40D34CD1326E81660C9AFF53E42 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CNameU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_set_Index_mF010EDE38E34A23D1B74E6FAF310ED7435F31A8D (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_set_ChoiseState_mF358BE6A225C0B7246341370C24D1E6D1E80E91D (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CChoiseStateU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ViewHolder_get_ChoiseState_mCC1DFDE039F952C346E5A528E689E43553C99710 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CChoiseStateU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ViewHolder_get_SizeDelta_mF220CEFA7E8FE98B631DB054BDF8F7C0F461C0B5 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0;
|
|
L_0 = ViewHolder_get_RectTransform_m334E4F52BAE27833771B3DC5A04F1DBBBC0E5A21(__this, NULL);
|
|
NullCheck(L_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_OnStart_mE0FE437C81655DEAD76BAAD44DA201C093EE26E4 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_OnRecycled_m165DA31095C57D51D1A6CE6E75163780B37B2C3B (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_BindChoiceState_mC4263F4214EE79540046D5A68FAA78748EFF0393 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, bool ___0_state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = ViewHolder_get_ChoiseState_mCC1DFDE039F952C346E5A528E689E43553C99710_inline(__this, NULL);
|
|
bool L_1 = ___0_state;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
bool L_2 = ___0_state;
|
|
ViewHolder_set_ChoiseState_mF358BE6A225C0B7246341370C24D1E6D1E80E91D_inline(__this, L_2, NULL);
|
|
bool L_3 = ___0_state;
|
|
VirtualActionInvoker1< bool >::Invoke(8, __this, L_3);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder_OnBindChoiceState_m49B5ED6C28AD3118E83106913AD2E8B0B5FF2B24 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, bool ___0_state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewHolder__ctor_mF40D338DBB48E71602CF6BDE74EA9BDCB94F2E17 (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedViewProvider__ctor_m427C7888F61B69A9B3CF63CB31526FE45C20CFEA (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mAB759A84BCE85C027F3EE1D5B15431E381646AB4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m6AE0CD18AC9552D5D5E52EF6D5A17CD3B88189E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MixedObjectPool_1__ctor_mA379D3D86790D0089F70B3CEBDF0251F9DD4E1B5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityMixedComponentFactory_1__ctor_m1E0D6ABD5496821C28A39F11694870347F523D57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317* V_0 = NULL;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_3 = NULL;
|
|
{
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* L_0 = (Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717*)il2cpp_codegen_object_new(Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mAB759A84BCE85C027F3EE1D5B15431E381646AB4(L_0, Dictionary_2__ctor_mAB759A84BCE85C027F3EE1D5B15431E381646AB4_RuntimeMethod_var);
|
|
__this->___dict = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___dict), (void*)L_0);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_1 = ___0_recyclerView;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_2 = ___1_templates;
|
|
ViewProvider__ctor_m36E5F0086682C647E64983F93BB5528F1AF57A8E(__this, L_1, L_2, NULL);
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_3 = ___1_templates;
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_4 = V_1;
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_3 = L_7;
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* L_8 = __this->___dict;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_9 = V_3;
|
|
NullCheck(L_9);
|
|
String_t* L_10;
|
|
L_10 = Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392(L_9, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_11 = V_3;
|
|
NullCheck(L_8);
|
|
Dictionary_2_set_Item_m6AE0CD18AC9552D5D5E52EF6D5A17CD3B88189E7(L_8, L_10, L_11, Dictionary_2_set_Item_m6AE0CD18AC9552D5D5E52EF6D5A17CD3B88189E7_RuntimeMethod_var);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* L_15 = __this->___dict;
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_16 = ___0_recyclerView;
|
|
NullCheck(L_16);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_17;
|
|
L_17 = RecyclerView_get_Content_m9300D9F5D595725EECD0D63DF2F7122AE9EFDC7F(L_16, NULL);
|
|
UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317* L_18 = (UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317*)il2cpp_codegen_object_new(UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317_il2cpp_TypeInfo_var);
|
|
UnityMixedComponentFactory_1__ctor_m1E0D6ABD5496821C28A39F11694870347F523D57(L_18, L_15, L_17, UnityMixedComponentFactory_1__ctor_m1E0D6ABD5496821C28A39F11694870347F523D57_RuntimeMethod_var);
|
|
V_0 = L_18;
|
|
UnityMixedComponentFactory_1_t6C7187D690DA1F7133493F7BF5B9AD339768D317* L_19 = V_0;
|
|
MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5* L_20 = (MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5*)il2cpp_codegen_object_new(MixedObjectPool_1_t6B692AAB53C4232DF3B16DC33279A9EF4F4BA8F5_il2cpp_TypeInfo_var);
|
|
MixedObjectPool_1__ctor_mA379D3D86790D0089F70B3CEBDF0251F9DD4E1B5(L_20, L_19, MixedObjectPool_1__ctor_mA379D3D86790D0089F70B3CEBDF0251F9DD4E1B5_RuntimeMethod_var);
|
|
__this->___objectPool = L_20;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___objectPool), (void*)L_20);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* MixedViewProvider_GetTemplate_mFE9CC78AD7B52A54C1975F2012CF7173A429939B (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, String_t* ___0_viewName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m74EE8DFCA37549AEBACFB513B13C5674C8E0F445_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB* L_2 = (NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var)));
|
|
NullReferenceException__ctor_mA41317A57F5C1C0E3F59C7EB25ABD484564B23D4(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E8DF9878CDBE09891B26429192A6705458D5E0B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MixedViewProvider_GetTemplate_mFE9CC78AD7B52A54C1975F2012CF7173A429939B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* L_3 = __this->___dict;
|
|
String_t* L_4 = ___0_viewName;
|
|
NullCheck(L_3);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5;
|
|
L_5 = Dictionary_2_get_Item_m74EE8DFCA37549AEBACFB513B13C5674C8E0F445(L_3, L_4, Dictionary_2_get_Item_m74EE8DFCA37549AEBACFB513B13C5674C8E0F445_RuntimeMethod_var);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* MixedViewProvider_GetTemplates_m7C2A48114824E3E1B1698ACDCB10707BC9D5A3C3 (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Values_mBB0AEECB6A0CD28970D51D79CE29B8F653785A89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A_m273AEA9B2E3D880E2CA048DED48168A656A751BF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB* L_2 = (NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var)));
|
|
NullReferenceException__ctor_mA41317A57F5C1C0E3F59C7EB25ABD484564B23D4(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E8DF9878CDBE09891B26429192A6705458D5E0B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MixedViewProvider_GetTemplates_m7C2A48114824E3E1B1698ACDCB10707BC9D5A3C3_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Dictionary_2_t2FE8A5F1A61808CFDBE38152421BE3F9EC241717* L_3 = __this->___dict;
|
|
NullCheck(L_3);
|
|
ValueCollection_t3EC383423EC96C7431923C46D23005275313C22C* L_4;
|
|
L_4 = Dictionary_2_get_Values_mBB0AEECB6A0CD28970D51D79CE29B8F653785A89(L_3, Dictionary_2_get_Values_mBB0AEECB6A0CD28970D51D79CE29B8F653785A89_RuntimeMethod_var);
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_5;
|
|
L_5 = Enumerable_ToArray_TisViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A_m273AEA9B2E3D880E2CA048DED48168A656A751BF(L_4, Enumerable_ToArray_TisViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A_m273AEA9B2E3D880E2CA048DED48168A656A751BF_RuntimeMethod_var);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* MixedViewProvider_Allocate_m584CB4CA459FCA564C110477BFD39367F23568FC (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, String_t* ___0_viewName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
String_t* L_1 = ___0_viewName;
|
|
NullCheck(L_0);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = InterfaceFuncInvoker1< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, String_t* >::Invoke(0, IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065_il2cpp_TypeInfo_var, L_0, L_1);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3 = L_2;
|
|
NullCheck(L_3);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_3, NULL);
|
|
NullCheck(L_4);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_4, (bool)1, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedViewProvider_Free_m915391D2B4B581BEC298876429B41289C68626F5 (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, String_t* ___0_viewName, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___1_viewHolder, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
String_t* L_1 = ___0_viewName;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2 = ___1_viewHolder;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker2< String_t*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(1, IMixedObjectPool_1_tC6FE0CBBD22D4D90BC719FD4B88C520D0625B065_il2cpp_TypeInfo_var, L_0, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MixedViewProvider_Reset_m913290651EA14C713268F30FCC5392C6F46EDE32 (MixedViewProvider_t5FE7E192D5C390519D55B985C5C60A1C7E61D7B7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ViewProvider_Clear_m2579B4EE115A986778BF6FD15D28238E936A8870(__this, NULL);
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, 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 IL2CPP_METHOD_ATTR void SimpleViewProvider__ctor_m36312456041EDF58D941F0961B302101417146E7 (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1__ctor_m6863D4D1A7ABD4276A9DA677B202EDFACECF2E03_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityComponentFactory_1__ctor_mD0E53E1EE5538ACB55414EC28132956DB64C9544_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66* V_0 = NULL;
|
|
{
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_0 = ___0_recyclerView;
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = ___1_templates;
|
|
ViewProvider__ctor_m36E5F0086682C647E64983F93BB5528F1AF57A8E(__this, L_0, L_1, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = VirtualFuncInvoker1< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, String_t* >::Invoke(5, __this, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_3 = ___0_recyclerView;
|
|
NullCheck(L_3);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4;
|
|
L_4 = RecyclerView_get_Content_m9300D9F5D595725EECD0D63DF2F7122AE9EFDC7F(L_3, NULL);
|
|
UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66* L_5 = (UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66*)il2cpp_codegen_object_new(UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66_il2cpp_TypeInfo_var);
|
|
UnityComponentFactory_1__ctor_mD0E53E1EE5538ACB55414EC28132956DB64C9544(L_5, L_2, L_4, UnityComponentFactory_1__ctor_mD0E53E1EE5538ACB55414EC28132956DB64C9544_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
UnityComponentFactory_1_t70E81867E5ACF3C27ABC1CD16121A71CDEFE6E66* L_6 = V_0;
|
|
ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273* L_7 = (ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273*)il2cpp_codegen_object_new(ObjectPool_1_t2D060E97C6209A53DA38F5C914EA7C103FDA0273_il2cpp_TypeInfo_var);
|
|
ObjectPool_1__ctor_m6863D4D1A7ABD4276A9DA677B202EDFACECF2E03(L_7, L_6, ((int32_t)100), ObjectPool_1__ctor_m6863D4D1A7ABD4276A9DA677B202EDFACECF2E03_RuntimeMethod_var);
|
|
__this->___objectPool = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___objectPool), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* SimpleViewProvider_GetTemplate_mA4B7059F4C55D5E88D7ED9079BB805101A41CBC2 (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, String_t* ___0_viewName, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB* L_2 = (NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var)));
|
|
NullReferenceException__ctor_mA41317A57F5C1C0E3F59C7EB25ABD484564B23D4(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E8DF9878CDBE09891B26429192A6705458D5E0B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleViewProvider_GetTemplate_mA4B7059F4C55D5E88D7ED9079BB805101A41CBC2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_3 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = 0;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* SimpleViewProvider_GetTemplates_m8B3BD43B1E713D84DEB8EF07E842914098EDC06C (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_0 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_1 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
NullCheck(L_1);
|
|
if ((((RuntimeArray*)L_1)->max_length))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB* L_2 = (NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_tBDE63A6D24569B964908408389070C6A9F5005BB_il2cpp_TypeInfo_var)));
|
|
NullReferenceException__ctor_mA41317A57F5C1C0E3F59C7EB25ABD484564B23D4(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E8DF9878CDBE09891B26429192A6705458D5E0B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SimpleViewProvider_GetTemplates_m8B3BD43B1E713D84DEB8EF07E842914098EDC06C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_3 = ((ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8*)__this)->___templates;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* SimpleViewProvider_Allocate_mD03E48D0A3FD118EAC079EC192C7F0D9958EB6FE (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, String_t* ___0_viewName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
NullCheck(L_0);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_1;
|
|
L_1 = InterfaceFuncInvoker0< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(0, IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9_il2cpp_TypeInfo_var, L_0);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_2, NULL);
|
|
NullCheck(L_3);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_3, (bool)1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleViewProvider_Free_m3F4D68D4ACD4CB7660DCF91701A1EEA73A41C64E (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, String_t* ___0_viewName, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ___1_viewHolder, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_1 = ___1_viewHolder;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker1< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(1, IObjectPool_1_tF36C14DE539C418C0F7763FD933673D802D7D1D9_il2cpp_TypeInfo_var, L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleViewProvider_Reset_m509BDE289730C5F73E2C5CF1BD00686A0AA8D67F (SimpleViewProvider_t95B1965F4901E3F336F76F88D71BE98464CC9405* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ViewProvider_Clear_m2579B4EE115A986778BF6FD15D28238E936A8870(__this, NULL);
|
|
RuntimeObject* L_0 = __this->___objectPool;
|
|
NullCheck(L_0);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, 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 IL2CPP_METHOD_ATTR RuntimeObject* ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CAdapterU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_set_Adapter_m917C4297269D43BEDB1E3BD9F9F79B9E17BF9FCE (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CAdapterU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAdapterU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->___U3CLayoutManagerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_set_LayoutManager_m7087DB38D3E162F23393C467B4D9BC043F8D81A7 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = ___0_value;
|
|
__this->___U3CLayoutManagerU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLayoutManagerU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider__ctor_m36E5F0086682C647E64983F93BB5528F1AF57A8E (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* ___0_recyclerView, ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* ___1_templates, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5A6C71088F25EC93F17C21F87017DD4882FAF97C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = (List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05*)il2cpp_codegen_object_new(List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m5A6C71088F25EC93F17C21F87017DD4882FAF97C(L_0, List_1__ctor_m5A6C71088F25EC93F17C21F87017DD4882FAF97C_RuntimeMethod_var);
|
|
__this->___viewHolders = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___viewHolders), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* L_1 = ___0_recyclerView;
|
|
__this->___recyclerView = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___recyclerView), (void*)L_1);
|
|
ViewHolderU5BU5D_tC02102E60FB7AA6099CA9572DDECE94041B64E6A* L_2 = ___1_templates;
|
|
__this->___templates = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___templates), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_CreateViewHolder_m5A6C79EC4D94F93B4B80D66F9A9311D2F29FA329 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD3B54E45B4C6B333CB80734FD29A9C7DAE4168EB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
V_0 = L_0;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
RuntimeObject* L_2;
|
|
L_2 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_2);
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, 1)))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
String_t* L_6;
|
|
L_6 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_4, L_5);
|
|
V_1 = L_6;
|
|
String_t* L_7 = V_1;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_8;
|
|
L_8 = VirtualFuncInvoker1< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, String_t* >::Invoke(7, __this, L_7);
|
|
V_2 = L_8;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
VirtualActionInvoker0::Invoke(4, L_9);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_10 = V_2;
|
|
String_t* L_11 = V_1;
|
|
NullCheck(L_10);
|
|
ViewHolder_set_Name_mBF29D7AEC171A40D34CD1326E81660C9AFF53E42_inline(L_10, L_11, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_12 = V_2;
|
|
int32_t L_13 = V_0;
|
|
NullCheck(L_12);
|
|
ViewHolder_set_Index_mF010EDE38E34A23D1B74E6FAF310ED7435F31A8D_inline(L_12, L_13, NULL);
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_14 = __this->___viewHolders;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_15 = V_2;
|
|
NullCheck(L_14);
|
|
List_1_Add_mD3B54E45B4C6B333CB80734FD29A9C7DAE4168EB_inline(L_14, L_15, List_1_Add_mD3B54E45B4C6B333CB80734FD29A9C7DAE4168EB_RuntimeMethod_var);
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_16;
|
|
L_16 = ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B_inline(__this, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_17 = V_2;
|
|
int32_t L_18 = V_0;
|
|
NullCheck(L_16);
|
|
VirtualActionInvoker2< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, int32_t >::Invoke(23, L_16, L_17, L_18);
|
|
RuntimeObject* L_19;
|
|
L_19 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_20 = V_2;
|
|
int32_t L_21 = V_0;
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker2< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, int32_t >::Invoke(3, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_19, L_20, L_21);
|
|
int32_t L_22 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
int32_t L_23 = V_0;
|
|
int32_t L_24 = ___0_index;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_25;
|
|
L_25 = ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B_inline(__this, NULL);
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_25, NULL);
|
|
if ((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add(L_24, L_26)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_RemoveViewHolder_mFD7ACE812F9A4CCE919E8378C83A2A6BCEEBAD38 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m65838220B412C5284F74DCF960AE44C789451C02_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
V_0 = L_0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
RuntimeObject* L_2;
|
|
L_2 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_2);
|
|
if ((((int32_t)L_1) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, 1)))))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5;
|
|
L_5 = ViewProvider_GetViewHolderIndex_m5CA18FA6B92E9033FCD4BA49A57CD021960A56CD(__this, L_4, NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
if ((((int32_t)L_6) < ((int32_t)0)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_1;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_8 = __this->___viewHolders;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_inline(L_8, List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
if ((((int32_t)L_7) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_10 = __this->___viewHolders;
|
|
int32_t L_11 = V_1;
|
|
NullCheck(L_10);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_12;
|
|
L_12 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_10, L_11, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
V_2 = L_12;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_13 = __this->___viewHolders;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
List_1_RemoveAt_m65838220B412C5284F74DCF960AE44C789451C02(L_13, L_14, List_1_RemoveAt_m65838220B412C5284F74DCF960AE44C789451C02_RuntimeMethod_var);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_15 = V_2;
|
|
NullCheck(L_15);
|
|
VirtualActionInvoker0::Invoke(5, L_15);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C_inline(L_16, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_18 = V_2;
|
|
VirtualActionInvoker2< String_t*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(8, __this, L_17, L_18);
|
|
int32_t L_19 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_20 = V_0;
|
|
int32_t L_21 = ___0_index;
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_22;
|
|
L_22 = ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B_inline(__this, NULL);
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline(L_22, NULL);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)il2cpp_codegen_add(L_21, L_23)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* ViewProvider_GetViewHolder_m2E4BED45C434982D303EBD2CF2B7521736DD1C9A (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_1 = NULL;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_2 = NULL;
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
NullCheck(L_0);
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 L_1;
|
|
L_1 = List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2(L_0, List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002e:
|
|
{
|
|
Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF((&V_0), Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_inline((&V_0), Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232_inline(L_3, NULL);
|
|
int32_t L_5 = ___0_index;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_6 = V_1;
|
|
V_2 = L_6;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296((&V_0), Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
if (L_7)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*)NULL;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ViewProvider_GetViewHolderIndex_m5CA18FA6B92E9033FCD4BA49A57CD021960A56CD (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67(L_0, L_1, List_1_get_Item_mDF7EA3ECDF0A7579388157573CDF4F27ACC28C67_RuntimeMethod_var);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232_inline(L_2, NULL);
|
|
int32_t L_4 = ___0_index;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_8 = __this->___viewHolders;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_inline(L_8, List_1_get_Count_m529C5330AAB061064EA488DC7B1D816E46AEABC1_RuntimeMethod_var);
|
|
if ((((int32_t)L_7) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_Clear_m2579B4EE115A986778BF6FD15D28238E936A8870 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_1 = NULL;
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
NullCheck(L_0);
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 L_1;
|
|
L_1 = List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2(L_0, List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002e:
|
|
{
|
|
Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF((&V_0), Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_inline((&V_0), Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C_inline(L_3, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5 = V_1;
|
|
VirtualActionInvoker2< String_t*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(8, __this, L_4, L_5);
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296((&V_0), Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_7 = __this->___viewHolders;
|
|
NullCheck(L_7);
|
|
List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_inline(L_7, List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ViewProvider_CalculateViewSize_mA02D122578E22429B4E805620EB6C7416413315D (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_0, L_1);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3;
|
|
L_3 = VirtualFuncInvoker1< ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A*, String_t* >::Invoke(5, __this, L_2);
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = ViewHolder_get_SizeDelta_mF220CEFA7E8FE98B631DB054BDF8F7C0F461C0B5(L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ViewProvider_GetItemCount_mA590361C4A5D3B391D4D721B6F454E68FC4D5A06 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0, IAdapter_t5434905D1BCEC787274C0D183A93F42477F8C7F8_il2cpp_TypeInfo_var, L_1);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewProvider_Dispose_m39E942F74747D518E77BC69EA8B3698FA4C9F095 (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* V_1 = NULL;
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
NullCheck(L_0);
|
|
Enumerator_t1619DA3D8390AAB82C8BA836DE6381E81BCB94C1 L_1;
|
|
L_1 = List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2(L_0, List_1_GetEnumerator_m67C9744086A45CE1247C7E1E328452CDAC4BF9E2_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002e:
|
|
{
|
|
Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF((&V_0), Enumerator_Dispose_mB833013943FED3BE85B02CE9E07A279BE5D789CF_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_2;
|
|
L_2 = Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_inline((&V_0), Enumerator_get_Current_m2615CFE301475145763B2D4D74AC44CD255B575F_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C_inline(L_3, NULL);
|
|
ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* L_5 = V_1;
|
|
VirtualActionInvoker2< String_t*, ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* >::Invoke(8, __this, L_4, L_5);
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296((&V_0), Enumerator_MoveNext_m64684ED284A62693278ACE3F4BCA7340A4F8C296_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_7 = __this->___viewHolders;
|
|
NullCheck(L_7);
|
|
List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_inline(L_7, List_1_Clear_mE10FCAF34957237A21D118BD3A5947CE1B09B337_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
|
|
#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
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline (const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (1.0f), (1.0f), (1.0f), (1.0f), NULL);
|
|
V_0 = L_0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
float* L_0 = (float*)(&__this->___x);
|
|
int32_t L_1;
|
|
L_1 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_0, NULL);
|
|
float* L_2 = (float*)(&__this->___y);
|
|
int32_t L_3;
|
|
L_3 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_2, NULL);
|
|
V_0 = ((int32_t)(L_1^((int32_t)(L_3<<2))));
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ((Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields*)il2cpp_codegen_static_fields_for(Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var))->___identityQuaternion;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UXButton_get_Interactable_m294867322832CB537EA0D0E2D96019C154111731_inline (UXButton_tAC89BF6126388CDA4562439E5531356DD24AF107* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_Interactable;
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_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 = bankers_round(((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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* ViewProvider_get_ViewHolders_mE197EE75705A43461068FEABB9166AD598F3EA4E_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t1684FE08EF8C977EA28109EFC40CC98006035C05* L_0 = __this->___viewHolders;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_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))->___oneVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_CeilToInt_mF2BF9F4261B3431DC20E10A46CFEEED103C48963_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 = ceil(((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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
float L_0 = __this->___m_Width;
|
|
float L_1 = __this->___m_Height;
|
|
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;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ViewHolder_get_Index_mC2A74155D368E7156AAD08925218987FB8D22232_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_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_add(L_1, L_3)), ((float)il2cpp_codegen_add(L_5, L_7)), NULL);
|
|
V_0 = L_8;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RecyclerView_get_CurrentIndex_m90730FC6C570A10BD75D08C5598B3AC70E498809_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___currentIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_ScrollSpeed_mEF7E70CCBFC4F7FE77FD88C01E80C6C3ED06B107_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___scrollSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_WheelSpeed_mAF72B2201E612CD5F5491150C350748C3CC46400_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___wheelSpeed = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* RecyclerView_get_Scrollbar_m4237D9E1EED16E6B10D11FD60C85EE9A0E175FBD_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* L_0 = __this->____scrollbar;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t LayoutManager_get_Unit_m7EA865DB2B1F9000471DFA21183C01E7EC43E4EA_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___unit;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RecyclerView_get_Snap_mEB71C62078708D2095B42A3D03CDABA8B7F9834E_inline (RecyclerView_t2B1F773535D5A4F983BEEE13CAD8023E1CC1854F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___snap;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Scroller_get_Position_m35047906601575F75F6517D738126D8D400AC571_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___position;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Position_m529B2AC9BF884B2344D094719890060F52A6BEC8_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_value;
|
|
__this->___position = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewProvider_set_Adapter_m917C4297269D43BEDB1E3BD9F9F79B9E17BF9FCE_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CAdapterU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CAdapterU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewProvider_set_LayoutManager_m7087DB38D3E162F23393C467B4D9BC043F8D81A7_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = ___0_value;
|
|
__this->___U3CLayoutManagerU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLayoutManagerU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Adapter_mE4AE12C288B386CA8349EB138A01F6C4D0277CAB_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___adapter = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___adapter), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_ViewProvider_mF69F66B44710401EDC85FCBBB9F0F7743AFD52B3_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* L_0 = ___0_value;
|
|
__this->___viewProvider = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___viewProvider), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Direction_mA60034A25B64C5D0E10EEC2B34AF40DB29910571_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Alignment_m1D0A697AF1E79A48454DCACF00722D48F0262C8F_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___alignment = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Spacing_m9D179720485C394311CBE430FF793F76C6DAE767_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___spacing = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_Padding_m31AFCDFDEC2173C4FA6BE0A85271587B1C361A95_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___padding = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LayoutManager_set_CanScroll_mA710E66B10B8A748B85ADE53995C2CA31F2A0935_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___canScroll = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Snap_m57A1975BB6E7D9CD72D6B0C04CCED25B5EDDE86D_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___snap = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* Scroller_get_OnValueChanged_mB2CF0477EAAB77E8F2C49BB709E795A417B15FBB_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollerEvent_t2D2F6BD10885FC2A6D2FD497F9058F69AEA223E9* L_0 = __this->___scrollerEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* Scroller_get_OnMoveStoped_m0161BA211AC0329EC716A80DC0B155FEF808E699_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveStopEvent_t50678C8A588AD48C3759DEFDC09405BB714EFF81* L_0 = __this->___moveStopEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* Scroller_get_OnMoveing_mD46A894A1F528C42DE98347F41DEB9B574F7261D_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MoveingEvent_tB3B5014631981A2E90B1942245C9BCFB76E27267* L_0 = __this->___moveingEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6* Scrollbar_get_onValueChanged_m14356CECC1A2BA96576EB73279AF2ECF28B26D6A_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollEvent_tDDBE21D44D65DF069C54FE3ACF7668D976E6BBB6* L_0 = __this->___m_OnValueChanged;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_Direction_mA4BD1025FD29C4073D5ABAEC22D341280A0DA648_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___direction = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ViewportSize_m4AD8FC45083DBCB9BD525CC97F6B6443627D0783_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___viewportSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_ViewSize_m01453E9F561D68011FD475A2C97B9660C63A6CD6_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___viewSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 LayoutManager_get_ContentSize_m72D4C5F202BA370F1CF5B1CB0CECAEF7692DE080_inline (LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___contentSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Scroller_set_ContentSize_m4423908D5FEE9FB6B18DB003F3B3DE5EAEE132D1_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___contentSize = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ContentSize_mC348D9AA9C3DEFEAEB0661A406B56D198645F6D2_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___contentSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Inequality_mBEA93B5A0E954FEFB863DC61CB209119980EC713_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___1_rhs;
|
|
bool L_2;
|
|
L_2 = Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Scroller_get_ViewSize_m7D4D1475EB8C7C6626E25353AC6ADB2CCECAA45C_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___viewSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_delta_m7DC87C01EAE1D10282C37842ED215FDBFE2C1C5B_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CdeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* Scrollbar_get_handleRect_mEC95A981B744C4DB961D8B5DF6D2B81132CBB238_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___m_HandleRect;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Scrollbar_get_direction_m1950D7EE42DDD0E3DBEABCDD59DD7E0FEC164C4C_inline (Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_Direction;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* Scroller_get_OnDragging_m39E46CA7834E932232A462EFB95736ABFCF1B2BC_inline (Scroller_tDF83C444E22D43CAB5535B653B9A584930E73D11* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DraggingEvent_t7BD85451C31F5DC80FDC09CB0AD19780A62FD009* L_0 = __this->___draggingEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_scrollDelta_m38C419C3E84811D17D1A42973AF7B3A457B316EA_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CscrollDeltaU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ViewHolder_get_ChoiseState_mCC1DFDE039F952C346E5A528E689E43553C99710_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CChoiseStateU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_ChoiseState_mF358BE6A225C0B7246341370C24D1E6D1E80E91D_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CChoiseStateU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ViewProvider_get_Adapter_m91E10774A77745A213A738BE5EC07B4226330012_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CAdapterU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_Name_mBF29D7AEC171A40D34CD1326E81660C9AFF53E42_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CNameU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CNameU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ViewHolder_set_Index_mF010EDE38E34A23D1B74E6FAF310ED7435F31A8D_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CIndexU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* ViewProvider_get_LayoutManager_m1A501DC1D0F46799210BE9DE12AA49E29E36285B_inline (ViewProvider_tD74B94DE7C762962E2F6F41D6D0427BE096274A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutManager_t1F3468520CAA93136184D05EFEDB690968ED68AA* L_0 = __this->___U3CLayoutManagerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ViewHolder_get_Name_m468BC8C7D47413FDBF8802FA288FB6B7889DA26C_inline (ViewHolder_t1C07758E578BD88C4E5288891500B05E6F31D48A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CNameU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___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)
|
|
{
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|