36934 lines
1.9 MiB
36934 lines
1.9 MiB
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtualFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct VirtualFuncInvoker3
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
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 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);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InterfaceFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>
|
|
struct Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>
|
|
struct Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5;
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>
|
|
struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53;
|
|
// System.Action`1<UnityEngine.Font>
|
|
struct Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC;
|
|
// System.Action`1<UnityEngine.UIElements.IPanel>
|
|
struct Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6;
|
|
// System.Action`1<UnityEngine.Material>
|
|
struct Action_1_t996DFD52B4BDA6CBE8058C13167C4D2B8C612CAA;
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext>
|
|
struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B;
|
|
// System.Action`1<System.Object>
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
// System.Action`1<UnityEngine.UIElements.Panel>
|
|
struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01;
|
|
// System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09;
|
|
// System.Action`1<System.Single>
|
|
struct Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A;
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3;
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
struct Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8;
|
|
// System.Action`2<System.Int32Enum,System.Object>
|
|
struct Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F;
|
|
// System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>
|
|
struct Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88;
|
|
// UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,System.Object>
|
|
struct BaseFieldTraits_2_t284A963BB2114CA90D4BCC48CCEF0F82FFAB9CA2;
|
|
// UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>
|
|
struct BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A;
|
|
// UnityEngine.UIElements.UIR.BasicNode`1<UnityEngine.UIElements.UIR.TextureEntry>
|
|
struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB;
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
struct CommandEventBase_1_tC61C876047FB1C3B000DE161F2EA5CE6EAF19952;
|
|
// UnityEngine.UIElements.CommandEventBase`1<System.Object>
|
|
struct CommandEventBase_1_t5C854B0E85C1032ABBABBDFD0046CDB90858E518;
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
struct CommandEventBase_1_tDDFD63770D737B793DE4F5DA22FBA4462B9B229A;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.TextCore.Text.FontAsset>
|
|
struct Dictionary_2_tC20B3D6AE4370C892734F670EF4D1FB9CE91F371;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>
|
|
struct Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71;
|
|
// System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct Dictionary_2_t377C2B6CAA20982B0AC7A180E3800172E88C8BDE;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleSheets.StylePropertyValue>
|
|
struct Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement>
|
|
struct Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>
|
|
struct Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.UIElements.VisualElement/TypeData>
|
|
struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8;
|
|
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Text.Character>
|
|
struct Dictionary_2_t93CDF0F4011A5A3024EB73A492F9512E3046EACB;
|
|
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph>
|
|
struct Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7;
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD;
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E;
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>
|
|
struct EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD;
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>
|
|
struct EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB;
|
|
// UnityEngine.UIElements.EventBase`1<System.Object>
|
|
struct EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1;
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>
|
|
struct EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
struct EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30;
|
|
// UnityEngine.UIElements.EventCallback`1<System.Object>
|
|
struct EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913;
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
struct FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94;
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A;
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022;
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2;
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
struct FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8;
|
|
// System.Func`1<System.Int32Enum>
|
|
struct Func_1_tA8F91C23675D323D5C9C1F3D2FAA8008CB1EF551;
|
|
// System.Func`1<UnityEngine.SystemLanguage>
|
|
struct Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE;
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
struct Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2;
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
struct Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354;
|
|
// System.Func`2<System.Object,System.Object>
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
|
|
// System.Func`2<System.String,UnityEngine.Object>
|
|
struct Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24;
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
struct Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59;
|
|
// System.Func`2<UnityEngine.Vector2,UnityEngine.Vector2>
|
|
struct Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA;
|
|
// System.Collections.Generic.HashSet`1<System.Int32>
|
|
struct HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2;
|
|
// System.Collections.Generic.HashSet`1<System.UInt32>
|
|
struct HashSet_1_t5DD20B42149A11AEBF12A75505306E6EFC34943A;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct IEnumerable_1_t4A530B6122A42A4EB890555FF299CCA20FD44A8F;
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32>
|
|
struct IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2;
|
|
// System.Collections.Generic.IEnumerable`1<System.Object>
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A;
|
|
// System.Collections.Generic.IEnumerable`1<System.String>
|
|
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelector>
|
|
struct IEnumerable_1_t57169610600DACD33A68F924240E9E9B6E637F74;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.VisualElement>
|
|
struct IEnumerable_1_tCEF1F6C69EA77DC2CEFABB0AC09506F177DC9164;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StylePropertyName>
|
|
struct IEnumerator_1_tAEC448C256930953D53F9EB6A4935D1573AB87BD;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.String>
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.SystemLanguage>
|
|
struct IEqualityComparer_1_t3396B2F360A7C419DEFE63C2BFA4C631CD4D477C;
|
|
// System.Collections.Generic.IList`1<System.Int32>
|
|
struct IList_1_tFB8BE2ED9A601C1259EAB8D73D1B3E96EA321FA1;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct KeyCollection_tF7FF5198CA7D5A910663B1577CD0FFDA83EA7A71;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.SystemLanguage,System.String>
|
|
struct KeyCollection_tAC22D59A2245E394492320CFE3E3CC7630399F99;
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA;
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyUpEvent>
|
|
struct KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD;
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
struct KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C;
|
|
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.PropertyName,System.Object>>
|
|
struct List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.Character>
|
|
struct List_1_tFED0F30EE65D995591571D3CD2C10F22439CB317;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.DropdownMenuItem>
|
|
struct List_1_t98556D08ADC95F025E529036B8FB0403DC53D789;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>
|
|
struct List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Glyph>
|
|
struct List_1_t95DB74B8EE315F8F92B7B96D93C901C8C3F6FE2C;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>
|
|
struct List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA;
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121;
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.RadioButton>
|
|
struct List_1_t83677DD3658C07F0F0DD73BD808F8F9EE45CDDE4;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.RenderChainTextEntry>
|
|
struct List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.SpriteAsset>
|
|
struct List_1_t3EE59C28A34FCD5060EF6B6BAFA85F2C9D01D320;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>
|
|
struct List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F;
|
|
// System.Collections.Generic.List`1<UnityEngine.Texture2D>
|
|
struct List_1_t0F231C3F13EBA1FF9081BD61489D01AA3CBE59D4;
|
|
// System.Collections.Generic.List`1<System.UInt32>
|
|
struct List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.TextSettings/FontReferenceMap>
|
|
struct List_1_tA1547550E5FBA50050B20DA74245C38434654EE8;
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
struct MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68;
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC;
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<System.Object>
|
|
struct MouseCaptureEventBase_1_t2269B9348BF179ADBDBBCE25ADF5E431A05DD5A8;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextClickEvent>
|
|
struct MouseEventBase_1_t5ED96675A2B42789E87132B5B4AE0102E645AA9B;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
struct MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
struct MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
struct MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
struct MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
struct MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>
|
|
struct MouseEventBase_1_t8CFFFFBC092D11B6F52D25C2E177074C0CC59945;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>
|
|
struct MouseEventBase_1_t953A98054E7AFA8FD043BFDA1CFBB6160E06EBC2;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83;
|
|
// UnityEngine.UIElements.MouseEventBase`1<System.Object>
|
|
struct MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>
|
|
struct MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8;
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
struct NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022;
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
struct NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31;
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
struct NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87;
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
struct NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939;
|
|
// UnityEngine.UIElements.NavigationEventBase`1<System.Object>
|
|
struct NavigationEventBase_1_tBB5FE8812B706A8379B36A5C435210DBE90644EB;
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct ObjectPool_1_t7FDDBA964772905A89719355C6E4F07922AA0C78;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.BlurEvent>
|
|
struct ObjectPool_1_t2BAC247346D1A30E6F98C5C633CA4A8A94FC170A;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ClickEvent>
|
|
struct ObjectPool_1_t45D3269B91BE59332E45568581C266DBBE543DB9;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ContextClickEvent>
|
|
struct ObjectPool_1_tA8C5B26B8CCBE92B90CDF4FBB00333936EACE68F;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
struct ObjectPool_1_t465044209F0B459C5B7B829BA8D8AEBDFDFF2889;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct ObjectPool_1_t5FC06EAFF1CF75D5A94102AEB85EBD17B92324E7;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct ObjectPool_1_t30C8F70D98C7F0227113800C031CF8E316BD7608;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
struct ObjectPool_1_t58FACB77D1CC237FB39BCD540235D55E5E9ED75F;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusEvent>
|
|
struct ObjectPool_1_t10DF1D7B915FABBA839F55B1C8F8A53EF636E395;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct ObjectPool_1_t6EA833FFCBB94CBB4B4ECF190C617D0010F43887;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct ObjectPool_1_t11916664A294D85084603B0F15FA2E810B2BC5FF;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct ObjectPool_1_tC6626AC387E62EDBD0EA56924280D44E6476EC67;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.IMGUIEvent>
|
|
struct ObjectPool_1_t36D394C38E988B494FF27A209F41C47573069AFA;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.InputEvent>
|
|
struct ObjectPool_1_tB199E7A154EA10017A4933C9D8D6832F4B01EF74;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct ObjectPool_1_t37080504ECCFF986BCF1E7D4C1D26BB929DEC7E9;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.KeyUpEvent>
|
|
struct ObjectPool_1_t1E06F490DDD84FA5A692D737BD9F030BF209D3E2;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
struct ObjectPool_1_tCCD0EE03B0457A6BE1AE2143C496E26597C0ACE1;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct ObjectPool_1_tE16398520DF85760BDD6FCD30EE299D26093F06E;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct ObjectPool_1_tFD015A99DC45F4AADDAFE8F44225A6FF6289EB10;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
struct ObjectPool_1_tD674D30EE867965489A6D1B0948964DA0E9C04A1;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
struct ObjectPool_1_tB85DB0D054AA6927A16B00E00530B77F48198E8F;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
struct ObjectPool_1_t09D2D8D6D357BDCA79FE810BA48C94438CA7FD3A;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
struct ObjectPool_1_tD29E2BEBACB54993D8FEA9165FCF17908E97141C;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct ObjectPool_1_tD78AE6F54B951DDB2D0439009049A8F2422D78BA;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseOutEvent>
|
|
struct ObjectPool_1_t858411DF975A800265E95EE948F4B0673ABFA5DA;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseOverEvent>
|
|
struct ObjectPool_1_t9D7EFBA539CD5460038297EF48FE5E46DA269BF4;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct ObjectPool_1_tE5621495D8A201AC7F4D06B7AEE892CCBC8B5BFC;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
struct ObjectPool_1_t4CCB307C788F662AC27F4884CC938F63B3E4836C;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
struct ObjectPool_1_t197544EA692A3B4CA53A6C415A61333162073672;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
struct ObjectPool_1_t2E11CDAC72859A812629F64CB88669487FD5F0B5;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
struct ObjectPool_1_t698CF6F533F80BD21C029130598B886F6FEB42E4;
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Object>
|
|
struct ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct ObjectPool_1_tDF51BF8B537DAD012AFE10CFC541363835B64992;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
struct ObjectPool_1_t02BAEDA04C0651D5684B8E2455CF77AC4D6B94C4;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct ObjectPool_1_tBB87D46D9504DA0AB7392802F8F6A309B72F4D7B;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct ObjectPool_1_tD9D36AAF97C27AAA8F8C10396B70EE8016C3DB39;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
struct ObjectPool_1_tD15E0338DA7D4DAC91A4EA42A0786A46DE4BFF3B;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
struct ObjectPool_1_t2F3ED061D994C01E8404150CA83077D75D4A3B04;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct ObjectPool_1_t8AFFCB7DAAEE40E4043E3A85360B759A778B3F5B;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerOutEvent>
|
|
struct ObjectPool_1_tB166EADDC12878AF1A699B8D8D54B676A9F0D3F3;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerOverEvent>
|
|
struct ObjectPool_1_tDAF8B367F71485D449E3DB4F566AB7C145D30B85;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
struct ObjectPool_1_t378830198BB4C87EA1C9049351B640D8484ED9D4;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct ObjectPool_1_tEA9E5136DCE87BF5FDC7E117132869969F52A700;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
struct ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.TooltipEvent>
|
|
struct ObjectPool_1_t8E105ADAB08C8A295C9659F4B4AC2EF1C98112CA;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
struct ObjectPool_1_t832B418F0EE633B08A82DA8C95EA659D7217D0E1;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
struct ObjectPool_1_t511FA97760840C42094CECA7AA3E0B58EB51A231;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
struct ObjectPool_1_t539DE50F180F8B36A9A6DAFF61E3AE3612386F80;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
struct ObjectPool_1_tF8034E1C380845CDC664082F044A15EFFA310FD5;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
struct ObjectPool_1_tC020A5F878E420221282228F0D54930B0296FE7C;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.WheelEvent>
|
|
struct ObjectPool_1_t625CC081156CCA83AF28F9AC872DA35BC4C19D8B;
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3;
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39;
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>
|
|
struct PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2;
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>
|
|
struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC;
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
struct PointerCaptureEventBase_1_t126554CD81D838778F0E7A459970847AD90E364D;
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>
|
|
struct PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124;
|
|
// UnityEngine.UIElements.PointerEventBase`1<System.Object>
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
struct PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
struct PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>
|
|
struct PointerEventBase_1_t33EFDCA6FF8E804893DB7207C86CCB0F444D18CB;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>
|
|
struct PointerEventBase_1_t793D0418D3A027331899231F3AF583DE8B4791CC;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
struct PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496;
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
|
|
struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.InheritedData>
|
|
struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.LayoutData>
|
|
struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.RareData>
|
|
struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.TransformData>
|
|
struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.TransitionData>
|
|
struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.VisualData>
|
|
struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
struct Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F;
|
|
// System.Collections.Generic.Stack`1<System.Object>
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.PropagationPaths>
|
|
struct Stack_1_t853F0A5AE8C58989DE55C33158952AB6D8D18DE7;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
|
|
struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C;
|
|
// UnityEngine.UIElements.TransitionEventBase`1<System.Object>
|
|
struct TransitionEventBase_1_t933635D8B03AA439D2C5DEDAB40FFEDEDD47C0DD;
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
struct TransitionEventBase_1_t0AAD21652882D2FCF19FCF0C4347DC161E413130;
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
struct TransitionEventBase_1_tE4425184474B0AA7732182D0294F0960A51DEAC4;
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
struct TransitionEventBase_1_t297898456ECA9E8B0FE5C4821C0FD1C2CEFA86AC;
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
struct TransitionEventBase_1_t1FB26EAAAF9B2F0657560F33B4BB75695CAF7579;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
struct TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32Enum>
|
|
struct TypedUxmlAttributeDescription_1_t9D2289098FC52844881F6536BCAA110E7F1D5B9C;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
struct TypedUxmlAttributeDescription_1_t13464B85D57627D4381BEA28451BC34601B415D5;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<System.Int32Enum>
|
|
struct UxmlEnumAttributeDescription_1_t3735F5ADC360FC4636F222E8B1F27F9E70DAEF4F;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.PickingMode>
|
|
struct UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
struct UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.UsageHints>
|
|
struct UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4;
|
|
// UnityEngine.UIElements.UxmlFactory`2<System.Object,System.Object>
|
|
struct UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.RadioButtonGroup,UnityEngine.UIElements.RadioButtonGroup/UxmlTraits>
|
|
struct UxmlFactory_2_t47455F8804FE5FBBAAFFE466FA749DBCBBE6DFEE;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TwoPaneSplitView,UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits>
|
|
struct UxmlFactory_2_tEEF1268EAE5CA173703C394D675084E6A1ECB983;
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct ValueCollection_t023DC1C66123EE3E4EE4B59B1D1154B572FFC20D;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.SystemLanguage,System.String>
|
|
struct ValueCollection_t82E97763418566F3CCFF90E4AAC50DBCC50C7E8C;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>[]
|
|
struct EntryU5BU5D_t05C1C77038E962562627C6A37AC846338771129E;
|
|
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.SystemLanguage,System.String>[]
|
|
struct EntryU5BU5D_tAB525F8ECB19BC8DCA114AB3D35AF5A59E65238B;
|
|
// System.Boolean[]
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
// UnityEngine.UIElements.ComputedTransitionProperty[]
|
|
struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase[]
|
|
struct EventCallbackFunctorBaseU5BU5D_tDD22888A8C0E1D7F5FF2E417BE833FE4122228C7;
|
|
// UnityEngine.UIElements.EventCallbackList[]
|
|
struct EventCallbackListU5BU5D_t3970F59A704458C0AFD5D9084426FCE6769C8769;
|
|
// UnityEngine.TextCore.Text.FontAsset[]
|
|
struct FontAssetU5BU5D_t5A6A4DD2BD3259A2F45F7F4D7860BAEA3666EA93;
|
|
// UnityEngine.TextCore.Text.FontWeightPair[]
|
|
struct FontWeightPairU5BU5D_t76E8DB55C81EEBEFA2E6D1D3E3B3EA1FB4C4954F;
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy[]
|
|
struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97;
|
|
// UnityEngine.UIElements.IEventHandler[]
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D;
|
|
// UnityEngine.UIElements.IMouseEvent[]
|
|
struct IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8;
|
|
// UnityEngine.UIElements.IPanel[]
|
|
struct IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933;
|
|
// UnityEngine.UIElements.IPointerEvent[]
|
|
struct IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// UnityEngine.TextCore.Text.LineInfo[]
|
|
struct LineInfoU5BU5D_t37598F2175B291797270D1161DC29B6296FB169D;
|
|
// UnityEngine.TextCore.Text.LinkInfo[]
|
|
struct LinkInfoU5BU5D_tB7EB23E47AF29CCBEC884F9D0DB95BC97F62AE51;
|
|
// UnityEngine.TextCore.Text.MeshInfo[]
|
|
struct MeshInfoU5BU5D_t3DF8B75BF4A213334EED197AD25E432212894AC6;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// UnityEngine.TextCore.Text.PageInfo[]
|
|
struct PageInfoU5BU5D_tFEA2CF88695491CFC2F2A2EF6BDCC56E52B0A6D4;
|
|
// UnityEngine.UIElements.ReusableCollectionItem[]
|
|
struct ReusableCollectionItemU5BU5D_t7B98FF5B03A63736FAB4B967CBD8C0AC0822F2F9;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// UnityEngine.UIElements.StyleProperty[]
|
|
struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783;
|
|
// UnityEngine.UIElements.StylePropertyName[]
|
|
struct StylePropertyNameU5BU5D_t531626CF806E3F3D348D1F38A9109767014C35F8;
|
|
// UnityEngine.UIElements.StyleSelector[]
|
|
struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D;
|
|
// UnityEngine.UIElements.StyleSelectorPart[]
|
|
struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
|
|
// UnityEngine.TextCore.Text.TextElementInfo[]
|
|
struct TextElementInfoU5BU5D_tEC28C9B72883EE21AA798913497C69E179A15C4E;
|
|
// UnityEngine.Texture2D[]
|
|
struct Texture2DU5BU5D_t05332F1E3F7D4493E304C702201F9BE4F9236191;
|
|
// System.UInt32[]
|
|
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
|
|
// UnityEngine.Vector2[]
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
// UnityEngine.UIElements.VisualElement[]
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF;
|
|
// UnityEngine.TextCore.Text.WordInfo[]
|
|
struct WordInfoU5BU5D_tAD74C9720883D7BB229A20FFAE9EFD2CF9963F7B;
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation[]
|
|
struct PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4;
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
// UnityEngine.UIElements.AtlasBase
|
|
struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC;
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28;
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
struct BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303;
|
|
// UnityEngine.UIElements.BindableElement
|
|
struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C;
|
|
// UnityEngine.UIElements.BlurEvent
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302;
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4;
|
|
// UnityEngine.UIElements.ClickDetector
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31;
|
|
// UnityEngine.UIElements.ClickEvent
|
|
struct ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318;
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
struct CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
struct CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801;
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520;
|
|
// UnityEngine.UIElements.ContextClickEvent
|
|
struct ContextClickEvent_t06F36D1ACA5C8390D5085158C7D7C1BCF9549EA3;
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B;
|
|
// UnityEngine.UIElements.ContextualMenuPopulateEvent
|
|
struct ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB;
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
struct CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6;
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A;
|
|
// UnityEngine.UIElements.DefaultDragAndDropClient
|
|
struct DefaultDragAndDropClient_t22E34F0CC0902F8BB146736C13745F686C8E8BE3;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496;
|
|
// UnityEngine.UIElements.DragEventsProcessor
|
|
struct DragEventsProcessor_tC4594177C458D0DE91C0A4D1017CEF93DA69C9B6;
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
struct DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2;
|
|
// UnityEngine.UIElements.DropdownMenuEventInfo
|
|
struct DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF;
|
|
// UnityEngine.UIElements.DynamicAtlasSettings
|
|
struct DynamicAtlasSettings_t183239B7B0968331CEA91684F0942D3189C50DC5;
|
|
// UnityEngine.UIElements.ElementUnderPointer
|
|
struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904;
|
|
// UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB;
|
|
// UnityEngine.UIElements.EventBase
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C;
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase
|
|
struct EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568;
|
|
// UnityEngine.UIElements.EventCallbackList
|
|
struct EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E;
|
|
// UnityEngine.UIElements.EventCallbackListPool
|
|
struct EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2;
|
|
// UnityEngine.UIElements.EventCallbackRegistry
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85;
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398;
|
|
// UnityEngine.UIElements.ExecuteCommandEvent
|
|
struct ExecuteCommandEvent_t41D5C771261998F58E01612B66E1EF60C100F6D4;
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF;
|
|
// UnityEngine.UIElements.FocusController
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A;
|
|
// UnityEngine.UIElements.FocusEvent
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F;
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
struct FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE;
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
struct FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C;
|
|
// UnityEngine.UIElements.Focusable
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0;
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6;
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958;
|
|
// UnityEngine.TextCore.Text.FontFeatureTable
|
|
struct FontFeatureTable_t992E0493CD7E9D7834DF204E0198237F0D25B3B7;
|
|
// UnityEngine.GameObject
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
struct GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A;
|
|
// UnityEngine.UIElements.GetViewDataDictionary
|
|
struct GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638;
|
|
// UnityEngine.UIElements.HierarchyEvent
|
|
struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705;
|
|
// UnityEngine.UIElements.IBinding
|
|
struct IBinding_t02FD99E9C9F2072B28E110F16C157666F5B2DBC7;
|
|
// UnityEngine.UIElements.ICollectionDragAndDropController
|
|
struct ICollectionDragAndDropController_t30018C4F1C5ADA75B5E68B48A7BACE33E851168C;
|
|
// UnityEngine.UIElements.ICursorManager
|
|
struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B;
|
|
// UnityEngine.UIElements.ICustomStyle
|
|
struct ICustomStyle_t4385916BE4168875B5CC8B442752D4A1A6A69026;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.Collections.IEnumerator
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
// UnityEngine.UIElements.IEventHandler
|
|
struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3;
|
|
// UnityEngine.UIElements.IFocusRing
|
|
struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78;
|
|
// System.Collections.IList
|
|
struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D;
|
|
// UnityEngine.UIElements.IMGUIContainer
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26;
|
|
// UnityEngine.UIElements.IMGUIEvent
|
|
struct IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5;
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0;
|
|
// UnityEngine.UIElements.IManipulator
|
|
struct IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708;
|
|
// UnityEngine.UIElements.IMouseEvent
|
|
struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E;
|
|
// UnityEngine.UIElements.IPanel
|
|
struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5;
|
|
// UnityEngine.UIElements.IPointerEvent
|
|
struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7;
|
|
// UnityEngine.UIElements.IResolvedStyle
|
|
struct IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89;
|
|
// UnityEngine.UIElements.IStyle
|
|
struct IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7;
|
|
// UnityEngine.UIElements.IStylePropertyAnimationSystem
|
|
struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2;
|
|
// UnityEngine.UIElements.ITextHandle
|
|
struct ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4;
|
|
// UnityEngine.UIElements.IUxmlAttributes
|
|
struct IUxmlAttributes_t9B6679F04874117C59014DE49C35B1841F9A1DDE;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem
|
|
struct IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F;
|
|
// UnityEngine.UIElements.IVisualElementScheduler
|
|
struct IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8;
|
|
// UnityEngine.UIElements.InlineStyleAccess
|
|
struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165;
|
|
// UnityEngine.UIElements.InputEvent
|
|
struct InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF;
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C;
|
|
// UnityEngine.UIElements.KeyUpEvent
|
|
struct KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394;
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3;
|
|
// UnityEngine.UIElements.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70;
|
|
// UnityEngine.UIElements.ListViewDragger
|
|
struct ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD;
|
|
// UnityEngine.UIElements.LoadResourceFunction
|
|
struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850;
|
|
// UnityEngine.Material
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
// UnityEngine.UIElements.UIR.MeshHandle
|
|
struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439;
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014;
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5;
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD;
|
|
// UnityEngine.UIElements.MouseEnterEvent
|
|
struct MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E;
|
|
// UnityEngine.UIElements.MouseEnterWindowEvent
|
|
struct MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6;
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460;
|
|
// UnityEngine.UIElements.MouseLeaveEvent
|
|
struct MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9;
|
|
// UnityEngine.UIElements.MouseLeaveWindowEvent
|
|
struct MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7;
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5;
|
|
// UnityEngine.UIElements.MouseOutEvent
|
|
struct MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD;
|
|
// UnityEngine.UIElements.MouseOverEvent
|
|
struct MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2;
|
|
// UnityEngine.UIElements.MouseUpEvent
|
|
struct MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811;
|
|
// UnityEngine.UIElements.NavigationCancelEvent
|
|
struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E;
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
struct NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE;
|
|
// UnityEngine.UIElements.NavigationMoveEvent
|
|
struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF;
|
|
// UnityEngine.UIElements.NavigationSubmitEvent
|
|
struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1;
|
|
// UnityEngine.UIElements.NavigationTabEvent
|
|
struct NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7;
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
// UnityEngine.ObjectGUIState
|
|
struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15;
|
|
// UnityEngine.UIElements.PanelSettings
|
|
struct PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC;
|
|
// UnityEngine.UIElements.PanelTextSettings
|
|
struct PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25;
|
|
// UnityEngine.UIElements.PointerCancelEvent
|
|
struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51;
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE;
|
|
// UnityEngine.UIElements.PointerCaptureEvent
|
|
struct PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB;
|
|
// UnityEngine.UIElements.PointerCaptureOutEvent
|
|
struct PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5;
|
|
// UnityEngine.UIElements.PointerDispatchState
|
|
struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A;
|
|
// UnityEngine.UIElements.PointerDownEvent
|
|
struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51;
|
|
// UnityEngine.UIElements.PointerEnterEvent
|
|
struct PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB;
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F;
|
|
// UnityEngine.UIElements.PointerLeaveEvent
|
|
struct PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84;
|
|
// UnityEngine.UIElements.PointerMoveEvent
|
|
struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3;
|
|
// UnityEngine.UIElements.PointerOutEvent
|
|
struct PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5;
|
|
// UnityEngine.UIElements.PointerOverEvent
|
|
struct PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9;
|
|
// UnityEngine.UIElements.PointerStationaryEvent
|
|
struct PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A;
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9;
|
|
// UnityEngine.UIElements.PropagationPaths
|
|
struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5;
|
|
// UnityEngine.UIElements.RadioButtonGroup
|
|
struct RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE;
|
|
// System.Text.RegularExpressions.Regex
|
|
struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand
|
|
struct RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727;
|
|
// UnityEngine.RenderTexture
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27;
|
|
// UnityEngine.UIElements.RepaintData
|
|
struct RepaintData_t90534752135661579EC254884F550545D001B5EA;
|
|
// UnityEngine.UIElements.RepeatButton
|
|
struct RepeatButton_t2CF59798FF30EF6DB8030E2D93CD346E38DDF981;
|
|
// UnityEngine.UIElements.ReusableCollectionItem
|
|
struct ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086;
|
|
// UnityEngine.UIElements.RuntimePanel
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// UnityEngine.UIElements.SavePersistentViewData
|
|
struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716;
|
|
// UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
|
|
// UnityEngine.UIElements.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9;
|
|
// UnityEngine.UIElements.Scroller
|
|
struct Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8;
|
|
// UnityEngine.Shader
|
|
struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692;
|
|
// UnityEngine.UIElements.Slider
|
|
struct Slider_t5891706383A14955E3FAD68A79829F3234681652;
|
|
// UnityEngine.TextCore.Text.SpriteAsset
|
|
struct SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313;
|
|
// System.String
|
|
struct String_t;
|
|
// UnityEngine.UIElements.StyleComplexSelector
|
|
struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD;
|
|
// UnityEngine.UIElements.StyleRule
|
|
struct StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E;
|
|
// UnityEngine.UIElements.StyleSelector
|
|
struct StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362;
|
|
// UnityEngine.UIElements.StyleSheet
|
|
struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428;
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527;
|
|
// UnityEngine.TextCore.Text.TextAsset
|
|
struct TextAsset_tB28F1843A877CCA74B89DC4F63EA532618B049B8;
|
|
// UnityEngine.TextCore.Text.TextColorGradient
|
|
struct TextColorGradient_t22D94E441E8E8CD772B966C167E5C0AEB0919D70;
|
|
// UnityEngine.TextCore.Text.TextElement
|
|
struct TextElement_tCEF567A8810788262275B39DC39CBA6EBE7472DA;
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings
|
|
struct TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2;
|
|
// UnityEngine.TextCore.Text.TextInfo
|
|
struct TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09;
|
|
// UnityEngine.TextCore.Text.TextSettings
|
|
struct TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64;
|
|
// UnityEngine.TextCore.Text.TextStyleSheet
|
|
struct TextStyleSheet_t86A0FA5523897465F371A2ABC17DFA3558C8D15E;
|
|
// UnityEngine.Texture2D
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
// UnityEngine.UIElements.ThemeStyleSheet
|
|
struct ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553;
|
|
// UnityEngine.UIElements.TimeMsFunction
|
|
struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B;
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862;
|
|
// UnityEngine.UIElements.TooltipEvent
|
|
struct TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187;
|
|
// UnityEngine.UIElements.TransitionCancelEvent
|
|
struct TransitionCancelEvent_t74AA81A33FC7DA4C0E6E22C5D16B7BC51C94CF69;
|
|
// UnityEngine.UIElements.TransitionEndEvent
|
|
struct TransitionEndEvent_t0795C167FC14C0B97AFB54CCC2E34639ED85CCDD;
|
|
// UnityEngine.UIElements.TransitionRunEvent
|
|
struct TransitionRunEvent_t66B0D9314D2E48D69E5848848B085655F02BF1AF;
|
|
// UnityEngine.UIElements.TransitionStartEvent
|
|
struct TransitionStartEvent_t1DCCFED2B1D4744B1884EEF23EF75A03B8D2E5DF;
|
|
// UnityEngine.UIElements.TwoPaneSplitView
|
|
struct TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67;
|
|
// UnityEngine.UIElements.TwoPaneSplitViewResizer
|
|
struct TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5;
|
|
// UnityEngine.UIElements.UIDocumentList
|
|
struct UIDocumentList_tA2A8305DE916298E4C586EC8235085560914E7C3;
|
|
// UnityEngine.TextCore.Text.UnicodeLineBreakingRules
|
|
struct UnicodeLineBreakingRules_t80BE36F5E16AE48FE7B6DE1C91D36B1142B4EC0E;
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
struct UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2;
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
struct UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
struct UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF;
|
|
// UnityEngine.UIElements.UxmlTypeRestriction
|
|
struct UxmlTypeRestriction_t2C4CE1ED76502CDF80010880E058AF0582910A92;
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
struct ValidateCommandEvent_t0FFED9E9EA11DA2AAB7ACF37C9D0CDB1FD847FDA;
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115;
|
|
// UnityEngine.UIElements.VisualTreeAsset
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB;
|
|
// UnityEngine.UIElements.VisualTreeUpdater
|
|
struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9;
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
// UnityEngine.UIElements.WheelEvent
|
|
struct WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E;
|
|
// UnityEngine.Yoga.YogaConfig
|
|
struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345;
|
|
// UnityEngine.Yoga.YogaNode
|
|
struct YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA;
|
|
// UnityEngine.Font/FontTextureRebuildCallback
|
|
struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1;
|
|
// UnityEngine.GUILayoutUtility/LayoutCache
|
|
struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60;
|
|
// UnityEngine.UIElements.PanelSettings/RuntimePanelAccess
|
|
struct RuntimePanelAccess_t88FC30C79AE159279E2BB55A190D2E69259B7482;
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlFactory
|
|
struct UxmlFactory_t73B2991499239881C5C824B63741E30FC900377F;
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlTraits
|
|
struct UxmlTraits_t2B80C3B5E7B8E0FBF2384F6224536E39AF415DB3;
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlFactory
|
|
struct UxmlFactory_t045B315994A585EA6A21E9B7C1662889F1A5CDB8;
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits
|
|
struct UxmlTraits_tD94069F1DEA132ACB4C340B51942037468E26A9D;
|
|
// UnityEngine.UIElements.VisualElement/CustomStyleAccess
|
|
struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1;
|
|
// UnityEngine.UIElements.VisualElement/TypeData
|
|
struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A;
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t1218DA3104C9EAD7C32A1D5B975FD26D77F76928_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3003145BEE9FE8F5AE8C9E13FC4C7D6453201D80_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FontAsset_t61A6446D934E582651044E33D250EA8D306AB958_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICommandEvent_t59A6B5E93C0DC08F217BE914D3C5A460096EAA0F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICustomStyle_t4385916BE4168875B5CC8B442752D4A1A6A69026_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IInternalListViewBinding_t0BC88F906ADE3181091F011DA0AD868C3EF89D1D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IKeyboardEvent_t7BA114B6B3F77E8383EA005E0AF8C94815516947_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* INavigationEvent_t4864FB506AF154EE9A56715FF6521E6582EDD129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextGeneratorUtilities_tAD0F329B1A5C7CC27CF63086C11FE092B43FED53_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA_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* VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral04CD7AF9A036E0043DA993F7272EF14CA84A2A80;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0770C8A4CE7977C0CF704EEA0FE098E008D76600;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral091B5F957F874B58A87D935DC88AD891FBF95D2B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0C7F57443E21815E0C0D281629845C1805E8DDBD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral136A31D128A0E235237DEFB9B9E20371C841E254;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral15A223FD401F3CCCB22ED9FFAD0869EB521EC568;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1F73081387A76D3714657FCEF270D341EEA9BA6D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral22BE618ADF9DAFBF84F27DD4CA2D8D34F67B1103;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral276B1523C79013387CC8601AAF5DC4C728DEF934;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral281E4838B647B106CEAA1223C7794A3F392336C8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B5DC9B62D761FE402C4CC89CA920F871B7941FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral356EE8C45878EF171BDB96B2ACC1C967BF056C9A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral36FD478DDC94C05200062D752D6D9D1031578883;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3F8C0254FACC1239A4D11D071CA10DC23CE95363;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral449C8A34D68C78E02A683038E1EB263B6C784F5F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral466F88DACA4907F6B17D2F2DA645967462DB7166;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral50C316C7057DB0F1E0EE7D115B5BB30FBFDB297D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral54ADB9482FE5054F63B11E03134FA799012EA962;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5E196F621D73DB41274AA4B71FB107E58AE2665F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5EAE817BD607589A65A955CE49998FA0F2192B46;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral68044815AF18A23457D0D723903A851D41533C5A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral734D834219E25F6AC949E3C4A33AA80BB578DC1A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral744A0300EE7C0B6AA25DD9A668BD72E72B038C8B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7EEE7A209509DD074A6DCF92F933A54B19F4AA76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral856C4A4F4F146CBF3551317F2B39798566DADDEF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8F9D3584F7D0B6CC245A5748CB912CCB9B2F169D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral940A6B653D7D0E259EE14C9F44C62DD3992D6A2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9611837DC9F59CE850732A48008AE16B5242C6BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral976786DDC8FB293730C144771624182C6C896F20;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral97FCF4C5E9B3B166B1D9C1242C020B41F797EFED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9A9F79F0235C4E620FEDB9E09420146084B1D60F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9EC74C84E81C86699198C668FD02886EC7ED89EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA72C000B1D894580D2D6DBD1EE18EBBDF2AF6E4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB3DE6D007DE8D68C2DB80856E4240EECF2AB7DA6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB71620C733E44991BE845B6E0C4D9177EE70446D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB7951E2FB9C044754287C7C6DF6397451ACC5AC8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB62B97E393533314D3C809D57CB62D3059C0EF3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCB7D3AC16B76BA409DDD86D8333087AA56BED0F5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCC2E1BA4F9F2F93ECDA07A8BE9F28DE602D58F75;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCF71917878FB4C2D84A1A27F2A69BCCC69BF691D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD2AD49AA57E8A76DE35DAF65939DD4C845BCF018;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD31E93C25781F618E0FCBEEC839C108E350E227E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD542F2D72436073414E6B1D92AB2475BA3DD4136;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9F6B690E16E25915983F3E6C7BE53DDCC99D060;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDF91AEE1E52ADFB5A9BAB4F407686F2F13C022DC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE3462A03B08A009FA9FA7FB7EFF46E75F55260CF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEBD7F17B3D530A6E800EB887A20126AE05FB2233;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralECEDF23804E8E7DD6854A62B05F29DB328995568;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF077DFE0EA0D87CC2B19BBE1BC0979E4DF9EF8BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF1EF7C872CC643B32A30371B136F5234F6C7B3F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF3FEA1B7EED06B84D345A14D3BB9E817F4B9EAFE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF9D225733E1D10F9344C755C4A9C0870CD1DE97B;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Assert_IsNotNull_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m23D40EA79151C942667AB85F5F1D441CF9D4896C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseFieldTraits_2_Init_m765BE03BDB7A4A470F510B71C4E8B929FEC37868_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseFieldTraits_2__ctor_m24D431C996A2879E3178FDF616EE6CD4004F588F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_Apply_m5CB486171885004B1AFCE5A64A6F7EA85359C3AA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_CreateVirtualizationController_TisReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086_m80BE730714B5941882EFFAE4A1D8F7A05FB32DFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnAttachToPanel_m57F8653A41F712277C502C83435F5B193041D055_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnCustomStyleResolved_m6BD78676C47925976E39B5AF0A7EEB5A8DE2D035_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnDetachFromPanel_m97D27B2D07F3F1D7D3E27AE23B69C16F4B5F6A26_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnItemIndexChanged_mD4FE2A6624A75359E00ED8BE8DD1817A8C3B5AD0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnItemsSourceChanged_mD1E9C9856DF2E37DF2A3936B92896C0EF3732A59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_OnSizeChanged_m940C5F46FB9141AEA55B894893D80FC37560A88A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_U3C_ctorU3Eb__143_0_mAE52CEDE3272076A64F7F7C8C0343BF645511DBE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* BaseVerticalCollectionView_set_fixedItemHeight_m14CA50DAC1007FB42483201BCBB2FAEBBDC7F5F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_mE83DFDC25FA4E7E3A266F03E681EA0012BF8F2B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CommandEventBase_1__ctor_m0EE3ADD730778B7B390BAB028BFE8F01481C2ADD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CommandEventBase_1__ctor_mD1BEBAC533ED3D60C4D7A4587F3BAF7627E3F2E6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mDF841125BC4100E914A28DF14F2A99A5777E2491_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mF10E35CFD3C75490710E375C2C75DB11438963D5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisStyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362_TisString_t_m79C46127F42BF97331248F9BBB8216CBAE3B0FE5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToArray_TisString_t_m3B23EE2DD15B2996E7D2ECA6E74696DA892AA194_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD39715123AE48C0393854BA496289E3975AD303F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m1A01D8B3467862836985A752F41A76010F6F06D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m513A5D9AE3EC627C07100D4CE41F7A80485BF5EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_m5C349B73E157553B73F21F11591CEB7266273A95_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_mA4352A75E18231B53FD89198374B6EC173D93D78_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_GetPooled_mB5A6FDED5153774180E113D48361FE9036A93B0C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_Init_m56B39863E46D8744FA9932115F6B12AA94C46661_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_Init_m624713075B5108D1488D68D488679EF6665E6671_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_Init_m8131683CEF471879438D67B7856F2A89C63C7929_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m0D0D492BF3E4484B89111ADF52C02D0B5643D2E6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m1A2720F11AB0D624809678ADE4E6D8C250E43741_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mB1256CEDFAF9A31F2C3B18538E6162E8B74DB0D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mECB64534E7784E4F149108516B906000134DA10E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m146C3FE791CB9769618F8574DE4ADA56F3A3AAA3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m6CD1821AACDF831718F32FEF562AD964019E8499_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_mB1E5663AF6567CB703A4F1484568B8F32A0CD723_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_Init_m2B80A3CB379E144D03568D06FA2216895A7A9804_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_Init_mA72DC669D8659FF07D190ED39EC8AF109B22B2DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1__ctor_m1263E69D612CA01C2996B918DF64532FD9FEB498_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1__ctor_m4D74FEAC69FD099A561F3E18A97276C34711144D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1__ctor_m94B8E2FFFA6261D448EFF0A546E833D70F708386_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1__ctor_mAA41734F626A8D069318E4C1057CBE5D9C4711C5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_focusController_m4B3D99989FB7F92066CF64237E637A92A2FCBAA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_focusController_m9E504BEF59B529FC125693F27E3E1F50495FDCA7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1__ctor_m5DEEB4213631D80690A19ED45C5602BC705CA346_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1__ctor_m81B4CAFCE183DB45ACDB9AF0319476AF0CD969CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_shiftKey_m6F17812A43DB9076880B0ACA64DD5675FA30E418_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m7245756097F392DCBE76E9A6060AF3B9D7268936_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m85814EBFEEB8F14E633DD5FCCC709B8A3711164B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m9514E9E35B642F957084FF90C965803456E18805_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mA394BA9DBC3AF1F855E619DBC319FE0C9F77CADB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3C332A204F7E245BC756631AB669E7518D14AEE1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m484EBAB01215728D1AF4C83F284F25A095D09D3E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m654F4B0CF3BAA9A130BC72017949E6B5DA07AD86_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m76A83B76330D385CC22ECE544729CDD0FCEAFECC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseCaptureEventBase_1__ctor_m1E467FAE9ABD4656623BECDC96A8341F02C0D768_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseCaptureEventBase_1__ctor_m964B5FA5C550017E062DE854397DDC526287CFE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m48E23E2CEC51FF7FA6E60C4A4073F3E9075848D9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m4B99E18521DA00391AA9F80D8639D184C9ACA33C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m5C8BA4454157A0AA816235F6C004A7DE07286002_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m67758DA9E515DDB691111B3C2AFDED133D94AEF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m713CBA226990F6E0FC54AE1E756CB12FCDB33265_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_m76E4D98D003541CE0DF10D5800CD7CE4D1BDC6AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_mC2955840E38CF19566CC2F2D06178101E293F268_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_GetPooled_mDA2CD5EE5E56FDDF4ECBD5B5BEF7789AD73F52CD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_m0B0AF66EF7846C4FAA09B86D9A04A72AA7559F3A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_m4EC1DC92CBE25F2D096B5F8C553FB4347F6EDE54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_m5172307D4D848585DFF1EB18608B9B26AAAB7A47_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_m5FF50B43F529E49EFB22E44617739B8D414D8D25_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_mADB87BB99F95C493AFE5ACE6377E47F978226453_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_mB557CC2D817400B27286C2D5FBAB71B25A0A8DD5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_mF4545F4BE72A0550BDF8FD5757AC406A1BF716A4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_mFEAB9B469E99EDAA5E56F540357226049C5B9AFA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_Init_mFFC1D5A84BBF1E43B3219E043EC13091772C4708_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_PostDispatch_m554F8A3B5BB1FF34F91107CD64E9E927546D800D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_PostDispatch_mB75794FD55D2CD0C88E989577B3D4768393F353F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_PostDispatch_mE6988E33474F18D07624B92B3828903754A296E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m19DE4DD0D8F81992FFEC61A6920378DA6E4BD9C4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m3C6E232AD6D84E78DDADFCF1186821ED2C5B66FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m4A8C93EF6FCE660673064A965E01B031FA8C153D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m604ECC785993566C6DBF24FE55F7050124B365DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m606F1D5F8D2D5C2AB1B3857D1C2C2EBBBF1F0906_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_m6552D6F655A8E0E8C16FD2A907590F97F2DFF8A0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mB7045D14E46AB980B352B696F07A3DE86F767129_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mB84A95F11F7DECE44659C5D099FE7C82773A2BB1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mD08FBD2DD5FD68ABF25E50B606C89B3EB46D8C82_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mD3DE0C71E1F39D8D818A1EA52D607369F382C3BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mD86BD142A6E3495041FBDAB51EAC772A22BEA5EA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1__ctor_mE970617681C555250ADB957AAAA30CCA8471C99B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1_Init_m3C16C9ABDFE7568FE4D45C6C0C16A6A7EE49E223_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1_Init_m7B60279F83401BB6508A7B2658240EDA30D5EA8F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1__ctor_m364A946C798C642694D607BD7C3CB5B91A1DE34F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1__ctor_m4F9E95BC8D415DE106E1932FF4A82366CD25D8B9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1__ctor_mE183BB21D852CC844A54BEE671209231A4B4CC6D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NavigationEventBase_1__ctor_mECD273E7B651E2DE0CB6D4F2AC99578358CF2D75_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_mBED7FE0D073C450EA5B2CCE78D403ACF37DBCBB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_mAC1FD0696B9C947EC8757B15FA56BC0EB7C059EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelChangedEventBase_1__ctor_m484437AB3FBE0B759ABD36B98022E2ACCECF0311_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelChangedEventBase_1__ctor_m9205106266852B52BAD4133BC38F6BF8DF28F26E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelChangedEventBase_1_get_destinationPanel_m8AE1564C5D0CADA5428BFC43C5111C6227ED65C0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PanelChangedEventBase_1_get_originPanel_mB78D4DFA7608CBBC25903E7944DF9CB36D57A3A3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1__ctor_m919C773A68103FCC4A812EB1295FE2D7C235B82B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1__ctor_m9DEF773868286ECFB7BA390DB5DC6136639BC5ED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m5B7D3239A8C1E92C3045C41997EDAC47F757E8DA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_m6A04371AEFF51E2C3DA0E8580A84CA2BCF39642E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_GetPooled_mEB737E22C24C0FFC4F2D86E4FE3348C8168C277A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_m6A5AAAB38F079D58A444E447671A79AD4098B98A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_m7C39066C6FC58310E991F2C8C4491520EB6D013B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_m8C36DC066721E1AC99A205129551EBE2C65A432D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_mA1E6CC3B61166169763B6912412A3E33CBF87E93_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_mAAF393FC943EA9A8341CB7DC23184B71F4B6FBFD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_mB7A2ABD885C3D09B64F29476C624D9AAAABF32C5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_mB8033AF59D776B5968DD983BA8E2FEE5D7B2643A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_Init_mECC6EFC54352B623BA3BCF96DC7ABCAA7109434C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_PostDispatch_mAF5CD0D2EE756A1E0E7B0733E7EC352A320C0897_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_PostDispatch_mBBF8C65E6E8406C67A589BDB0E6F5E54DE46A426_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_PostDispatch_mCCE423FE41D58CBC68045348F89008943747FA2D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_PostDispatch_mDE64F12665D559442C1EFAEC9FCBFBCB7622494F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_m3E8100AEEA4FA6AC1C073A19604AE06E89F37349_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_m5A717FB16CEBD963D885F99DBED915DBAD419F42_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_m998F76A42DE6E5246AEECA0095657850B41DA8A2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mA0557C9D68E527F40125701EA3A67DA52C805AA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mA70B3E8EEAAE5C2CDE62205CD8E5A55FD41A33C4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mAE2D24192D8C6D25D241F42CC8435FBC28036695_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mB7A3F65D4DA735C91B931AF65D46C6E5BFDD1FBE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mDC2BA420399D1B05219425FA26A81E3C01EC983D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mEEDD5DA0CB24E8B1539D7A8B7B6F478813511665_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1__ctor_mFC14CFE3B732209E75A86B89C1CE113DBF9FC0AC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_button_m2C8D3EC8071AFDA85E4B71093A129E0E0A7FD25D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_isPrimary_mE2A52BF852EE9E4E8D7C83599B93CE9E7A2664E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerType_m035E9ED854B5F58692E67128A759F3863D212795_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerType_m1724EBAD6D0313ABE5739C89FC27EBFAF86D1926_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_pressedButtons_m5A50ECC9E90E177443813450F81D5F283C48BD4A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ScriptableObject_CreateInstance_TisPanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_mB0E638882BD4ADB8F3290D76B9667580ADB49C8D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mE21E089AF2AB9703038F2EABB99638C8946E1C10_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m27EF77ADD65A56CD95F3EAFA786C44BC7271CC29_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TransitionEventBase_1__ctor_m0173536041AC6AD075DF05F1E88C27A97A6C1E13_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TransitionEventBase_1__ctor_m59E5F6EDA095C329E3E009740FEB92327180BE70_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TransitionEventBase_1__ctor_mA89133B8A086738FD951A3B725B6756C8D00F741_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TransitionEventBase_1__ctor_mB38ABE9778812A782CD46CB5F6DEAD73C0551951_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TwoPaneSplitView_OnSizeChange_mE9251DA484D4D1D75709BEB0C9CB9324B4D654B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mD0797674F7E1719CC35FD9766E5D3ED256F19EBB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__20_0_m2C10A6584006D32F230D68FB1DB5E7EDC6BAE421_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlEnumAttributeDescription_1__ctor_m69AAD7688907FE7D840A63F5668B0BC8EC4A45C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m018A502C0F2472D4020C6F496065D83006F5FDFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m38DAD155B16017BA79124CB537DD2545D0740805_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861_RuntimeMethod_var;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8;
|
|
struct IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933;
|
|
struct IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct LineInfoU5BU5D_t37598F2175B291797270D1161DC29B6296FB169D;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D;
|
|
struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
|
|
struct TextElementInfoU5BU5D_tEC28C9B72883EE21AA798913497C69E179A15C4E;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF;
|
|
struct PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4;
|
|
|
|
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
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_t05C1C77038E962562627C6A37AC846338771129E* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_tF7FF5198CA7D5A910663B1577CD0FFDA83EA7A71* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t023DC1C66123EE3E4EE4B59B1D1154B572FFC20D* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>
|
|
struct Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_tAB525F8ECB19BC8DCA114AB3D35AF5A59E65238B* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_tAC22D59A2245E394492320CFE3E3CC7630399F99* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t82E97763418566F3CCFF90E4AAC50DBCC50C7E8C* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
EventCallbackFunctorBaseU5BU5D_tDD22888A8C0E1D7F5FF2E417BE833FE4122228C7* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>
|
|
struct List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
FontAssetU5BU5D_t5A6A4DD2BD3259A2F45F7F4D7860BAEA3666EA93* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ReusableCollectionItemU5BU5D_t7B98FF5B03A63736FAB4B967CBD8C0AC0822F2F9* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>
|
|
struct List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StylePropertyNameU5BU5D_t531626CF806E3F3D348D1F38A9109767014C35F8* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
struct ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.Stack`1<T> UnityEngine.UIElements.ObjectPool`1::m_Stack
|
|
Stack_1_t853F0A5AE8C58989DE55C33158952AB6D8D18DE7* ___m_Stack_0;
|
|
// System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize
|
|
int32_t ___m_MaxSize_1;
|
|
};
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
struct Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
EventCallbackListU5BU5D_t3970F59A704458C0AFD5D9084426FCE6769C8769* ____array_0;
|
|
// System.Int32 System.Collections.Generic.Stack`1::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.Generic.Stack`1::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.Generic.Stack`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_3;
|
|
};
|
|
|
|
// System.Collections.Generic.Stack`1<System.Object>
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0;
|
|
// System.Int32 System.Collections.Generic.Stack`1::_size
|
|
int32_t ____size_1;
|
|
// System.Int32 System.Collections.Generic.Stack`1::_version
|
|
int32_t ____version_2;
|
|
// System.Object System.Collections.Generic.Stack`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.RadioButtonGroup,UnityEngine.UIElements.RadioButtonGroup/UxmlTraits>
|
|
struct UxmlFactory_2_t47455F8804FE5FBBAAFFE466FA749DBCBBE6DFEE : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_t2B80C3B5E7B8E0FBF2384F6224536E39AF415DB3* ___m_Traits_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TwoPaneSplitView,UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits>
|
|
struct UxmlFactory_2_tEEF1268EAE5CA173703C394D675084E6A1ECB983 : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_tD94069F1DEA132ACB4C340B51942037468E26A9D* ___m_Traits_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.EventCallbackRegistry UnityEngine.UIElements.CallbackEventHandler::m_CallbackRegistry
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
struct CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView UnityEngine.UIElements.CollectionViewController::m_View
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* ___m_View_0;
|
|
// System.Collections.IList UnityEngine.UIElements.CollectionViewController::m_ItemsSource
|
|
RuntimeObject* ___m_ItemsSource_1;
|
|
// System.Action UnityEngine.UIElements.CollectionViewController::itemsSourceChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___itemsSourceChanged_2;
|
|
// System.Action`2<System.Int32,System.Int32> UnityEngine.UIElements.CollectionViewController::itemIndexChanged
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___itemIndexChanged_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
struct CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.CollectionVirtualizationController::m_ScrollView
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B : public RuntimeObject
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.ContextualMenuManager::<displayMenuHandledOSX>k__BackingField
|
|
bool ___U3CdisplayMenuHandledOSXU3Ek__BackingField_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
struct DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.DropdownMenuItem> UnityEngine.UIElements.DropdownMenu::m_MenuItems
|
|
List_1_t98556D08ADC95F025E529036B8FB0403DC53D789* ___m_MenuItems_0;
|
|
// UnityEngine.UIElements.DropdownMenuEventInfo UnityEngine.UIElements.DropdownMenu::m_DropdownMenuEventInfo
|
|
DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF* ___m_DropdownMenuEventInfo_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ElementUnderPointer
|
|
struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_PendingTopElementUnderPointer
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_PendingTopElementUnderPointer_0;
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.ElementUnderPointer::m_TopElementUnderPointer
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___m_TopElementUnderPointer_1;
|
|
// UnityEngine.UIElements.IPointerEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerPointerEvent
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* ___m_TriggerPointerEvent_2;
|
|
// UnityEngine.UIElements.IMouseEvent[] UnityEngine.UIElements.ElementUnderPointer::m_TriggerMouseEvent
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* ___m_TriggerMouseEvent_3;
|
|
// UnityEngine.Vector2[] UnityEngine.UIElements.ElementUnderPointer::m_PickingPointerPositions
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_PickingPointerPositions_4;
|
|
// System.Boolean[] UnityEngine.UIElements.ElementUnderPointer::m_IsPickingPointerTemporaries
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_IsPickingPointerTemporaries_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase
|
|
struct EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.CallbackPhase UnityEngine.UIElements.EventCallbackFunctorBase::<phase>k__BackingField
|
|
int32_t ___U3CphaseU3Ek__BackingField_0;
|
|
// UnityEngine.UIElements.InvokePolicy UnityEngine.UIElements.EventCallbackFunctorBase::<invokePolicy>k__BackingField
|
|
int32_t ___U3CinvokePolicyU3Ek__BackingField_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallbackList
|
|
struct EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase> UnityEngine.UIElements.EventCallbackList::m_List
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* ___m_List_0;
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::<trickleDownCallbackCount>k__BackingField
|
|
int32_t ___U3CtrickleDownCallbackCountU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::<bubbleUpCallbackCount>k__BackingField
|
|
int32_t ___U3CbubbleUpCallbackCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallbackListPool
|
|
struct EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList> UnityEngine.UIElements.EventCallbackListPool::m_Stack
|
|
Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* ___m_Stack_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallbackRegistry
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::m_Callbacks
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___m_Callbacks_1;
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::m_TemporaryCallbacks
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___m_TemporaryCallbacks_2;
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackRegistry::m_IsInvoking
|
|
int32_t ___m_IsInvoking_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
struct EventDispatchUtilities_t1D4C3D963EC4896C3D004D5EAE765177362A8A69 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.ClickDetector UnityEngine.UIElements.EventDispatcher::m_ClickDetector
|
|
ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* ___m_ClickDetector_0;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy> UnityEngine.UIElements.EventDispatcher::m_DispatchingStrategies
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ___m_DispatchingStrategies_1;
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord> UnityEngine.UIElements.EventDispatcher::m_Queue
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_3;
|
|
// UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.EventDispatcher::<pointerState>k__BackingField
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* ___U3CpointerStateU3Ek__BackingField_4;
|
|
// System.UInt32 UnityEngine.UIElements.EventDispatcher::m_GateCount
|
|
uint32_t ___m_GateCount_5;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext> UnityEngine.UIElements.EventDispatcher::m_DispatchContexts
|
|
Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* ___m_DispatchContexts_6;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::m_Immediate
|
|
bool ___m_Immediate_8;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::<processingEvents>k__BackingField
|
|
bool ___U3CprocessingEventsU3Ek__BackingField_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IFocusRing UnityEngine.UIElements.FocusController::<focusRing>k__BackingField
|
|
RuntimeObject* ___U3CfocusRingU3Ek__BackingField_0;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement> UnityEngine.UIElements.FocusController::m_FocusedElements
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements_1;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastFocusedElement
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement_2;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastPendingFocusedElement
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement_3;
|
|
// System.Int32 UnityEngine.UIElements.FocusController::m_PendingFocusCount
|
|
int32_t ___m_PendingFocusCount_4;
|
|
// System.Int32 UnityEngine.UIElements.FocusController::<imguiKeyboardControl>k__BackingField
|
|
int32_t ___U3CimguiKeyboardControlU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.Manipulator
|
|
struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Manipulator::m_Target
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventsHelper
|
|
struct MouseEventsHelper_tCA2B2B4B36A3F80CE118DECAE91AB7658A68437F : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
struct NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState
|
|
struct PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventsHelper
|
|
struct PointerEventsHelper_tBCB1C72023C15955BDC79A319622ADC3F583EE82 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerId
|
|
struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerType
|
|
struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PropagationPaths
|
|
struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.PropagationPaths::trickleDownPath
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___trickleDownPath_1;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.PropagationPaths::targetElements
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___targetElements_2;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.PropagationPaths::bubbleUpPath
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___bubbleUpPath_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ReusableCollectionItem
|
|
struct ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::<bindableElement>k__BackingField
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CbindableElementU3Ek__BackingField_0;
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues> UnityEngine.UIElements.ReusableCollectionItem::<animator>k__BackingField
|
|
ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC* ___U3CanimatorU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.ReusableCollectionItem::<index>k__BackingField
|
|
int32_t ___U3CindexU3Ek__BackingField_2;
|
|
// System.Int32 UnityEngine.UIElements.ReusableCollectionItem::<id>k__BackingField
|
|
int32_t ___U3CidU3Ek__BackingField_3;
|
|
// System.Action`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.ReusableCollectionItem::onGeometryChanged
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* ___onGeometryChanged_4;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent> UnityEngine.UIElements.ReusableCollectionItem::m_GeometryChangedEventCallback
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* ___m_GeometryChangedEventCallback_5;
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector
|
|
struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleComplexSelector::m_Specificity
|
|
int32_t ___m_Specificity_0;
|
|
// UnityEngine.UIElements.StyleRule UnityEngine.UIElements.StyleComplexSelector::<rule>k__BackingField
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* ___U3CruleU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.StyleSelector[] UnityEngine.UIElements.StyleComplexSelector::m_Selectors
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* ___m_Selectors_2;
|
|
// System.Int32 UnityEngine.UIElements.StyleComplexSelector::ruleIndex
|
|
int32_t ___ruleIndex_3;
|
|
// UnityEngine.UIElements.StyleComplexSelector UnityEngine.UIElements.StyleComplexSelector::nextInTable
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* ___nextInTable_4;
|
|
// System.Int32 UnityEngine.UIElements.StyleComplexSelector::orderInStyleSheet
|
|
int32_t ___orderInStyleSheet_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleRule
|
|
struct StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.StyleProperty[] UnityEngine.UIElements.StyleRule::m_Properties
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* ___m_Properties_0;
|
|
// System.Int32 UnityEngine.UIElements.StyleRule::line
|
|
int32_t ___line_1;
|
|
// System.Int32 UnityEngine.UIElements.StyleRule::customPropertiesCount
|
|
int32_t ___customPropertiesCount_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelector
|
|
struct StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.StyleSelectorPart[] UnityEngine.UIElements.StyleSelector::m_Parts
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ___m_Parts_0;
|
|
// UnityEngine.UIElements.StyleSelectorRelationship UnityEngine.UIElements.StyleSelector::m_PreviousRelationship
|
|
int32_t ___m_PreviousRelationship_1;
|
|
// System.Int32 UnityEngine.UIElements.StyleSelector::pseudoStateMask
|
|
int32_t ___pseudoStateMask_2;
|
|
// System.Int32 UnityEngine.UIElements.StyleSelector::negatedPseudoStateMask
|
|
int32_t ___negatedPseudoStateMask_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextUtilities
|
|
struct TextUtilities_tC52E9C85AEB33F87F8A1354213478686A9534F84 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
struct UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
struct UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2 : public RuntimeObject
|
|
{
|
|
// System.String UnityEngine.UIElements.UxmlAttributeDescription::<name>k__BackingField
|
|
String_t* ___U3CnameU3Ek__BackingField_0;
|
|
// System.String[] UnityEngine.UIElements.UxmlAttributeDescription::m_ObsoleteNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_ObsoleteNames_1;
|
|
// System.String UnityEngine.UIElements.UxmlAttributeDescription::<type>k__BackingField
|
|
String_t* ___U3CtypeU3Ek__BackingField_2;
|
|
// System.String UnityEngine.UIElements.UxmlAttributeDescription::<typeNamespace>k__BackingField
|
|
String_t* ___U3CtypeNamespaceU3Ek__BackingField_3;
|
|
// UnityEngine.UIElements.UxmlAttributeDescription/Use UnityEngine.UIElements.UxmlAttributeDescription::<use>k__BackingField
|
|
int32_t ___U3CuseU3Ek__BackingField_4;
|
|
// UnityEngine.UIElements.UxmlTypeRestriction UnityEngine.UIElements.UxmlAttributeDescription::<restriction>k__BackingField
|
|
UxmlTypeRestriction_t2C4CE1ED76502CDF80010880E058AF0582910A92* ___U3CrestrictionU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlTraits
|
|
struct UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160 : public RuntimeObject
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.UxmlTraits::<canHaveAnyAttribute>k__BackingField
|
|
bool ___U3CcanHaveAnyAttributeU3Ek__BackingField_0;
|
|
};
|
|
|
|
// System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c
|
|
struct U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>
|
|
struct CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F
|
|
{
|
|
// System.String UnityEngine.UIElements.CustomStyleProperty`1::<name>k__BackingField
|
|
String_t* ___U3CnameU3Ek__BackingField_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.CustomStyleProperty`1
|
|
#ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define
|
|
#define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke_define
|
|
struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_pinvoke
|
|
{
|
|
char* ___U3CnameU3Ek__BackingField_0;
|
|
};
|
|
#endif
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.CustomStyleProperty`1
|
|
#ifndef CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define
|
|
#define CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com_define
|
|
struct CustomStyleProperty_1_t8315EF5D1C5F5FB5F920B77E40695C07DAAB349A_marshaled_com
|
|
{
|
|
Il2CppChar* ___U3CnameU3Ek__BackingField_0;
|
|
};
|
|
#endif
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<System.Object>
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
RuntimeObject* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
struct Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ____current_3;
|
|
};
|
|
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex>
|
|
struct NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656
|
|
{
|
|
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
|
|
void* ___m_Buffer_0;
|
|
// System.Int32 Unity.Collections.NativeArray`1::m_Length
|
|
int32_t ___m_Length_1;
|
|
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
|
|
int32_t ___m_AllocatorLabel_2;
|
|
};
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
|
|
{
|
|
// System.Boolean System.Nullable`1::hasValue
|
|
bool ___hasValue_0;
|
|
// T System.Nullable`1::value
|
|
bool ___value_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.InheritedData>
|
|
struct StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.LayoutData>
|
|
struct StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.RareData>
|
|
struct StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.TransformData>
|
|
struct StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.TransitionData>
|
|
struct StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.VisualData>
|
|
struct StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<T> UnityEngine.UIElements.StyleDataRef`1::m_Ref
|
|
RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A* ___m_Ref_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
struct TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
int32_t ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32Enum>
|
|
struct TypedUxmlAttributeDescription_1_t9D2289098FC52844881F6536BCAA110E7F1D5B9C : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
int32_t ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>
|
|
struct TypedUxmlAttributeDescription_1_tD8728D2AC8F9232D2E6A83B327DC0258F2CEEFA2 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
String_t* ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
struct TypedUxmlAttributeDescription_1_t13464B85D57627D4381BEA28451BC34601B415D5 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
int32_t ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.BMPAlloc
|
|
struct BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.UIR.BMPAlloc::page
|
|
int32_t ___page_1;
|
|
// System.UInt16 UnityEngine.UIElements.UIR.BMPAlloc::pageLine
|
|
uint16_t ___pageLine_2;
|
|
// System.Byte UnityEngine.UIElements.UIR.BMPAlloc::bitIndex
|
|
uint8_t ___bitIndex_3;
|
|
// UnityEngine.UIElements.UIR.OwnedState UnityEngine.UIElements.UIR.BMPAlloc::ownedState
|
|
uint8_t ___ownedState_4;
|
|
};
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
};
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.Color
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
// System.Single UnityEngine.Color::r
|
|
float ___r_0;
|
|
// System.Single UnityEngine.Color::g
|
|
float ___g_1;
|
|
// System.Single UnityEngine.Color::b
|
|
float ___b_2;
|
|
// System.Single UnityEngine.Color::a
|
|
float ___a_3;
|
|
};
|
|
|
|
// UnityEngine.Color32
|
|
struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Int32 UnityEngine.Color32::rgba
|
|
int32_t ___rgba_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___rgba_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Byte UnityEngine.Color32::r
|
|
uint8_t ___r_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___r_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___g_2_OffsetPadding[1];
|
|
// System.Byte UnityEngine.Color32::g
|
|
uint8_t ___g_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___g_2_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___g_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___b_3_OffsetPadding[2];
|
|
// System.Byte UnityEngine.Color32::b
|
|
uint8_t ___b_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___b_3_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___b_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___a_4_OffsetPadding[3];
|
|
// System.Byte UnityEngine.Color32::a
|
|
uint8_t ___a_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___a_4_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___a_4_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.CreationContext
|
|
struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CreationContext::<target>k__BackingField
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.CreationContext::<visualTreeAsset>k__BackingField
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.CreationContext::<slotInsertionPoints>k__BackingField
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride> UnityEngine.UIElements.CreationContext::<attributeOverrides>k__BackingField
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.CreationContext
|
|
struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2;
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.CreationContext
|
|
struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CtargetU3Ek__BackingField_1;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___U3CvisualTreeAssetU3Ek__BackingField_2;
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___U3CslotInsertionPointsU3Ek__BackingField_3;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___U3CattributeOverridesU3Ek__BackingField_4;
|
|
};
|
|
|
|
// System.Double
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
struct EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097
|
|
{
|
|
// UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.EventDispatcherGate::m_Dispatcher
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
|
|
// UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8
|
|
{
|
|
// System.Boolean UnityEngine.EventInterests::<wantsMouseMove>k__BackingField
|
|
bool ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
// System.Boolean UnityEngine.EventInterests::<wantsMouseEnterLeaveWindow>k__BackingField
|
|
bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
// System.Boolean UnityEngine.EventInterests::<wantsLessLayoutEvents>k__BackingField
|
|
bool ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.TextCore.FaceInfo
|
|
struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756
|
|
{
|
|
// System.Int32 UnityEngine.TextCore.FaceInfo::m_FaceIndex
|
|
int32_t ___m_FaceIndex_0;
|
|
// System.String UnityEngine.TextCore.FaceInfo::m_FamilyName
|
|
String_t* ___m_FamilyName_1;
|
|
// System.String UnityEngine.TextCore.FaceInfo::m_StyleName
|
|
String_t* ___m_StyleName_2;
|
|
// System.Int32 UnityEngine.TextCore.FaceInfo::m_PointSize
|
|
int32_t ___m_PointSize_3;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_Scale
|
|
float ___m_Scale_4;
|
|
// System.Int32 UnityEngine.TextCore.FaceInfo::m_UnitsPerEM
|
|
int32_t ___m_UnitsPerEM_5;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_LineHeight
|
|
float ___m_LineHeight_6;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_AscentLine
|
|
float ___m_AscentLine_7;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_CapLine
|
|
float ___m_CapLine_8;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_MeanLine
|
|
float ___m_MeanLine_9;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_Baseline
|
|
float ___m_Baseline_10;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_DescentLine
|
|
float ___m_DescentLine_11;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_SuperscriptOffset
|
|
float ___m_SuperscriptOffset_12;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_SuperscriptSize
|
|
float ___m_SuperscriptSize_13;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_SubscriptOffset
|
|
float ___m_SubscriptOffset_14;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_SubscriptSize
|
|
float ___m_SubscriptSize_15;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_UnderlineOffset
|
|
float ___m_UnderlineOffset_16;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_UnderlineThickness
|
|
float ___m_UnderlineThickness_17;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_StrikethroughOffset
|
|
float ___m_StrikethroughOffset_18;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_StrikethroughThickness
|
|
float ___m_StrikethroughThickness_19;
|
|
// System.Single UnityEngine.TextCore.FaceInfo::m_TabWidth
|
|
float ___m_TabWidth_20;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.FaceInfo
|
|
struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_FaceIndex_0;
|
|
char* ___m_FamilyName_1;
|
|
char* ___m_StyleName_2;
|
|
int32_t ___m_PointSize_3;
|
|
float ___m_Scale_4;
|
|
int32_t ___m_UnitsPerEM_5;
|
|
float ___m_LineHeight_6;
|
|
float ___m_AscentLine_7;
|
|
float ___m_CapLine_8;
|
|
float ___m_MeanLine_9;
|
|
float ___m_Baseline_10;
|
|
float ___m_DescentLine_11;
|
|
float ___m_SuperscriptOffset_12;
|
|
float ___m_SuperscriptSize_13;
|
|
float ___m_SubscriptOffset_14;
|
|
float ___m_SubscriptSize_15;
|
|
float ___m_UnderlineOffset_16;
|
|
float ___m_UnderlineThickness_17;
|
|
float ___m_StrikethroughOffset_18;
|
|
float ___m_StrikethroughThickness_19;
|
|
float ___m_TabWidth_20;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.TextCore.FaceInfo
|
|
struct FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756_marshaled_com
|
|
{
|
|
int32_t ___m_FaceIndex_0;
|
|
Il2CppChar* ___m_FamilyName_1;
|
|
Il2CppChar* ___m_StyleName_2;
|
|
int32_t ___m_PointSize_3;
|
|
float ___m_Scale_4;
|
|
int32_t ___m_UnitsPerEM_5;
|
|
float ___m_LineHeight_6;
|
|
float ___m_AscentLine_7;
|
|
float ___m_CapLine_8;
|
|
float ___m_MeanLine_9;
|
|
float ___m_Baseline_10;
|
|
float ___m_DescentLine_11;
|
|
float ___m_SuperscriptOffset_12;
|
|
float ___m_SuperscriptSize_13;
|
|
float ___m_SubscriptOffset_14;
|
|
float ___m_SubscriptSize_15;
|
|
float ___m_UnderlineOffset_16;
|
|
float ___m_UnderlineThickness_17;
|
|
float ___m_StrikethroughOffset_18;
|
|
float ___m_StrikethroughThickness_19;
|
|
float ___m_TabWidth_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Focusable
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0 : public CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.Focusable::<focusable>k__BackingField
|
|
bool ___U3CfocusableU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.Focusable::<tabIndex>k__BackingField
|
|
int32_t ___U3CtabIndexU3Ek__BackingField_2;
|
|
// System.Boolean UnityEngine.UIElements.Focusable::m_DelegatesFocus
|
|
bool ___m_DelegatesFocus_3;
|
|
// System.Boolean UnityEngine.UIElements.Focusable::m_ExcludeFromFocusRing
|
|
bool ___m_ExcludeFromFocusRing_4;
|
|
// System.Boolean UnityEngine.UIElements.Focusable::isIMGUIContainer
|
|
bool ___isIMGUIContainer_5;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.FontAssetCreationEditorSettings
|
|
struct FontAssetCreationEditorSettings_t0FF28D2E78F090105C63C81F9E438A7B09E3EA52
|
|
{
|
|
// System.String UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::sourceFontFileGUID
|
|
String_t* ___sourceFontFileGUID_0;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::faceIndex
|
|
int32_t ___faceIndex_1;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::pointSizeSamplingMode
|
|
int32_t ___pointSizeSamplingMode_2;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::pointSize
|
|
int32_t ___pointSize_3;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::padding
|
|
int32_t ___padding_4;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::packingMode
|
|
int32_t ___packingMode_5;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::atlasWidth
|
|
int32_t ___atlasWidth_6;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::atlasHeight
|
|
int32_t ___atlasHeight_7;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::characterSetSelectionMode
|
|
int32_t ___characterSetSelectionMode_8;
|
|
// System.String UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::characterSequence
|
|
String_t* ___characterSequence_9;
|
|
// System.String UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::referencedFontAssetGUID
|
|
String_t* ___referencedFontAssetGUID_10;
|
|
// System.String UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::referencedTextAssetGUID
|
|
String_t* ___referencedTextAssetGUID_11;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::fontStyle
|
|
int32_t ___fontStyle_12;
|
|
// System.Single UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::fontStyleModifier
|
|
float ___fontStyleModifier_13;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::renderMode
|
|
int32_t ___renderMode_14;
|
|
// System.Boolean UnityEngine.TextCore.Text.FontAssetCreationEditorSettings::includeFontFeatures
|
|
bool ___includeFontFeatures_15;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.Text.FontAssetCreationEditorSettings
|
|
struct FontAssetCreationEditorSettings_t0FF28D2E78F090105C63C81F9E438A7B09E3EA52_marshaled_pinvoke
|
|
{
|
|
char* ___sourceFontFileGUID_0;
|
|
int32_t ___faceIndex_1;
|
|
int32_t ___pointSizeSamplingMode_2;
|
|
int32_t ___pointSize_3;
|
|
int32_t ___padding_4;
|
|
int32_t ___packingMode_5;
|
|
int32_t ___atlasWidth_6;
|
|
int32_t ___atlasHeight_7;
|
|
int32_t ___characterSetSelectionMode_8;
|
|
char* ___characterSequence_9;
|
|
char* ___referencedFontAssetGUID_10;
|
|
char* ___referencedTextAssetGUID_11;
|
|
int32_t ___fontStyle_12;
|
|
float ___fontStyleModifier_13;
|
|
int32_t ___renderMode_14;
|
|
int32_t ___includeFontFeatures_15;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.TextCore.Text.FontAssetCreationEditorSettings
|
|
struct FontAssetCreationEditorSettings_t0FF28D2E78F090105C63C81F9E438A7B09E3EA52_marshaled_com
|
|
{
|
|
Il2CppChar* ___sourceFontFileGUID_0;
|
|
int32_t ___faceIndex_1;
|
|
int32_t ___pointSizeSamplingMode_2;
|
|
int32_t ___pointSize_3;
|
|
int32_t ___padding_4;
|
|
int32_t ___packingMode_5;
|
|
int32_t ___atlasWidth_6;
|
|
int32_t ___atlasHeight_7;
|
|
int32_t ___characterSetSelectionMode_8;
|
|
Il2CppChar* ___characterSequence_9;
|
|
Il2CppChar* ___referencedFontAssetGUID_10;
|
|
Il2CppChar* ___referencedTextAssetGUID_11;
|
|
int32_t ___fontStyle_12;
|
|
float ___fontStyleModifier_13;
|
|
int32_t ___renderMode_14;
|
|
int32_t ___includeFontFeatures_15;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FontDefinition
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C
|
|
{
|
|
// UnityEngine.Font UnityEngine.UIElements.FontDefinition::m_Font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.FontDefinition::m_FontAsset
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.FontDefinition
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.FontDefinition
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_Font_0;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_FontAsset_1;
|
|
};
|
|
|
|
// System.Int32
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int64
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
};
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3 : public Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE
|
|
{
|
|
// System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase> UnityEngine.UIElements.KeyboardNavigationManipulator::m_Action
|
|
Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* ___m_Action_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Length
|
|
struct Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256
|
|
{
|
|
// System.Single UnityEngine.UIElements.Length::m_Value
|
|
float ___m_Value_1;
|
|
// UnityEngine.UIElements.Length/Unit UnityEngine.UIElements.Length::m_Unit
|
|
int32_t ___m_Unit_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter
|
|
struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81
|
|
{
|
|
// UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_0;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.ManipulatorActivationFilter::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.Mathf
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.Matrix4x4
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
|
|
{
|
|
// System.Single UnityEngine.Matrix4x4::m00
|
|
float ___m00_0;
|
|
// System.Single UnityEngine.Matrix4x4::m10
|
|
float ___m10_1;
|
|
// System.Single UnityEngine.Matrix4x4::m20
|
|
float ___m20_2;
|
|
// System.Single UnityEngine.Matrix4x4::m30
|
|
float ___m30_3;
|
|
// System.Single UnityEngine.Matrix4x4::m01
|
|
float ___m01_4;
|
|
// System.Single UnityEngine.Matrix4x4::m11
|
|
float ___m11_5;
|
|
// System.Single UnityEngine.Matrix4x4::m21
|
|
float ___m21_6;
|
|
// System.Single UnityEngine.Matrix4x4::m31
|
|
float ___m31_7;
|
|
// System.Single UnityEngine.Matrix4x4::m02
|
|
float ___m02_8;
|
|
// System.Single UnityEngine.Matrix4x4::m12
|
|
float ___m12_9;
|
|
// System.Single UnityEngine.Matrix4x4::m22
|
|
float ___m22_10;
|
|
// System.Single UnityEngine.Matrix4x4::m32
|
|
float ___m32_11;
|
|
// System.Single UnityEngine.Matrix4x4::m03
|
|
float ___m03_12;
|
|
// System.Single UnityEngine.Matrix4x4::m13
|
|
float ___m13_13;
|
|
// System.Single UnityEngine.Matrix4x4::m23
|
|
float ___m23_14;
|
|
// System.Single UnityEngine.Matrix4x4::m33
|
|
float ___m33_15;
|
|
};
|
|
|
|
// UnityEngine.PropertyName
|
|
struct PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2
|
|
{
|
|
// System.Int32 UnityEngine.PropertyName::id
|
|
int32_t ___id_0;
|
|
};
|
|
|
|
// UnityEngine.Rect
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
// System.Single UnityEngine.Rect::m_XMin
|
|
float ___m_XMin_0;
|
|
// System.Single UnityEngine.Rect::m_YMin
|
|
float ___m_YMin_1;
|
|
// System.Single UnityEngine.Rect::m_Width
|
|
float ___m_Width_2;
|
|
// System.Single UnityEngine.Rect::m_Height
|
|
float ___m_Height_3;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleFloat
|
|
struct StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841
|
|
{
|
|
// System.Single UnityEngine.UIElements.StyleFloat::m_Value
|
|
float ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleFloat::m_Keyword
|
|
int32_t ___m_Keyword_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyName
|
|
struct StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.StylePropertyName::<id>k__BackingField
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
// System.String UnityEngine.UIElements.StylePropertyName::<name>k__BackingField
|
|
String_t* ___U3CnameU3Ek__BackingField_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StylePropertyName
|
|
struct StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
char* ___U3CnameU3Ek__BackingField_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StylePropertyName
|
|
struct StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_marshaled_com
|
|
{
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
Il2CppChar* ___U3CnameU3Ek__BackingField_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection
|
|
struct StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName> UnityEngine.UIElements.StylePropertyNameCollection::propertiesList
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___propertiesList_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StylePropertyNameCollection
|
|
struct StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_pinvoke
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___propertiesList_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StylePropertyNameCollection
|
|
struct StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_com
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___propertiesList_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelectorPart
|
|
struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470
|
|
{
|
|
// System.String UnityEngine.UIElements.StyleSelectorPart::m_Value
|
|
String_t* ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleSelectorType UnityEngine.UIElements.StyleSelectorPart::m_Type
|
|
int32_t ___m_Type_1;
|
|
// System.Object UnityEngine.UIElements.StyleSelectorPart::tempData
|
|
RuntimeObject* ___tempData_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSelectorPart
|
|
struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_pinvoke
|
|
{
|
|
char* ___m_Value_0;
|
|
int32_t ___m_Type_1;
|
|
Il2CppIUnknown* ___tempData_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleSelectorPart
|
|
struct StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_com
|
|
{
|
|
Il2CppChar* ___m_Value_0;
|
|
int32_t ___m_Type_1;
|
|
Il2CppIUnknown* ___tempData_2;
|
|
};
|
|
|
|
// System.UInt64
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
// System.UInt64 System.UInt64::m_value
|
|
uint64_t ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.Vector2
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
// System.Single UnityEngine.Vector2::x
|
|
float ___x_0;
|
|
// System.Single UnityEngine.Vector2::y
|
|
float ___y_1;
|
|
};
|
|
|
|
// UnityEngine.Vector2Int
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A
|
|
{
|
|
// System.Int32 UnityEngine.Vector2Int::m_X
|
|
int32_t ___m_X_0;
|
|
// System.Int32 UnityEngine.Vector2Int::m_Y
|
|
int32_t ___m_Y_1;
|
|
};
|
|
|
|
// UnityEngine.Vector3
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
// System.Single UnityEngine.Vector3::x
|
|
float ___x_2;
|
|
// System.Single UnityEngine.Vector3::y
|
|
float ___y_3;
|
|
// System.Single UnityEngine.Vector3::z
|
|
float ___z_4;
|
|
};
|
|
|
|
// UnityEngine.Vector4
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
// System.Single UnityEngine.Vector4::x
|
|
float ___x_1;
|
|
// System.Single UnityEngine.Vector4::y
|
|
float ___y_2;
|
|
// System.Single UnityEngine.Vector4::z
|
|
float ___z_3;
|
|
// System.Single UnityEngine.Vector4::w
|
|
float ___w_4;
|
|
};
|
|
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0
|
|
struct U3CU3Ec__DisplayClass164_0_tC8D9A08D511DD33A5B1192813EF9635A87268747
|
|
{
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0::<>4__this
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* ___U3CU3E4__this_0;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0::shiftKey
|
|
bool ___shiftKey_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ListViewDragger/DragPosition
|
|
struct DragPosition_t922FC1F61C1B1A510241E4207B94AA1CD7E94660
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ListViewDragger/DragPosition::insertAtIndex
|
|
int32_t ___insertAtIndex_0;
|
|
// UnityEngine.UIElements.ReusableCollectionItem UnityEngine.UIElements.ListViewDragger/DragPosition::recycledItem
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___recycledItem_1;
|
|
// UnityEngine.UIElements.DragAndDropPosition UnityEngine.UIElements.ListViewDragger/DragPosition::dragAndDropPosition
|
|
int32_t ___dragAndDropPosition_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.ListViewDragger/DragPosition
|
|
struct DragPosition_t922FC1F61C1B1A510241E4207B94AA1CD7E94660_marshaled_pinvoke
|
|
{
|
|
int32_t ___insertAtIndex_0;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___recycledItem_1;
|
|
int32_t ___dragAndDropPosition_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.ListViewDragger/DragPosition
|
|
struct DragPosition_t922FC1F61C1B1A510241E4207B94AA1CD7E94660_marshaled_com
|
|
{
|
|
int32_t ___insertAtIndex_0;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___recycledItem_1;
|
|
int32_t ___dragAndDropPosition_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlFactory
|
|
struct UxmlFactory_t73B2991499239881C5C824B63741E30FC900377F : public UxmlFactory_2_t47455F8804FE5FBBAAFFE466FA749DBCBBE6DFEE
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
struct PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8
|
|
{
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.StyleComplexSelector/PseudoStateData::state
|
|
int32_t ___state_0;
|
|
// System.Boolean UnityEngine.UIElements.StyleComplexSelector/PseudoStateData::negate
|
|
bool ___negate_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
struct PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_pinvoke
|
|
{
|
|
int32_t ___state_0;
|
|
int32_t ___negate_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
struct PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_com
|
|
{
|
|
int32_t ___state_0;
|
|
int32_t ___negate_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlFactory
|
|
struct UxmlFactory_t045B315994A585EA6A21E9B7C1662889F1A5CDB8 : public UxmlFactory_2_tEEF1268EAE5CA173703C394D675084E6A1ECB983
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::m_Owner
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B : public UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Name
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Name_1;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ViewDataKey
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ViewDataKey_2;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.PickingMode> UnityEngine.UIElements.VisualElement/UxmlTraits::m_PickingMode
|
|
UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3* ___m_PickingMode_3;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Tooltip
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Tooltip_4;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.UsageHints> UnityEngine.UIElements.VisualElement/UxmlTraits::m_UsageHints
|
|
UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4* ___m_UsageHints_5;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::<focusIndex>k__BackingField
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___U3CfocusIndexU3Ek__BackingField_6;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_TabIndex
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_TabIndex_7;
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::<focusable>k__BackingField
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* ___U3CfocusableU3Ek__BackingField_8;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Class
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Class_9;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ContentContainer
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ContentContainer_10;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Style
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Style_11;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>
|
|
struct Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF ____current_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
struct UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C : public TypedUxmlAttributeDescription_1_t13464B85D57627D4381BEA28451BC34601B415D5
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ComputedStyle
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C
|
|
{
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.InheritedData> UnityEngine.UIElements.ComputedStyle::inheritedData
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0;
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.LayoutData> UnityEngine.UIElements.ComputedStyle::layoutData
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1;
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.RareData> UnityEngine.UIElements.ComputedStyle::rareData
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2;
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.TransformData> UnityEngine.UIElements.ComputedStyle::transformData
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3;
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.TransitionData> UnityEngine.UIElements.ComputedStyle::transitionData
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4;
|
|
// UnityEngine.UIElements.StyleDataRef`1<UnityEngine.UIElements.VisualData> UnityEngine.UIElements.ComputedStyle::visualData
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5;
|
|
// UnityEngine.Yoga.YogaNode UnityEngine.UIElements.ComputedStyle::yogaNode
|
|
YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleSheets.StylePropertyValue> UnityEngine.UIElements.ComputedStyle::customProperties
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7;
|
|
// System.Int64 UnityEngine.UIElements.ComputedStyle::matchingRulesHash
|
|
int64_t ___matchingRulesHash_8;
|
|
// System.Single UnityEngine.UIElements.ComputedStyle::dpiScaling
|
|
float ___dpiScaling_9;
|
|
// UnityEngine.UIElements.ComputedTransitionProperty[] UnityEngine.UIElements.ComputedStyle::computedTransitions
|
|
ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82* ___computedTransitions_10;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.ComputedStyle
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_pinvoke
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5;
|
|
YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7;
|
|
int64_t ___matchingRulesHash_8;
|
|
float ___dpiScaling_9;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke* ___computedTransitions_10;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.ComputedStyle
|
|
struct ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C_marshaled_com
|
|
{
|
|
StyleDataRef_1_tBB9987581539847AE5CCA2EA2349E05CDC9127FA ___inheritedData_0;
|
|
StyleDataRef_1_t5330A6F4EAC0EAB88E3B9849D866AA23BB6BE5F4 ___layoutData_1;
|
|
StyleDataRef_1_tF773E9CBC6DC0FEB38DF95A6F3F47AC49AE045B3 ___rareData_2;
|
|
StyleDataRef_1_t1D59CCAB740BE6B330D5B5FDA9F67391800200B3 ___transformData_3;
|
|
StyleDataRef_1_t6A7B146DD79EDF7F42CD8CCF3E411B40AA729B8E ___transitionData_4;
|
|
StyleDataRef_1_t9CB834B90E638D92A3BE5123B0D3989697AA87FC ___visualData_5;
|
|
YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___yogaNode_6;
|
|
Dictionary_2_t645C7B1DAE2D839B52A5E387C165CE13D5465B00* ___customProperties_7;
|
|
int64_t ___matchingRulesHash_8;
|
|
float ___dpiScaling_9;
|
|
ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com* ___computedTransitions_10;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A
|
|
{
|
|
// UnityEngine.Rect UnityEngine.UIElements.CursorPositionStylePainterParameters::rect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
// System.String UnityEngine.UIElements.CursorPositionStylePainterParameters::text
|
|
String_t* ___text_1;
|
|
// UnityEngine.Font UnityEngine.UIElements.CursorPositionStylePainterParameters::font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
// System.Int32 UnityEngine.UIElements.CursorPositionStylePainterParameters::fontSize
|
|
int32_t ___fontSize_3;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.CursorPositionStylePainterParameters::fontStyle
|
|
int32_t ___fontStyle_4;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.CursorPositionStylePainterParameters::anchor
|
|
int32_t ___anchor_5;
|
|
// System.Single UnityEngine.UIElements.CursorPositionStylePainterParameters::wordWrapWidth
|
|
float ___wordWrapWidth_6;
|
|
// System.Boolean UnityEngine.UIElements.CursorPositionStylePainterParameters::richText
|
|
bool ___richText_7;
|
|
// System.Int32 UnityEngine.UIElements.CursorPositionStylePainterParameters::cursorIndex
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_pinvoke
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
char* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
int32_t ___fontSize_3;
|
|
int32_t ___fontStyle_4;
|
|
int32_t ___anchor_5;
|
|
float ___wordWrapWidth_6;
|
|
int32_t ___richText_7;
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_com
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
Il2CppChar* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
int32_t ___fontSize_3;
|
|
int32_t ___fontStyle_4;
|
|
int32_t ___anchor_5;
|
|
float ___wordWrapWidth_6;
|
|
int32_t ___richText_7;
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
Il2CppMethodPointer ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject* ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.IntPtr System.Delegate::interp_method
|
|
intptr_t ___interp_method_7;
|
|
// System.IntPtr System.Delegate::interp_invoke_impl
|
|
intptr_t ___interp_invoke_impl_8;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t* ___method_info_9;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t* ___original_method_info_10;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_12;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DragEventsProcessor
|
|
struct DragEventsProcessor_tC4594177C458D0DE91C0A4D1017CEF93DA69C9B6 : public RuntimeObject
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.DragEventsProcessor::m_IsRegistered
|
|
bool ___m_IsRegistered_0;
|
|
// UnityEngine.UIElements.DragEventsProcessor/DragState UnityEngine.UIElements.DragEventsProcessor::m_DragState
|
|
int32_t ___m_DragState_1;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.DragEventsProcessor::m_Start
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Start_2;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.DragEventsProcessor::m_Target
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_3;
|
|
// UnityEngine.UIElements.DefaultDragAndDropClient UnityEngine.UIElements.DragEventsProcessor::dragAndDropClient
|
|
DefaultDragAndDropClient_t22E34F0CC0902F8BB146736C13745F686C8E8BE3* ___dragAndDropClient_4;
|
|
};
|
|
|
|
// UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.Event::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C : public RuntimeObject
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase::<timestamp>k__BackingField
|
|
int64_t ___U3CtimestampU3Ek__BackingField_2;
|
|
// System.UInt64 UnityEngine.UIElements.EventBase::<eventId>k__BackingField
|
|
uint64_t ___U3CeventIdU3Ek__BackingField_3;
|
|
// System.UInt64 UnityEngine.UIElements.EventBase::<triggerEventId>k__BackingField
|
|
uint64_t ___U3CtriggerEventIdU3Ek__BackingField_4;
|
|
// UnityEngine.UIElements.EventBase/EventPropagation UnityEngine.UIElements.EventBase::<propagation>k__BackingField
|
|
int32_t ___U3CpropagationU3Ek__BackingField_5;
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.EventBase::m_Path
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___m_Path_6;
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus UnityEngine.UIElements.EventBase::<lifeCycleStatus>k__BackingField
|
|
int32_t ___U3ClifeCycleStatusU3Ek__BackingField_7;
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::<leafTarget>k__BackingField
|
|
RuntimeObject* ___U3CleafTargetU3Ek__BackingField_8;
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::m_Target
|
|
RuntimeObject* ___m_Target_9;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler> UnityEngine.UIElements.EventBase::<skipElements>k__BackingField
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* ___U3CskipElementsU3Ek__BackingField_10;
|
|
// UnityEngine.UIElements.PropagationPhase UnityEngine.UIElements.EventBase::<propagationPhase>k__BackingField
|
|
int32_t ___U3CpropagationPhaseU3Ek__BackingField_11;
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::m_CurrentTarget
|
|
RuntimeObject* ___m_CurrentTarget_12;
|
|
// UnityEngine.Event UnityEngine.UIElements.EventBase::m_ImguiEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_ImguiEvent_13;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.EventBase::<originalMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CoriginalMousePositionU3Ek__BackingField_14;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t* ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject* ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject* ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
|
// System.Int32 System.Exception::caught_in_unmanaged
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.Extents
|
|
struct Extents_t369FB2B84521A0229C2FA3D4C8592B14E07CEFE6
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.Extents::min
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___min_0;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.Extents::max
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___max_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseManipulator
|
|
struct MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D : public Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter> UnityEngine.UIElements.MouseManipulator::<activators>k__BackingField
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ___U3CactivatorsU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter UnityEngine.UIElements.MouseManipulator::m_currentActivator
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___m_currentActivator_2;
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelClearSettings
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.PanelClearSettings::clearDepthStencil
|
|
bool ___clearDepthStencil_0;
|
|
// System.Boolean UnityEngine.UIElements.PanelClearSettings::clearColor
|
|
bool ___clearColor_1;
|
|
// UnityEngine.Color UnityEngine.UIElements.PanelClearSettings::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.PanelClearSettings
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_pinvoke
|
|
{
|
|
int32_t ___clearDepthStencil_0;
|
|
int32_t ___clearColor_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.PanelClearSettings
|
|
struct PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7_marshaled_com
|
|
{
|
|
int32_t ___clearDepthStencil_0;
|
|
int32_t ___clearColor_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2;
|
|
};
|
|
|
|
// Unity.Profiling.ProfilerMarker
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
// System.IntPtr Unity.Profiling.ProfilerMarker::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prev
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::next
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::groupTransformAncestor
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::boneTransformAncestor
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prevDirty
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::nextDirty
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::hierarchyDepth
|
|
int32_t ___hierarchyDepth_6;
|
|
// UnityEngine.UIElements.UIR.RenderDataDirtyTypes UnityEngine.UIElements.UIR.RenderChainVEData::dirtiedValues
|
|
int32_t ___dirtiedValues_7;
|
|
// System.UInt32 UnityEngine.UIElements.UIR.RenderChainVEData::dirtyID
|
|
uint32_t ___dirtyID_8;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::firstCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::lastCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::firstClosingCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::lastClosingCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::isInChain
|
|
bool ___isInChain_13;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::isHierarchyHidden
|
|
bool ___isHierarchyHidden_14;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::localFlipsWinding
|
|
bool ___localFlipsWinding_15;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::localTransformScaleZero
|
|
bool ___localTransformScaleZero_16;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::worldFlipsWinding
|
|
bool ___worldFlipsWinding_17;
|
|
// UnityEngine.UIElements.UIR.Implementation.ClipMethod UnityEngine.UIElements.UIR.RenderChainVEData::clipMethod
|
|
int32_t ___clipMethod_18;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::childrenStencilRef
|
|
int32_t ___childrenStencilRef_19;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::childrenMaskDepth
|
|
int32_t ___childrenMaskDepth_20;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::disableNudging
|
|
bool ___disableNudging_21;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::usesLegacyText
|
|
bool ___usesLegacyText_22;
|
|
// UnityEngine.UIElements.UIR.MeshHandle UnityEngine.UIElements.UIR.RenderChainVEData::data
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
// UnityEngine.UIElements.UIR.MeshHandle UnityEngine.UIElements.UIR.RenderChainVEData::closingData
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.UIR.RenderChainVEData::verticesSpace
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::displacementUVStart
|
|
int32_t ___displacementUVStart_26;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::displacementUVEnd
|
|
int32_t ___displacementUVEnd_27;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::transformID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::clipRectID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::opacityID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::textCoreSettingsID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::backgroundColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderLeftColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderTopColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderRightColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderBottomColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::tintColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
// System.Single UnityEngine.UIElements.UIR.RenderChainVEData::compositeOpacity
|
|
float ___compositeOpacity_38;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.RenderChainVEData::backgroundColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prevText
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::nextText
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.RenderChainTextEntry> UnityEngine.UIElements.UIR.RenderChainVEData::textEntries
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
// UnityEngine.UIElements.UIR.BasicNode`1<UnityEngine.UIElements.UIR.TextureEntry> UnityEngine.UIElements.UIR.RenderChainVEData::textures
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
int32_t ___hierarchyDepth_6;
|
|
int32_t ___dirtiedValues_7;
|
|
uint32_t ___dirtyID_8;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
int32_t ___isInChain_13;
|
|
int32_t ___isHierarchyHidden_14;
|
|
int32_t ___localFlipsWinding_15;
|
|
int32_t ___localTransformScaleZero_16;
|
|
int32_t ___worldFlipsWinding_17;
|
|
int32_t ___clipMethod_18;
|
|
int32_t ___childrenStencilRef_19;
|
|
int32_t ___childrenMaskDepth_20;
|
|
int32_t ___disableNudging_21;
|
|
int32_t ___usesLegacyText_22;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
int32_t ___displacementUVStart_26;
|
|
int32_t ___displacementUVEnd_27;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
float ___compositeOpacity_38;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
int32_t ___hierarchyDepth_6;
|
|
int32_t ___dirtiedValues_7;
|
|
uint32_t ___dirtyID_8;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
int32_t ___isInChain_13;
|
|
int32_t ___isHierarchyHidden_14;
|
|
int32_t ___localFlipsWinding_15;
|
|
int32_t ___localTransformScaleZero_16;
|
|
int32_t ___worldFlipsWinding_17;
|
|
int32_t ___clipMethod_18;
|
|
int32_t ___childrenStencilRef_19;
|
|
int32_t ___childrenMaskDepth_20;
|
|
int32_t ___disableNudging_21;
|
|
int32_t ___usesLegacyText_22;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
int32_t ___displacementUVStart_26;
|
|
int32_t ___displacementUVEnd_27;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
float ___compositeOpacity_38;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleLength
|
|
struct StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8
|
|
{
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.StyleLength::m_Value
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleLength::m_Keyword
|
|
int32_t ___m_Keyword_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextCoreHandle
|
|
struct TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::<MeasuredSizes>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::<RoundedSizes>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CRoundedSizesU3Ek__BackingField_1;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::m_PreferredSize
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PreferredSize_2;
|
|
// System.Int32 UnityEngine.UIElements.TextCoreHandle::m_PreviousGenerationSettingsHash
|
|
int32_t ___m_PreviousGenerationSettingsHash_3;
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings UnityEngine.UIElements.TextCoreHandle::m_CurrentGenerationSettings
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___m_CurrentGenerationSettings_4;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::m_TextInfoMesh
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___m_TextInfoMesh_6;
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::isDirty
|
|
bool ___isDirty_8;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TextCoreHandle
|
|
struct TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_pinvoke
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CRoundedSizesU3Ek__BackingField_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PreferredSize_2;
|
|
int32_t ___m_PreviousGenerationSettingsHash_3;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___m_CurrentGenerationSettings_4;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___m_TextInfoMesh_6;
|
|
int32_t ___isDirty_8;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TextCoreHandle
|
|
struct TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_com
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CRoundedSizesU3Ek__BackingField_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PreferredSize_2;
|
|
int32_t ___m_PreviousGenerationSettingsHash_3;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___m_CurrentGenerationSettings_4;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___m_TextInfoMesh_6;
|
|
int32_t ___isDirty_8;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.TextCoreSettings
|
|
struct TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115
|
|
{
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::faceColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___faceColor_0;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::outlineColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___outlineColor_1;
|
|
// System.Single UnityEngine.UIElements.UIR.TextCoreSettings::outlineWidth
|
|
float ___outlineWidth_2;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.TextCoreSettings::underlayColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___underlayColor_3;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.UIR.TextCoreSettings::underlayOffset
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___underlayOffset_4;
|
|
// System.Single UnityEngine.UIElements.UIR.TextCoreSettings::underlaySoftness
|
|
float ___underlaySoftness_5;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings
|
|
struct TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2 : public RuntimeObject
|
|
{
|
|
// System.String UnityEngine.TextCore.Text.TextGenerationSettings::text
|
|
String_t* ___text_0;
|
|
// UnityEngine.Rect UnityEngine.TextCore.Text.TextGenerationSettings::screenRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___screenRect_1;
|
|
// UnityEngine.Vector4 UnityEngine.TextCore.Text.TextGenerationSettings::margins
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___margins_2;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::scale
|
|
float ___scale_3;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.TextCore.Text.TextGenerationSettings::fontAsset
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___fontAsset_4;
|
|
// UnityEngine.Material UnityEngine.TextCore.Text.TextGenerationSettings::material
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material_5;
|
|
// UnityEngine.TextCore.Text.SpriteAsset UnityEngine.TextCore.Text.TextGenerationSettings::spriteAsset
|
|
SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313* ___spriteAsset_6;
|
|
// UnityEngine.TextCore.Text.TextStyleSheet UnityEngine.TextCore.Text.TextGenerationSettings::styleSheet
|
|
TextStyleSheet_t86A0FA5523897465F371A2ABC17DFA3558C8D15E* ___styleSheet_7;
|
|
// UnityEngine.TextCore.Text.FontStyles UnityEngine.TextCore.Text.TextGenerationSettings::fontStyle
|
|
int32_t ___fontStyle_8;
|
|
// UnityEngine.TextCore.Text.TextSettings UnityEngine.TextCore.Text.TextGenerationSettings::textSettings
|
|
TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* ___textSettings_9;
|
|
// UnityEngine.TextCore.Text.TextAlignment UnityEngine.TextCore.Text.TextGenerationSettings::textAlignment
|
|
int32_t ___textAlignment_10;
|
|
// UnityEngine.TextCore.Text.TextOverflowMode UnityEngine.TextCore.Text.TextGenerationSettings::overflowMode
|
|
int32_t ___overflowMode_11;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::wordWrap
|
|
bool ___wordWrap_12;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::wordWrappingRatio
|
|
float ___wordWrappingRatio_13;
|
|
// UnityEngine.Color UnityEngine.TextCore.Text.TextGenerationSettings::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_14;
|
|
// UnityEngine.TextCore.Text.TextColorGradient UnityEngine.TextCore.Text.TextGenerationSettings::fontColorGradient
|
|
TextColorGradient_t22D94E441E8E8CD772B966C167E5C0AEB0919D70* ___fontColorGradient_15;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::tintSprites
|
|
bool ___tintSprites_16;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::overrideRichTextColors
|
|
bool ___overrideRichTextColors_17;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::fontSize
|
|
float ___fontSize_18;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::autoSize
|
|
bool ___autoSize_19;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::fontSizeMin
|
|
float ___fontSizeMin_20;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::fontSizeMax
|
|
float ___fontSizeMax_21;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::enableKerning
|
|
bool ___enableKerning_22;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::richText
|
|
bool ___richText_23;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::isRightToLeft
|
|
bool ___isRightToLeft_24;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::extraPadding
|
|
bool ___extraPadding_25;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::parseControlCharacters
|
|
bool ___parseControlCharacters_26;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::characterSpacing
|
|
float ___characterSpacing_27;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::wordSpacing
|
|
float ___wordSpacing_28;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::lineSpacing
|
|
float ___lineSpacing_29;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::paragraphSpacing
|
|
float ___paragraphSpacing_30;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::lineSpacingMax
|
|
float ___lineSpacingMax_31;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextGenerationSettings::maxVisibleCharacters
|
|
int32_t ___maxVisibleCharacters_32;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextGenerationSettings::maxVisibleWords
|
|
int32_t ___maxVisibleWords_33;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextGenerationSettings::maxVisibleLines
|
|
int32_t ___maxVisibleLines_34;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextGenerationSettings::firstVisibleCharacter
|
|
int32_t ___firstVisibleCharacter_35;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::useMaxVisibleDescender
|
|
bool ___useMaxVisibleDescender_36;
|
|
// UnityEngine.TextCore.Text.TextFontWeight UnityEngine.TextCore.Text.TextGenerationSettings::fontWeight
|
|
int32_t ___fontWeight_37;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextGenerationSettings::pageToDisplay
|
|
int32_t ___pageToDisplay_38;
|
|
// UnityEngine.TextCore.Text.TextureMapping UnityEngine.TextCore.Text.TextGenerationSettings::horizontalMapping
|
|
int32_t ___horizontalMapping_39;
|
|
// UnityEngine.TextCore.Text.TextureMapping UnityEngine.TextCore.Text.TextGenerationSettings::verticalMapping
|
|
int32_t ___verticalMapping_40;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::uvLineOffset
|
|
float ___uvLineOffset_41;
|
|
// UnityEngine.TextCore.Text.VertexSortingOrder UnityEngine.TextCore.Text.TextGenerationSettings::geometrySortingOrder
|
|
int32_t ___geometrySortingOrder_42;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextGenerationSettings::inverseYAxis
|
|
bool ___inverseYAxis_43;
|
|
// System.Single UnityEngine.TextCore.Text.TextGenerationSettings::charWidthMaxAdj
|
|
float ___charWidthMaxAdj_44;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextInfo
|
|
struct TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09 : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::characterCount
|
|
int32_t ___characterCount_2;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::spriteCount
|
|
int32_t ___spriteCount_3;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::spaceCount
|
|
int32_t ___spaceCount_4;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::wordCount
|
|
int32_t ___wordCount_5;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::linkCount
|
|
int32_t ___linkCount_6;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::lineCount
|
|
int32_t ___lineCount_7;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::pageCount
|
|
int32_t ___pageCount_8;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextInfo::materialCount
|
|
int32_t ___materialCount_9;
|
|
// UnityEngine.TextCore.Text.TextElementInfo[] UnityEngine.TextCore.Text.TextInfo::textElementInfo
|
|
TextElementInfoU5BU5D_tEC28C9B72883EE21AA798913497C69E179A15C4E* ___textElementInfo_10;
|
|
// UnityEngine.TextCore.Text.WordInfo[] UnityEngine.TextCore.Text.TextInfo::wordInfo
|
|
WordInfoU5BU5D_tAD74C9720883D7BB229A20FFAE9EFD2CF9963F7B* ___wordInfo_11;
|
|
// UnityEngine.TextCore.Text.LinkInfo[] UnityEngine.TextCore.Text.TextInfo::linkInfo
|
|
LinkInfoU5BU5D_tB7EB23E47AF29CCBEC884F9D0DB95BC97F62AE51* ___linkInfo_12;
|
|
// UnityEngine.TextCore.Text.LineInfo[] UnityEngine.TextCore.Text.TextInfo::lineInfo
|
|
LineInfoU5BU5D_t37598F2175B291797270D1161DC29B6296FB169D* ___lineInfo_13;
|
|
// UnityEngine.TextCore.Text.PageInfo[] UnityEngine.TextCore.Text.TextInfo::pageInfo
|
|
PageInfoU5BU5D_tFEA2CF88695491CFC2F2A2EF6BDCC56E52B0A6D4* ___pageInfo_14;
|
|
// UnityEngine.TextCore.Text.MeshInfo[] UnityEngine.TextCore.Text.TextInfo::meshInfo
|
|
MeshInfoU5BU5D_t3DF8B75BF4A213334EED197AD25E432212894AC6* ___meshInfo_15;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextInfo::isDirty
|
|
bool ___isDirty_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextNativeHandle
|
|
struct TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::<MeasuredSizes>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::<RoundedSizes>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CRoundedSizesU3Ek__BackingField_1;
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex> UnityEngine.UIElements.TextNativeHandle::textVertices
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 ___textVertices_2;
|
|
// System.Int32 UnityEngine.UIElements.TextNativeHandle::m_PreviousTextParamsHash
|
|
int32_t ___m_PreviousTextParamsHash_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062
|
|
{
|
|
// System.String UnityEngine.UIElements.TextNativeSettings::text
|
|
String_t* ___text_0;
|
|
// UnityEngine.Font UnityEngine.UIElements.TextNativeSettings::font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
// System.Int32 UnityEngine.UIElements.TextNativeSettings::size
|
|
int32_t ___size_2;
|
|
// System.Single UnityEngine.UIElements.TextNativeSettings::scaling
|
|
float ___scaling_3;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.TextNativeSettings::style
|
|
int32_t ___style_4;
|
|
// UnityEngine.Color UnityEngine.UIElements.TextNativeSettings::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.TextNativeSettings::anchor
|
|
int32_t ___anchor_6;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeSettings::wordWrap
|
|
bool ___wordWrap_7;
|
|
// System.Single UnityEngine.UIElements.TextNativeSettings::wordWrapWidth
|
|
float ___wordWrapWidth_8;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeSettings::richText
|
|
bool ___richText_9;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062_marshaled_pinvoke
|
|
{
|
|
char* ___text_0;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
int32_t ___size_2;
|
|
float ___scaling_3;
|
|
int32_t ___style_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
int32_t ___anchor_6;
|
|
int32_t ___wordWrap_7;
|
|
float ___wordWrapWidth_8;
|
|
int32_t ___richText_9;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062_marshaled_com
|
|
{
|
|
Il2CppChar* ___text_0;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
int32_t ___size_2;
|
|
float ___scaling_3;
|
|
int32_t ___style_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
int32_t ___anchor_6;
|
|
int32_t ___wordWrap_7;
|
|
float ___wordWrapWidth_8;
|
|
int32_t ___richText_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
struct TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextShadow::offset
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___offset_0;
|
|
// System.Single UnityEngine.UIElements.TextShadow::blurRadius
|
|
float ___blurRadius_1;
|
|
// UnityEngine.Color UnityEngine.UIElements.TextShadow::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_2;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextVertex
|
|
struct TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.TextCore.Text.TextVertex::position
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___position_0;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextVertex::uv
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___uv_1;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextVertex::uv2
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___uv2_2;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextVertex::uv4
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___uv4_3;
|
|
// UnityEngine.Color32 UnityEngine.TextCore.Text.TextVertex::color
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4 : public TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
struct UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF : public TypedUxmlAttributeDescription_1_tD8728D2AC8F9232D2E6A83B327DC0258F2CEEFA2
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlTraits
|
|
struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.BindableElement/UxmlTraits::m_PropertyPath
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_PropertyPath_12;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10
|
|
{
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.IMGUIContainer/GUIGlobals::matrix
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0;
|
|
// UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1;
|
|
// UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::contentColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2;
|
|
// UnityEngine.Color UnityEngine.UIElements.IMGUIContainer/GUIGlobals::backgroundColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer/GUIGlobals::enabled
|
|
bool ___enabled_4;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer/GUIGlobals::changed
|
|
bool ___changed_5;
|
|
// System.Int32 UnityEngine.UIElements.IMGUIContainer/GUIGlobals::displayIndex
|
|
int32_t ___displayIndex_6;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_pinvoke
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3;
|
|
int32_t ___enabled_4;
|
|
int32_t ___changed_5;
|
|
int32_t ___displayIndex_6;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
struct GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_com
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___matrix_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___contentColor_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_3;
|
|
int32_t ___enabled_4;
|
|
int32_t ___changed_5;
|
|
int32_t ___displayIndex_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
struct TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F
|
|
{
|
|
// UnityEngine.Rect UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::rect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
// System.String UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::text
|
|
String_t* ___text_1;
|
|
// UnityEngine.Font UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
// UnityEngine.UIElements.FontDefinition UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::fontDefinition
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___fontDefinition_3;
|
|
// System.Int32 UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::fontSize
|
|
int32_t ___fontSize_4;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::letterSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_5;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::wordSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_6;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::paragraphSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paragraphSpacing_7;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::fontStyle
|
|
int32_t ___fontStyle_8;
|
|
// UnityEngine.Color UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::fontColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___fontColor_9;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::anchor
|
|
int32_t ___anchor_10;
|
|
// System.Boolean UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::wordWrap
|
|
bool ___wordWrap_11;
|
|
// System.Single UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::wordWrapWidth
|
|
float ___wordWrapWidth_12;
|
|
// System.Boolean UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::richText
|
|
bool ___richText_13;
|
|
// UnityEngine.Color UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::playmodeTintColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___playmodeTintColor_14;
|
|
// UnityEngine.UIElements.TextOverflow UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::textOverflow
|
|
int32_t ___textOverflow_15;
|
|
// UnityEngine.UIElements.TextOverflowPosition UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::textOverflowPosition
|
|
int32_t ___textOverflowPosition_16;
|
|
// UnityEngine.UIElements.OverflowInternal UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::overflow
|
|
int32_t ___overflow_17;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::panel
|
|
RuntimeObject* ___panel_18;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
struct TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F_marshaled_pinvoke
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
char* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke ___fontDefinition_3;
|
|
int32_t ___fontSize_4;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_5;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_6;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paragraphSpacing_7;
|
|
int32_t ___fontStyle_8;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___fontColor_9;
|
|
int32_t ___anchor_10;
|
|
int32_t ___wordWrap_11;
|
|
float ___wordWrapWidth_12;
|
|
int32_t ___richText_13;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___playmodeTintColor_14;
|
|
int32_t ___textOverflow_15;
|
|
int32_t ___textOverflowPosition_16;
|
|
int32_t ___overflow_17;
|
|
RuntimeObject* ___panel_18;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
struct TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F_marshaled_com
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
Il2CppChar* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com ___fontDefinition_3;
|
|
int32_t ___fontSize_4;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_5;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_6;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paragraphSpacing_7;
|
|
int32_t ___fontStyle_8;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___fontColor_9;
|
|
int32_t ___anchor_10;
|
|
int32_t ___wordWrap_11;
|
|
float ___wordWrapWidth_12;
|
|
int32_t ___richText_13;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___playmodeTintColor_14;
|
|
int32_t ___textOverflow_15;
|
|
int32_t ___textOverflowPosition_16;
|
|
int32_t ___overflow_17;
|
|
RuntimeObject* ___panel_18;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
struct PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerDeviceState/PointerLocation::<Position>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CPositionU3Ek__BackingField_0;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PointerDeviceState/PointerLocation::<Panel>k__BackingField
|
|
RuntimeObject* ___U3CPanelU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.PointerDeviceState/LocationFlag UnityEngine.UIElements.PointerDeviceState/PointerLocation::<Flags>k__BackingField
|
|
int32_t ___U3CFlagsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
struct PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_pinvoke
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CPositionU3Ek__BackingField_0;
|
|
RuntimeObject* ___U3CPanelU3Ek__BackingField_1;
|
|
int32_t ___U3CFlagsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
struct PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_com
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CPositionU3Ek__BackingField_0;
|
|
RuntimeObject* ___U3CPanelU3Ek__BackingField_1;
|
|
int32_t ___U3CFlagsU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits
|
|
struct UxmlTraits_tD94069F1DEA132ACB4C340B51942037468E26A9D : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B
|
|
{
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits::m_FixedPaneIndex
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_FixedPaneIndex_12;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits::m_FixedPaneInitialDimension
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_FixedPaneInitialDimension_13;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation> UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits::m_Orientation
|
|
UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* ___m_Orientation_14;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
struct EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ClickEvent>
|
|
struct EventBase_1_t8C644CD99134CBBFDB84260302CD495995488415 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ContextClickEvent>
|
|
struct EventBase_1_t49DA49F09B95959C5E19486DC83822D8DAFB72CB : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
struct EventBase_1_tFF13D0B80B4CBC6B9B6101B69E3A38EDB7D7A53E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
struct EventBase_1_t936FBB91106E2CC02C8E88DBC1573C1C892035C3 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
struct EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct EventBase_1_t01A865DB5F1B17F837A1670705B7579323F76216 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct EventBase_1_tB1ABC1F6948DC48F8C711F9C36E4D0DC9F158F05 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>
|
|
struct EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>
|
|
struct EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.KeyUpEvent>
|
|
struct EventBase_1_t056EE42AB4A3D8793585737CC6974771FF692BED : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
struct EventBase_1_t9BC479C69F364D79EBE45165C2534831F440B61D : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct EventBase_1_t1218DA3104C9EAD7C32A1D5B975FD26D77F76928 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
struct EventBase_1_t3CD372C353265503211D0A03178379DA3D8C7086 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
struct EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
struct EventBase_1_t17411A14F7A082E3C14EEADDE1585D1A60254BC3 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
struct EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseOutEvent>
|
|
struct EventBase_1_t96FB7E88831163AE4AFA79A213CB7BBA6200DD94 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseOverEvent>
|
|
struct EventBase_1_t96C244E548BB513A57632B73B292C7E7C1CC404D : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
struct EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
struct EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
struct EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
struct EventBase_1_t3003145BEE9FE8F5AE8C9E13FC4C7D6453201D80 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<System.Object>
|
|
struct EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
struct EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
struct EventBase_1_t1D0AAEBCAF4B558F0F7FDDA7060BF68A5C648C10 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
struct EventBase_1_t6C339E78DC90E37A13879F0EF1449D7E9412953C : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerOutEvent>
|
|
struct EventBase_1_tD501482DA0C705071241B3F48D0782E9B5188854 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerOverEvent>
|
|
struct EventBase_1_tB0C64467E85CE95C90E60DB69E1D0B004FFB1A33 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
struct EventBase_1_tC17F382C71F6951079D81E77988E6FEE8996FC5C : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>
|
|
struct EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
struct EventBase_1_tF0143A54530AEDF93FEB87C6CBA6FF7FB02BF1A1 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
struct EventBase_1_t19FCA0E562C449FA0A2FA0053E97568D4B389A56 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
struct EventBase_1_t4F23137036FDF513830C85C5F8B2BF3A0E146A0F : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
struct EventBase_1_t90E610023DACA9D4D888599D2E1B536299CE9098 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
struct EventBase_1_tCA889004548518C3A54FDC180D2509F248C1E221 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.WheelEvent>
|
|
struct EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseField`1/UxmlTraits<System.Int32>
|
|
struct UxmlTraits_t50449A906982002DEB63914C9EEB0CDD7C7842AE : public UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.BaseField`1/UxmlTraits::m_Label
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Label_13;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303 : public RuntimeObject
|
|
{
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel> UnityEngine.UIElements.BaseVisualElementPanel::panelDisposed
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelDisposed_0;
|
|
// System.Single UnityEngine.UIElements.BaseVisualElementPanel::m_Scale
|
|
float ___m_Scale_1;
|
|
// UnityEngine.Yoga.YogaConfig UnityEngine.UIElements.BaseVisualElementPanel::yogaConfig
|
|
YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345* ___yogaConfig_2;
|
|
// System.Single UnityEngine.UIElements.BaseVisualElementPanel::m_PixelsPerPoint
|
|
float ___m_PixelsPerPoint_3;
|
|
// UnityEngine.UIElements.PanelClearSettings UnityEngine.UIElements.BaseVisualElementPanel::<clearSettings>k__BackingField
|
|
PanelClearSettings_tA3D8EE9A4864781CE3E5FED5225C6FB37ED66EE7 ___U3CclearSettingsU3Ek__BackingField_4;
|
|
// System.Boolean UnityEngine.UIElements.BaseVisualElementPanel::<duringLayoutPhase>k__BackingField
|
|
bool ___U3CduringLayoutPhaseU3Ek__BackingField_5;
|
|
// UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::<repaintData>k__BackingField
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* ___U3CrepaintDataU3Ek__BackingField_6;
|
|
// UnityEngine.UIElements.ICursorManager UnityEngine.UIElements.BaseVisualElementPanel::<cursorManager>k__BackingField
|
|
RuntimeObject* ___U3CcursorManagerU3Ek__BackingField_7;
|
|
// UnityEngine.UIElements.ContextualMenuManager UnityEngine.UIElements.BaseVisualElementPanel::<contextualMenuManager>k__BackingField
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* ___U3CcontextualMenuManagerU3Ek__BackingField_8;
|
|
// System.Boolean UnityEngine.UIElements.BaseVisualElementPanel::<disposed>k__BackingField
|
|
bool ___U3CdisposedU3Ek__BackingField_9;
|
|
// UnityEngine.UIElements.ElementUnderPointer UnityEngine.UIElements.BaseVisualElementPanel::m_TopElementUnderPointers
|
|
ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* ___m_TopElementUnderPointers_10;
|
|
// System.Action UnityEngine.UIElements.BaseVisualElementPanel::standardShaderChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___standardShaderChanged_11;
|
|
// System.Action UnityEngine.UIElements.BaseVisualElementPanel::standardWorldSpaceShaderChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___standardWorldSpaceShaderChanged_12;
|
|
// System.Action UnityEngine.UIElements.BaseVisualElementPanel::atlasChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___atlasChanged_13;
|
|
// System.Action`1<UnityEngine.Material> UnityEngine.UIElements.BaseVisualElementPanel::updateMaterial
|
|
Action_1_t996DFD52B4BDA6CBE8058C13167C4D2B8C612CAA* ___updateMaterial_14;
|
|
// UnityEngine.UIElements.HierarchyEvent UnityEngine.UIElements.BaseVisualElementPanel::hierarchyChanged
|
|
HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705* ___hierarchyChanged_15;
|
|
// System.Action`1<UnityEngine.UIElements.IPanel> UnityEngine.UIElements.BaseVisualElementPanel::beforeUpdate
|
|
Action_1_tE55F8AC1EEC45D0C976E56B2950D65EC814C06E6* ___beforeUpdate_16;
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
// UnityEngine.Font/FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
|
|
FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* ___m_FontTextureRebuildCallback_5;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.LineInfo
|
|
struct LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5
|
|
{
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::controlCharacterCount
|
|
int32_t ___controlCharacterCount_0;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::characterCount
|
|
int32_t ___characterCount_1;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::visibleCharacterCount
|
|
int32_t ___visibleCharacterCount_2;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::spaceCount
|
|
int32_t ___spaceCount_3;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::visibleSpaceCount
|
|
int32_t ___visibleSpaceCount_4;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::wordCount
|
|
int32_t ___wordCount_5;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::firstCharacterIndex
|
|
int32_t ___firstCharacterIndex_6;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::firstVisibleCharacterIndex
|
|
int32_t ___firstVisibleCharacterIndex_7;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::lastCharacterIndex
|
|
int32_t ___lastCharacterIndex_8;
|
|
// System.Int32 UnityEngine.TextCore.Text.LineInfo::lastVisibleCharacterIndex
|
|
int32_t ___lastVisibleCharacterIndex_9;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::length
|
|
float ___length_10;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::lineHeight
|
|
float ___lineHeight_11;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::ascender
|
|
float ___ascender_12;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::baseline
|
|
float ___baseline_13;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::descender
|
|
float ___descender_14;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::maxAdvance
|
|
float ___maxAdvance_15;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::width
|
|
float ___width_16;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::marginLeft
|
|
float ___marginLeft_17;
|
|
// System.Single UnityEngine.TextCore.Text.LineInfo::marginRight
|
|
float ___marginRight_18;
|
|
// UnityEngine.TextCore.Text.TextAlignment UnityEngine.TextCore.Text.LineInfo::alignment
|
|
int32_t ___alignment_19;
|
|
// UnityEngine.TextCore.Text.Extents UnityEngine.TextCore.Text.LineInfo::lineExtents
|
|
Extents_t369FB2B84521A0229C2FA3D4C8592B14E07CEFE6 ___lineExtents_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ListViewDragger
|
|
struct ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD : public DragEventsProcessor_tC4594177C458D0DE91C0A4D1017CEF93DA69C9B6
|
|
{
|
|
// UnityEngine.UIElements.ListViewDragger/DragPosition UnityEngine.UIElements.ListViewDragger::m_LastDragPosition
|
|
DragPosition_t922FC1F61C1B1A510241E4207B94AA1CD7E94660 ___m_LastDragPosition_5;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ListViewDragger::m_DragHoverBar
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_DragHoverBar_6;
|
|
// UnityEngine.UIElements.ICollectionDragAndDropController UnityEngine.UIElements.ListViewDragger::<dragAndDropController>k__BackingField
|
|
RuntimeObject* ___U3CdragAndDropControllerU3Ek__BackingField_7;
|
|
};
|
|
|
|
// UnityEngine.Material
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_13;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_13;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerManipulator
|
|
struct PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72 : public MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerManipulator::m_CurrentPointerId
|
|
int32_t ___m_CurrentPointerId_3;
|
|
};
|
|
|
|
// UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextElementInfo
|
|
struct TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976
|
|
{
|
|
// System.Char UnityEngine.TextCore.Text.TextElementInfo::character
|
|
Il2CppChar ___character_0;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::index
|
|
int32_t ___index_1;
|
|
// UnityEngine.TextCore.Text.TextElementType UnityEngine.TextCore.Text.TextElementInfo::elementType
|
|
uint8_t ___elementType_2;
|
|
// UnityEngine.TextCore.Text.TextElement UnityEngine.TextCore.Text.TextElementInfo::textElement
|
|
TextElement_tCEF567A8810788262275B39DC39CBA6EBE7472DA* ___textElement_3;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.TextCore.Text.TextElementInfo::fontAsset
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___fontAsset_4;
|
|
// UnityEngine.TextCore.Text.SpriteAsset UnityEngine.TextCore.Text.TextElementInfo::spriteAsset
|
|
SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313* ___spriteAsset_5;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::spriteIndex
|
|
int32_t ___spriteIndex_6;
|
|
// UnityEngine.Material UnityEngine.TextCore.Text.TextElementInfo::material
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material_7;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::materialReferenceIndex
|
|
int32_t ___materialReferenceIndex_8;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextElementInfo::isUsingAlternateTypeface
|
|
bool ___isUsingAlternateTypeface_9;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::pointSize
|
|
float ___pointSize_10;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::lineNumber
|
|
int32_t ___lineNumber_11;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::pageNumber
|
|
int32_t ___pageNumber_12;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextElementInfo::vertexIndex
|
|
int32_t ___vertexIndex_13;
|
|
// UnityEngine.TextCore.Text.TextVertex UnityEngine.TextCore.Text.TextElementInfo::vertexTopLeft
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopLeft_14;
|
|
// UnityEngine.TextCore.Text.TextVertex UnityEngine.TextCore.Text.TextElementInfo::vertexBottomLeft
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomLeft_15;
|
|
// UnityEngine.TextCore.Text.TextVertex UnityEngine.TextCore.Text.TextElementInfo::vertexTopRight
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopRight_16;
|
|
// UnityEngine.TextCore.Text.TextVertex UnityEngine.TextCore.Text.TextElementInfo::vertexBottomRight
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomRight_17;
|
|
// UnityEngine.Vector3 UnityEngine.TextCore.Text.TextElementInfo::topLeft
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topLeft_18;
|
|
// UnityEngine.Vector3 UnityEngine.TextCore.Text.TextElementInfo::bottomLeft
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomLeft_19;
|
|
// UnityEngine.Vector3 UnityEngine.TextCore.Text.TextElementInfo::topRight
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topRight_20;
|
|
// UnityEngine.Vector3 UnityEngine.TextCore.Text.TextElementInfo::bottomRight
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomRight_21;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::origin
|
|
float ___origin_22;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::ascender
|
|
float ___ascender_23;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::baseLine
|
|
float ___baseLine_24;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::descender
|
|
float ___descender_25;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::xAdvance
|
|
float ___xAdvance_26;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::aspectRatio
|
|
float ___aspectRatio_27;
|
|
// System.Single UnityEngine.TextCore.Text.TextElementInfo::scale
|
|
float ___scale_28;
|
|
// UnityEngine.Color32 UnityEngine.TextCore.Text.TextElementInfo::color
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color_29;
|
|
// UnityEngine.Color32 UnityEngine.TextCore.Text.TextElementInfo::underlineColor
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor_30;
|
|
// UnityEngine.Color32 UnityEngine.TextCore.Text.TextElementInfo::strikethroughColor
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor_31;
|
|
// UnityEngine.Color32 UnityEngine.TextCore.Text.TextElementInfo::highlightColor
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___highlightColor_32;
|
|
// UnityEngine.TextCore.Text.FontStyles UnityEngine.TextCore.Text.TextElementInfo::style
|
|
int32_t ___style_33;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextElementInfo::isVisible
|
|
bool ___isVisible_34;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.Text.TextElementInfo
|
|
struct TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976_marshaled_pinvoke
|
|
{
|
|
uint8_t ___character_0;
|
|
int32_t ___index_1;
|
|
uint8_t ___elementType_2;
|
|
TextElement_tCEF567A8810788262275B39DC39CBA6EBE7472DA* ___textElement_3;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___fontAsset_4;
|
|
SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313* ___spriteAsset_5;
|
|
int32_t ___spriteIndex_6;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material_7;
|
|
int32_t ___materialReferenceIndex_8;
|
|
int32_t ___isUsingAlternateTypeface_9;
|
|
float ___pointSize_10;
|
|
int32_t ___lineNumber_11;
|
|
int32_t ___pageNumber_12;
|
|
int32_t ___vertexIndex_13;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopLeft_14;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomLeft_15;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopRight_16;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomRight_17;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topLeft_18;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomLeft_19;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topRight_20;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomRight_21;
|
|
float ___origin_22;
|
|
float ___ascender_23;
|
|
float ___baseLine_24;
|
|
float ___descender_25;
|
|
float ___xAdvance_26;
|
|
float ___aspectRatio_27;
|
|
float ___scale_28;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color_29;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor_30;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor_31;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___highlightColor_32;
|
|
int32_t ___style_33;
|
|
int32_t ___isVisible_34;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.TextCore.Text.TextElementInfo
|
|
struct TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976_marshaled_com
|
|
{
|
|
uint8_t ___character_0;
|
|
int32_t ___index_1;
|
|
uint8_t ___elementType_2;
|
|
TextElement_tCEF567A8810788262275B39DC39CBA6EBE7472DA* ___textElement_3;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___fontAsset_4;
|
|
SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313* ___spriteAsset_5;
|
|
int32_t ___spriteIndex_6;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material_7;
|
|
int32_t ___materialReferenceIndex_8;
|
|
int32_t ___isUsingAlternateTypeface_9;
|
|
float ___pointSize_10;
|
|
int32_t ___lineNumber_11;
|
|
int32_t ___pageNumber_12;
|
|
int32_t ___vertexIndex_13;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopLeft_14;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomLeft_15;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexTopRight_16;
|
|
TextVertex_tF030A16DC67EAF3F6C9C9C0564D4B88758B173A9 ___vertexBottomRight_17;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topLeft_18;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomLeft_19;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___topRight_20;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___bottomRight_21;
|
|
float ___origin_22;
|
|
float ___ascender_23;
|
|
float ___baseLine_24;
|
|
float ___descender_25;
|
|
float ___xAdvance_26;
|
|
float ___aspectRatio_27;
|
|
float ___scale_28;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___color_29;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___underlineColor_30;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___strikethroughColor_31;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___highlightColor_32;
|
|
int32_t ___style_33;
|
|
int32_t ___isVisible_34;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115 : public Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<UnityEngine.UIElements.IStylePropertyAnimations.runningAnimationCount>k__BackingField
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_runningAnimationCountU3Ek__BackingField_7;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<UnityEngine.UIElements.IStylePropertyAnimations.completedAnimationCount>k__BackingField
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_completedAnimationCountU3Ek__BackingField_8;
|
|
// System.String UnityEngine.UIElements.VisualElement::m_Name
|
|
String_t* ___m_Name_13;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElement::m_ClassList
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_ClassList_14;
|
|
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.PropertyName,System.Object>> UnityEngine.UIElements.VisualElement::m_PropertyBag
|
|
List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260* ___m_PropertyBag_15;
|
|
// UnityEngine.UIElements.VisualElementFlags UnityEngine.UIElements.VisualElement::m_Flags
|
|
int32_t ___m_Flags_16;
|
|
// System.String UnityEngine.UIElements.VisualElement::m_ViewDataKey
|
|
String_t* ___m_ViewDataKey_17;
|
|
// UnityEngine.UIElements.RenderHints UnityEngine.UIElements.VisualElement::m_RenderHints
|
|
int32_t ___m_RenderHints_18;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::lastLayout
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastLayout_19;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::lastPseudoPadding
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastPseudoPadding_20;
|
|
// UnityEngine.UIElements.UIR.RenderChainVEData UnityEngine.UIElements.VisualElement::renderChainData
|
|
RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847 ___renderChainData_21;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_Layout
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_Layout_22;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_BoundingBox
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_BoundingBox_23;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldBoundingBox
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldBoundingBox_24;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.VisualElement::m_WorldTransformCache
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformCache_25;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.VisualElement::m_WorldTransformInverseCache
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformInverseCache_26;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldClip
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldClip_27;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldClipMinusGroup
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldClipMinusGroup_28;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::m_WorldClipIsInfinite
|
|
bool ___m_WorldClipIsInfinite_29;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::triggerPseudoMask
|
|
int32_t ___triggerPseudoMask_31;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::dependencyPseudoMask
|
|
int32_t ___dependencyPseudoMask_32;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::m_PseudoStates
|
|
int32_t ___m_PseudoStates_33;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<containedPointerIds>k__BackingField
|
|
int32_t ___U3CcontainedPointerIdsU3Ek__BackingField_34;
|
|
// UnityEngine.UIElements.PickingMode UnityEngine.UIElements.VisualElement::<pickingMode>k__BackingField
|
|
int32_t ___U3CpickingModeU3Ek__BackingField_35;
|
|
// UnityEngine.Yoga.YogaNode UnityEngine.UIElements.VisualElement::<yogaNode>k__BackingField
|
|
YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___U3CyogaNodeU3Ek__BackingField_36;
|
|
// UnityEngine.UIElements.ComputedStyle UnityEngine.UIElements.VisualElement::m_Style
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C ___m_Style_37;
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.VisualElement::variableContext
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___variableContext_38;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::inheritedStylesHash
|
|
int32_t ___inheritedStylesHash_39;
|
|
// System.UInt32 UnityEngine.UIElements.VisualElement::controlid
|
|
uint32_t ___controlid_40;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::imguiContainerDescendantCount
|
|
int32_t ___imguiContainerDescendantCount_41;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<enabledSelf>k__BackingField
|
|
bool ___U3CenabledSelfU3Ek__BackingField_42;
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext> UnityEngine.UIElements.VisualElement::<generateVisualContent>k__BackingField
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___U3CgenerateVisualContentU3Ek__BackingField_43;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElement::k_GenerateVisualContentMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateVisualContentMarker_44;
|
|
// UnityEngine.UIElements.VisualElement/RenderTargetMode UnityEngine.UIElements.VisualElement::m_SubRenderTargetMode
|
|
int32_t ___m_SubRenderTargetMode_45;
|
|
// UnityEngine.Material UnityEngine.UIElements.VisualElement::m_defaultMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_defaultMaterial_47;
|
|
// UnityEngine.UIElements.VisualElement/TypeData UnityEngine.UIElements.VisualElement::m_TypeData
|
|
TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* ___m_TypeData_49;
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy UnityEngine.UIElements.VisualElement::<hierarchy>k__BackingField
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 ___U3ChierarchyU3Ek__BackingField_51;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<isRootVisualContainer>k__BackingField
|
|
bool ___U3CisRootVisualContainerU3Ek__BackingField_52;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<cacheAsBitmap>k__BackingField
|
|
bool ___U3CcacheAsBitmapU3Ek__BackingField_53;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::m_PhysicalParent
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PhysicalParent_54;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::m_LogicalParent
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_LogicalParent_55;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualElement::m_Children
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___m_Children_57;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualElement::<elementPanel>k__BackingField
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___U3CelementPanelU3Ek__BackingField_58;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.VisualElement::m_VisualTreeAssetSource
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___m_VisualTreeAssetSource_59;
|
|
// UnityEngine.UIElements.InlineStyleAccess UnityEngine.UIElements.VisualElement::inlineStyleAccess
|
|
InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165* ___inlineStyleAccess_61;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.VisualElement::styleSheetList
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___styleSheetList_62;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate> UnityEngine.UIElements.VisualElement::m_RunningAnimations
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___m_RunningAnimations_64;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
struct Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB
|
|
{
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName> UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::m_Enumerator
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___m_Enumerator_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
struct Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_pinvoke
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___m_Enumerator_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
struct Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_com
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___m_Enumerator_0;
|
|
};
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>
|
|
struct Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>
|
|
struct Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<System.Object>
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<System.Single>
|
|
struct Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
struct Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>
|
|
struct Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>
|
|
struct BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A : public UxmlTraits_t50449A906982002DEB63914C9EEB0CDD7C7842AE
|
|
{
|
|
// TValueUxmlAttributeType UnityEngine.UIElements.BaseFieldTraits`2::m_Value
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_Value_14;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
struct CommandEventBase_1_tC61C876047FB1C3B000DE161F2EA5CE6EAF19952 : public EventBase_1_t936FBB91106E2CC02C8E88DBC1573C1C892035C3
|
|
{
|
|
// System.String UnityEngine.UIElements.CommandEventBase`1::m_CommandName
|
|
String_t* ___m_CommandName_18;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
struct CommandEventBase_1_tDDFD63770D737B793DE4F5DA22FBA4462B9B229A : public EventBase_1_tCA889004548518C3A54FDC180D2509F248C1E221
|
|
{
|
|
// System.String UnityEngine.UIElements.CommandEventBase`1::m_CommandName
|
|
String_t* ___m_CommandName_18;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
struct FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94 : public EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A : public EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022 : public EventBase_1_t01A865DB5F1B17F837A1670705B7579323F76216
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2 : public EventBase_1_tB1ABC1F6948DC48F8C711F9C36E4D0DC9F158F05
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
struct FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8 : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// System.Func`1<System.Int32Enum>
|
|
struct Func_1_tA8F91C23675D323D5C9C1F3D2FAA8008CB1EF551 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<UnityEngine.SystemLanguage>
|
|
struct Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
struct Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
struct Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<System.Object,System.Object>
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<System.String,UnityEngine.Object>
|
|
struct Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
struct Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA : public EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1::<character>k__BackingField
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField_19;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1::<keyCode>k__BackingField
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyUpEvent>
|
|
struct KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD : public EventBase_1_t056EE42AB4A3D8793585737CC6974771FF692BED
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1::<character>k__BackingField
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField_19;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1::<keyCode>k__BackingField
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
struct KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1::<character>k__BackingField
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField_19;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1::<keyCode>k__BackingField
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextClickEvent>
|
|
struct MouseEventBase_1_t5ED96675A2B42789E87132B5B4AE0102E645AA9B : public EventBase_1_t49DA49F09B95959C5E19486DC83822D8DAFB72CB
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
struct MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E : public EventBase_1_tFF13D0B80B4CBC6B9B6101B69E3A38EDB7D7A53E
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF : public EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
struct MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087 : public EventBase_1_t3CD372C353265503211D0A03178379DA3D8C7086
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
struct MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8 : public EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
struct MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303 : public EventBase_1_t17411A14F7A082E3C14EEADDE1585D1A60254BC3
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
struct MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6 : public EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067 : public EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>
|
|
struct MouseEventBase_1_t8CFFFFBC092D11B6F52D25C2E177074C0CC59945 : public EventBase_1_t96FB7E88831163AE4AFA79A213CB7BBA6200DD94
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>
|
|
struct MouseEventBase_1_t953A98054E7AFA8FD043BFDA1CFBB6160E06EBC2 : public EventBase_1_t96C244E548BB513A57632B73B292C7E7C1CC404D
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83 : public EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<System.Object>
|
|
struct MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228 : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>
|
|
struct MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8 : public EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<localMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClocalMousePositionU3Ek__BackingField_20;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1::<mouseDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmouseDeltaU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_22;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_24;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_triggeredByOSU3Ek__BackingField_25;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.recomputeTopElementUnderMouse>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IMouseEventInternal_recomputeTopElementUnderMouseU3Ek__BackingField_26;
|
|
// UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.MouseEventBase`1::<UnityEngine.UIElements.IMouseEventInternal.sourcePointerEvent>k__BackingField
|
|
RuntimeObject* ___U3CUnityEngine_UIElements_IMouseEventInternal_sourcePointerEventU3Ek__BackingField_27;
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
struct NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022 : public EventBase_1_t06692607D03E5B5F275B33C5EACCE075D1C2AB05
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
struct NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31 : public EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
struct NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87 : public EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
struct NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939 : public EventBase_1_t3003145BEE9FE8F5AE8C9E13FC4C7D6453201D80
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3 : public EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22
|
|
{
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<originPanel>k__BackingField
|
|
RuntimeObject* ___U3CoriginPanelU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<destinationPanel>k__BackingField
|
|
RuntimeObject* ___U3CdestinationPanelU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39 : public EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6
|
|
{
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<originPanel>k__BackingField
|
|
RuntimeObject* ___U3CoriginPanelU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<destinationPanel>k__BackingField
|
|
RuntimeObject* ___U3CdestinationPanelU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>
|
|
struct PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2 : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<originPanel>k__BackingField
|
|
RuntimeObject* ___U3CoriginPanelU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1::<destinationPanel>k__BackingField
|
|
RuntimeObject* ___U3CdestinationPanelU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
struct PointerCaptureEventBase_1_t38FF965EA39837B57FA4081A1FE87180C56A8426 : public EventBase_1_t9BC479C69F364D79EBE45165C2534831F440B61D
|
|
{
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerCaptureEventBase`1::<relatedTarget>k__BackingField
|
|
RuntimeObject* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct PointerCaptureEventBase_1_t19C92EDCA213A9395CF90DC2022EF67F080FBB55 : public EventBase_1_t1218DA3104C9EAD7C32A1D5B975FD26D77F76928
|
|
{
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerCaptureEventBase`1::<relatedTarget>k__BackingField
|
|
RuntimeObject* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
struct PointerCaptureEventBase_1_t126554CD81D838778F0E7A459970847AD90E364D : public EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034
|
|
{
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerCaptureEventBase`1::<relatedTarget>k__BackingField
|
|
RuntimeObject* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F : public EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493
|
|
{
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerCaptureEventBase`1::<relatedTarget>k__BackingField
|
|
RuntimeObject* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>
|
|
struct PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124 : public EventBase_1_t8C644CD99134CBBFDB84260302CD495995488415
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<System.Object>
|
|
struct PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7 : public EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9 : public EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
struct PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6 : public EventBase_1_t1D0AAEBCAF4B558F0F7FDDA7060BF68A5C648C10
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
struct PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE : public EventBase_1_t6C339E78DC90E37A13879F0EF1449D7E9412953C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B : public EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>
|
|
struct PointerEventBase_1_t33EFDCA6FF8E804893DB7207C86CCB0F444D18CB : public EventBase_1_tD501482DA0C705071241B3F48D0782E9B5188854
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>
|
|
struct PointerEventBase_1_t793D0418D3A027331899231F3AF583DE8B4791CC : public EventBase_1_tB0C64467E85CE95C90E60DB69E1D0B004FFB1A33
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
struct PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A : public EventBase_1_tC17F382C71F6951079D81E77988E6FEE8996FC5C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496 : public EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1::<pointerType>k__BackingField
|
|
String_t* ___U3CpointerTypeU3Ek__BackingField_19;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<isPrimary>k__BackingField
|
|
bool ___U3CisPrimaryU3Ek__BackingField_20;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_21;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<pressedButtons>k__BackingField
|
|
int32_t ___U3CpressedButtonsU3Ek__BackingField_22;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<position>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CpositionU3Ek__BackingField_23;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<localPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3ClocalPositionU3Ek__BackingField_24;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1::<deltaPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaPositionU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<deltaTime>k__BackingField
|
|
float ___U3CdeltaTimeU3Ek__BackingField_26;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_28;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_29;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_30;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_31;
|
|
// System.Single UnityEngine.UIElements.PointerEventBase`1::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_32;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_33;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerEventBase`1::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_34;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.PointerEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_35;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.triggeredByOS>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_triggeredByOSU3Ek__BackingField_36;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1::<UnityEngine.UIElements.IPointerEventInternal.recomputeTopElementUnderPointer>k__BackingField
|
|
bool ___U3CUnityEngine_UIElements_IPointerEventInternal_recomputeTopElementUnderPointerU3Ek__BackingField_37;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
struct TransitionEventBase_1_t0AAD21652882D2FCF19FCF0C4347DC161E413130 : public EventBase_1_tF0143A54530AEDF93FEB87C6CBA6FF7FB02BF1A1
|
|
{
|
|
// UnityEngine.UIElements.StylePropertyNameCollection UnityEngine.UIElements.TransitionEventBase`1::<stylePropertyNames>k__BackingField
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312 ___U3CstylePropertyNamesU3Ek__BackingField_18;
|
|
// System.Double UnityEngine.UIElements.TransitionEventBase`1::<elapsedTime>k__BackingField
|
|
double ___U3CelapsedTimeU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
struct TransitionEventBase_1_tE4425184474B0AA7732182D0294F0960A51DEAC4 : public EventBase_1_t19FCA0E562C449FA0A2FA0053E97568D4B389A56
|
|
{
|
|
// UnityEngine.UIElements.StylePropertyNameCollection UnityEngine.UIElements.TransitionEventBase`1::<stylePropertyNames>k__BackingField
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312 ___U3CstylePropertyNamesU3Ek__BackingField_18;
|
|
// System.Double UnityEngine.UIElements.TransitionEventBase`1::<elapsedTime>k__BackingField
|
|
double ___U3CelapsedTimeU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
struct TransitionEventBase_1_t297898456ECA9E8B0FE5C4821C0FD1C2CEFA86AC : public EventBase_1_t4F23137036FDF513830C85C5F8B2BF3A0E146A0F
|
|
{
|
|
// UnityEngine.UIElements.StylePropertyNameCollection UnityEngine.UIElements.TransitionEventBase`1::<stylePropertyNames>k__BackingField
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312 ___U3CstylePropertyNamesU3Ek__BackingField_18;
|
|
// System.Double UnityEngine.UIElements.TransitionEventBase`1::<elapsedTime>k__BackingField
|
|
double ___U3CelapsedTimeU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
struct TransitionEventBase_1_t1FB26EAAAF9B2F0657560F33B4BB75695CAF7579 : public EventBase_1_t90E610023DACA9D4D888599D2E1B536299CE9098
|
|
{
|
|
// UnityEngine.UIElements.StylePropertyNameCollection UnityEngine.UIElements.TransitionEventBase`1::<stylePropertyNames>k__BackingField
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312 ___U3CstylePropertyNamesU3Ek__BackingField_18;
|
|
// System.Double UnityEngine.UIElements.TransitionEventBase`1::<elapsedTime>k__BackingField
|
|
double ___U3CelapsedTimeU3Ek__BackingField_19;
|
|
};
|
|
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
// System.String System.ArgumentException::_paramName
|
|
String_t* ____paramName_18;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BindableElement
|
|
struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// UnityEngine.UIElements.IBinding UnityEngine.UIElements.BindableElement::<binding>k__BackingField
|
|
RuntimeObject* ___U3CbindingU3Ek__BackingField_65;
|
|
// System.String UnityEngine.UIElements.BindableElement::<bindingPath>k__BackingField
|
|
String_t* ___U3CbindingPathU3Ek__BackingField_66;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
struct CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6 : public EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
struct GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A : public EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E
|
|
{
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::<oldRect>k__BackingField
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3ColdRectU3Ek__BackingField_18;
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::<newRect>k__BackingField
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3CnewRectU3Ek__BackingField_19;
|
|
// System.Int32 UnityEngine.UIElements.GeometryChangedEvent::<layoutPass>k__BackingField
|
|
int32_t ___U3ClayoutPassU3Ek__BackingField_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26 : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// System.Action UnityEngine.UIElements.IMGUIContainer::m_OnGUIHandler
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_OnGUIHandler_65;
|
|
// UnityEngine.ObjectGUIState UnityEngine.UIElements.IMGUIContainer::m_ObjectGUIState
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* ___m_ObjectGUIState_66;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::useOwnerObjectGUIState
|
|
bool ___useOwnerObjectGUIState_67;
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::<lastWorldClip>k__BackingField
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3ClastWorldClipU3Ek__BackingField_68;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::m_CullingEnabled
|
|
bool ___m_CullingEnabled_69;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::m_IsFocusDelegated
|
|
bool ___m_IsFocusDelegated_70;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::m_RefreshCachedLayout
|
|
bool ___m_RefreshCachedLayout_71;
|
|
// UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.UIElements.IMGUIContainer::m_Cache
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* ___m_Cache_72;
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::m_CachedClippingRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_CachedClippingRect_73;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.IMGUIContainer::m_CachedTransform
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_CachedTransform_74;
|
|
// UnityEngine.UIElements.ContextType UnityEngine.UIElements.IMGUIContainer::<contextType>k__BackingField
|
|
int32_t ___U3CcontextTypeU3Ek__BackingField_75;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::lostFocus
|
|
bool ___lostFocus_76;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::receivedFocus
|
|
bool ___receivedFocus_77;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.IMGUIContainer::focusChangeDirection
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___focusChangeDirection_78;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::hasFocusableControls
|
|
bool ___hasFocusableControls_79;
|
|
// System.Int32 UnityEngine.UIElements.IMGUIContainer::newKeyboardFocusControlID
|
|
int32_t ___newKeyboardFocusControlID_80;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::<focusOnlyIfHasFocusableControls>k__BackingField
|
|
bool ___U3CfocusOnlyIfHasFocusableControlsU3Ek__BackingField_81;
|
|
// UnityEngine.UIElements.IMGUIContainer/GUIGlobals UnityEngine.UIElements.IMGUIContainer::m_GUIGlobals
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10 ___m_GUIGlobals_85;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIEvent
|
|
struct IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5 : public EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.InputEvent
|
|
struct InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF : public EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB
|
|
{
|
|
// System.String UnityEngine.UIElements.InputEvent::<previousData>k__BackingField
|
|
String_t* ___U3CpreviousDataU3Ek__BackingField_18;
|
|
// System.String UnityEngine.UIElements.InputEvent::<newData>k__BackingField
|
|
String_t* ___U3CnewDataU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Panel
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9 : public BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Panel::m_RootContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_RootContainer_17;
|
|
// UnityEngine.UIElements.VisualTreeUpdater UnityEngine.UIElements.Panel::m_VisualTreeUpdater
|
|
VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* ___m_VisualTreeUpdater_18;
|
|
// UnityEngine.UIElements.IStylePropertyAnimationSystem UnityEngine.UIElements.Panel::m_StylePropertyAnimationSystem
|
|
RuntimeObject* ___m_StylePropertyAnimationSystem_19;
|
|
// System.String UnityEngine.UIElements.Panel::m_PanelName
|
|
String_t* ___m_PanelName_20;
|
|
// System.UInt32 UnityEngine.UIElements.Panel::m_Version
|
|
uint32_t ___m_Version_21;
|
|
// System.UInt32 UnityEngine.UIElements.Panel::m_RepaintVersion
|
|
uint32_t ___m_RepaintVersion_22;
|
|
// System.UInt32 UnityEngine.UIElements.Panel::m_HierarchyVersion
|
|
uint32_t ___m_HierarchyVersion_23;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::m_MarkerBeforeUpdate
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerBeforeUpdate_24;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::m_MarkerUpdate
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerUpdate_25;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::m_MarkerLayout
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerLayout_26;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::m_MarkerBindings
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerBindings_27;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::m_MarkerAnimations
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___m_MarkerAnimations_28;
|
|
// UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.Panel::<dispatcher>k__BackingField
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___U3CdispatcherU3Ek__BackingField_30;
|
|
// UnityEngine.UIElements.TimerEventScheduler UnityEngine.UIElements.Panel::m_Scheduler
|
|
TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* ___m_Scheduler_31;
|
|
// UnityEngine.ScriptableObject UnityEngine.UIElements.Panel::<ownerObject>k__BackingField
|
|
ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* ___U3CownerObjectU3Ek__BackingField_32;
|
|
// UnityEngine.UIElements.ContextType UnityEngine.UIElements.Panel::<contextType>k__BackingField
|
|
int32_t ___U3CcontextTypeU3Ek__BackingField_33;
|
|
// UnityEngine.UIElements.SavePersistentViewData UnityEngine.UIElements.Panel::<saveViewData>k__BackingField
|
|
SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716* ___U3CsaveViewDataU3Ek__BackingField_34;
|
|
// UnityEngine.UIElements.GetViewDataDictionary UnityEngine.UIElements.Panel::<getViewDataDictionary>k__BackingField
|
|
GetViewDataDictionary_tF745E6CC7E18A67630A2B294F0BBFB27C6E57638* ___U3CgetViewDataDictionaryU3Ek__BackingField_35;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.Panel::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_36;
|
|
// UnityEngine.EventInterests UnityEngine.UIElements.Panel::<IMGUIEventInterests>k__BackingField
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 ___U3CIMGUIEventInterestsU3Ek__BackingField_37;
|
|
// System.Int32 UnityEngine.UIElements.Panel::<IMGUIContainersCount>k__BackingField
|
|
int32_t ___U3CIMGUIContainersCountU3Ek__BackingField_40;
|
|
// UnityEngine.UIElements.IMGUIContainer UnityEngine.UIElements.Panel::<rootIMGUIContainer>k__BackingField
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___U3CrootIMGUIContainerU3Ek__BackingField_41;
|
|
// UnityEngine.Shader UnityEngine.UIElements.Panel::m_StandardShader
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_StandardShader_42;
|
|
// UnityEngine.UIElements.AtlasBase UnityEngine.UIElements.Panel::m_Atlas
|
|
AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC* ___m_Atlas_43;
|
|
// System.Boolean UnityEngine.UIElements.Panel::m_ValidatingLayout
|
|
bool ___m_ValidatingLayout_44;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelSettings
|
|
struct PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
// UnityEngine.UIElements.ThemeStyleSheet UnityEngine.UIElements.PanelSettings::themeUss
|
|
ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553* ___themeUss_7;
|
|
// UnityEngine.RenderTexture UnityEngine.UIElements.PanelSettings::m_TargetTexture
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_TargetTexture_8;
|
|
// UnityEngine.UIElements.PanelScaleMode UnityEngine.UIElements.PanelSettings::m_ScaleMode
|
|
int32_t ___m_ScaleMode_9;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_Scale
|
|
float ___m_Scale_10;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_ReferenceDpi
|
|
float ___m_ReferenceDpi_12;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_FallbackDpi
|
|
float ___m_FallbackDpi_13;
|
|
// UnityEngine.Vector2Int UnityEngine.UIElements.PanelSettings::m_ReferenceResolution
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___m_ReferenceResolution_14;
|
|
// UnityEngine.UIElements.PanelScreenMatchMode UnityEngine.UIElements.PanelSettings::m_ScreenMatchMode
|
|
int32_t ___m_ScreenMatchMode_15;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_Match
|
|
float ___m_Match_16;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_SortingOrder
|
|
float ___m_SortingOrder_17;
|
|
// System.Int32 UnityEngine.UIElements.PanelSettings::m_TargetDisplay
|
|
int32_t ___m_TargetDisplay_18;
|
|
// System.Boolean UnityEngine.UIElements.PanelSettings::m_ClearDepthStencil
|
|
bool ___m_ClearDepthStencil_19;
|
|
// System.Boolean UnityEngine.UIElements.PanelSettings::m_ClearColor
|
|
bool ___m_ClearColor_20;
|
|
// UnityEngine.Color UnityEngine.UIElements.PanelSettings::m_ColorClearValue
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_ColorClearValue_21;
|
|
// UnityEngine.UIElements.PanelSettings/RuntimePanelAccess UnityEngine.UIElements.PanelSettings::m_PanelAccess
|
|
RuntimePanelAccess_t88FC30C79AE159279E2BB55A190D2E69259B7482* ___m_PanelAccess_22;
|
|
// UnityEngine.UIElements.UIDocumentList UnityEngine.UIElements.PanelSettings::m_AttachedUIDocumentsList
|
|
UIDocumentList_tA2A8305DE916298E4C586EC8235085560914E7C3* ___m_AttachedUIDocumentsList_23;
|
|
// UnityEngine.UIElements.DynamicAtlasSettings UnityEngine.UIElements.PanelSettings::m_DynamicAtlasSettings
|
|
DynamicAtlasSettings_t183239B7B0968331CEA91684F0942D3189C50DC5* ___m_DynamicAtlasSettings_24;
|
|
// UnityEngine.Shader UnityEngine.UIElements.PanelSettings::m_AtlasBlitShader
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_AtlasBlitShader_25;
|
|
// UnityEngine.Shader UnityEngine.UIElements.PanelSettings::m_RuntimeShader
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_RuntimeShader_26;
|
|
// UnityEngine.Shader UnityEngine.UIElements.PanelSettings::m_RuntimeWorldShader
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_RuntimeWorldShader_27;
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.PanelSettings::textSettings
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* ___textSettings_28;
|
|
// UnityEngine.Rect UnityEngine.UIElements.PanelSettings::m_TargetRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_TargetRect_29;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::m_ResolvedScale
|
|
float ___m_ResolvedScale_30;
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.PanelSettings::m_OldThemeUss
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___m_OldThemeUss_31;
|
|
// System.Int32 UnityEngine.UIElements.PanelSettings::m_EmptyPanelCounter
|
|
int32_t ___m_EmptyPanelCounter_32;
|
|
// System.Single UnityEngine.UIElements.PanelSettings::<ScreenDPI>k__BackingField
|
|
float ___U3CScreenDPIU3Ek__BackingField_33;
|
|
// System.Func`2<UnityEngine.Vector2,UnityEngine.Vector2> UnityEngine.UIElements.PanelSettings::m_AssignedScreenToPanel
|
|
Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA* ___m_AssignedScreenToPanel_34;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9 : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// UnityEngine.UIElements.ScrollerVisibility UnityEngine.UIElements.ScrollView::m_HorizontalScrollerVisibility
|
|
int32_t ___m_HorizontalScrollerVisibility_65;
|
|
// UnityEngine.UIElements.ScrollerVisibility UnityEngine.UIElements.ScrollView::m_VerticalScrollerVisibility
|
|
int32_t ___m_VerticalScrollerVisibility_66;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_AttachedRootVisualContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_AttachedRootVisualContainer_67;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_SingleLineHeight
|
|
float ___m_SingleLineHeight_68;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_HorizontalPageSize
|
|
float ___m_HorizontalPageSize_69;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_VerticalPageSize
|
|
float ___m_VerticalPageSize_70;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_ScrollDecelerationRate
|
|
float ___m_ScrollDecelerationRate_72;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_Elasticity
|
|
float ___m_Elasticity_74;
|
|
// UnityEngine.UIElements.ScrollView/TouchScrollBehavior UnityEngine.UIElements.ScrollView::m_TouchScrollBehavior
|
|
int32_t ___m_TouchScrollBehavior_75;
|
|
// UnityEngine.UIElements.ScrollView/NestedInteractionKind UnityEngine.UIElements.ScrollView::m_NestedInteractionKind
|
|
int32_t ___m_NestedInteractionKind_76;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::<contentViewport>k__BackingField
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CcontentViewportU3Ek__BackingField_77;
|
|
// UnityEngine.UIElements.Scroller UnityEngine.UIElements.ScrollView::<horizontalScroller>k__BackingField
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ___U3ChorizontalScrollerU3Ek__BackingField_78;
|
|
// UnityEngine.UIElements.Scroller UnityEngine.UIElements.ScrollView::<verticalScroller>k__BackingField
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ___U3CverticalScrollerU3Ek__BackingField_79;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_ContentContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ContentContainer_80;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_ContentAndVerticalScrollContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ContentAndVerticalScrollContainer_81;
|
|
// UnityEngine.UIElements.ScrollViewMode UnityEngine.UIElements.ScrollView::m_Mode
|
|
int32_t ___m_Mode_92;
|
|
// System.Int32 UnityEngine.UIElements.ScrollView::m_ScrollingPointerId
|
|
int32_t ___m_ScrollingPointerId_93;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_StartPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_StartPosition_94;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_PointerStartPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PointerStartPosition_95;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_Velocity
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Velocity_96;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_SpringBackVelocity
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_SpringBackVelocity_97;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_LowBounds
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LowBounds_98;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_HighBounds
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_HighBounds_99;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_LastVelocityLerpTime
|
|
float ___m_LastVelocityLerpTime_100;
|
|
// System.Boolean UnityEngine.UIElements.ScrollView::m_StartedMoving
|
|
bool ___m_StartedMoving_101;
|
|
// System.Boolean UnityEngine.UIElements.ScrollView::m_TouchStoppedVelocity
|
|
bool ___m_TouchStoppedVelocity_102;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_CapturedTarget
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CapturedTarget_103;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent> UnityEngine.UIElements.ScrollView::m_CapturedTargetPointerMoveCallback
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___m_CapturedTargetPointerMoveCallback_104;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent> UnityEngine.UIElements.ScrollView::m_CapturedTargetPointerUpCallback
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___m_CapturedTargetPointerUpCallback_105;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.ScrollView::m_PostPointerUpAnimation
|
|
RuntimeObject* ___m_PostPointerUpAnimation_106;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Scroller
|
|
struct Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8 : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// System.Action`1<System.Single> UnityEngine.UIElements.Scroller::valueChanged
|
|
Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* ___valueChanged_65;
|
|
// UnityEngine.UIElements.Slider UnityEngine.UIElements.Scroller::<slider>k__BackingField
|
|
Slider_t5891706383A14955E3FAD68A79829F3234681652* ___U3CsliderU3Ek__BackingField_66;
|
|
// UnityEngine.UIElements.RepeatButton UnityEngine.UIElements.Scroller::<lowButton>k__BackingField
|
|
RepeatButton_t2CF59798FF30EF6DB8030E2D93CD346E38DDF981* ___U3ClowButtonU3Ek__BackingField_67;
|
|
// UnityEngine.UIElements.RepeatButton UnityEngine.UIElements.Scroller::<highButton>k__BackingField
|
|
RepeatButton_t2CF59798FF30EF6DB8030E2D93CD346E38DDF981* ___U3ChighButtonU3Ek__BackingField_68;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextAsset
|
|
struct TextAsset_tB28F1843A877CCA74B89DC4F63EA532618B049B8 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
// System.String UnityEngine.TextCore.Text.TextAsset::m_Version
|
|
String_t* ___m_Version_4;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextAsset::m_InstanceID
|
|
int32_t ___m_InstanceID_5;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextAsset::m_HashCode
|
|
int32_t ___m_HashCode_6;
|
|
// UnityEngine.Material UnityEngine.TextCore.Text.TextAsset::m_Material
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material_7;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextAsset::m_MaterialHashCode
|
|
int32_t ___m_MaterialHashCode_8;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextSettings
|
|
struct TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
// System.String UnityEngine.TextCore.Text.TextSettings::m_Version
|
|
String_t* ___m_Version_4;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.TextCore.Text.TextSettings::m_DefaultFontAsset
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___m_DefaultFontAsset_5;
|
|
// System.String UnityEngine.TextCore.Text.TextSettings::m_DefaultFontAssetPath
|
|
String_t* ___m_DefaultFontAssetPath_6;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset> UnityEngine.TextCore.Text.TextSettings::m_FallbackFontAssets
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* ___m_FallbackFontAssets_7;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextSettings::m_MatchMaterialPreset
|
|
bool ___m_MatchMaterialPreset_8;
|
|
// System.Int32 UnityEngine.TextCore.Text.TextSettings::m_MissingCharacterUnicode
|
|
int32_t ___m_MissingCharacterUnicode_9;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextSettings::m_ClearDynamicDataOnBuild
|
|
bool ___m_ClearDynamicDataOnBuild_10;
|
|
// UnityEngine.TextCore.Text.SpriteAsset UnityEngine.TextCore.Text.TextSettings::m_DefaultSpriteAsset
|
|
SpriteAsset_t1D3CF1D9DC350A4690CB09DE228A8B59F2F02313* ___m_DefaultSpriteAsset_11;
|
|
// System.String UnityEngine.TextCore.Text.TextSettings::m_DefaultSpriteAssetPath
|
|
String_t* ___m_DefaultSpriteAssetPath_12;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.SpriteAsset> UnityEngine.TextCore.Text.TextSettings::m_FallbackSpriteAssets
|
|
List_1_t3EE59C28A34FCD5060EF6B6BAFA85F2C9D01D320* ___m_FallbackSpriteAssets_13;
|
|
// System.UInt32 UnityEngine.TextCore.Text.TextSettings::m_MissingSpriteCharacterUnicode
|
|
uint32_t ___m_MissingSpriteCharacterUnicode_14;
|
|
// UnityEngine.TextCore.Text.TextStyleSheet UnityEngine.TextCore.Text.TextSettings::m_DefaultStyleSheet
|
|
TextStyleSheet_t86A0FA5523897465F371A2ABC17DFA3558C8D15E* ___m_DefaultStyleSheet_15;
|
|
// System.String UnityEngine.TextCore.Text.TextSettings::m_StyleSheetsResourcePath
|
|
String_t* ___m_StyleSheetsResourcePath_16;
|
|
// System.String UnityEngine.TextCore.Text.TextSettings::m_DefaultColorGradientPresetsPath
|
|
String_t* ___m_DefaultColorGradientPresetsPath_17;
|
|
// UnityEngine.TextCore.Text.UnicodeLineBreakingRules UnityEngine.TextCore.Text.TextSettings::m_UnicodeLineBreakingRules
|
|
UnicodeLineBreakingRules_t80BE36F5E16AE48FE7B6DE1C91D36B1142B4EC0E* ___m_UnicodeLineBreakingRules_18;
|
|
// System.Boolean UnityEngine.TextCore.Text.TextSettings::m_DisplayWarnings
|
|
bool ___m_DisplayWarnings_19;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.TextCore.Text.FontAsset> UnityEngine.TextCore.Text.TextSettings::m_FontLookup
|
|
Dictionary_2_tC20B3D6AE4370C892734F670EF4D1FB9CE91F371* ___m_FontLookup_20;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.TextSettings/FontReferenceMap> UnityEngine.TextCore.Text.TextSettings::m_FontReferences
|
|
List_1_tA1547550E5FBA50050B20DA74245C38434654EE8* ___m_FontReferences_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TooltipEvent
|
|
struct TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187 : public EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C
|
|
{
|
|
// System.String UnityEngine.UIElements.TooltipEvent::<tooltip>k__BackingField
|
|
String_t* ___U3CtooltipU3Ek__BackingField_18;
|
|
// UnityEngine.Rect UnityEngine.UIElements.TooltipEvent::<rect>k__BackingField
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3CrectU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView
|
|
struct TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67 : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_LeftPane
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_LeftPane_75;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_RightPane
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_RightPane_76;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_FixedPane
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_FixedPane_77;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_FlexedPane
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_FlexedPane_78;
|
|
// System.Single UnityEngine.UIElements.TwoPaneSplitView::m_FixedPaneDimension
|
|
float ___m_FixedPaneDimension_79;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_DragLine
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_DragLine_80;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_DragLineAnchor
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_DragLineAnchor_81;
|
|
// System.Boolean UnityEngine.UIElements.TwoPaneSplitView::m_CollapseMode
|
|
bool ___m_CollapseMode_82;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::m_Content
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Content_83;
|
|
// UnityEngine.UIElements.TwoPaneSplitViewOrientation UnityEngine.UIElements.TwoPaneSplitView::m_Orientation
|
|
int32_t ___m_Orientation_84;
|
|
// System.Int32 UnityEngine.UIElements.TwoPaneSplitView::m_FixedPaneIndex
|
|
int32_t ___m_FixedPaneIndex_85;
|
|
// System.Single UnityEngine.UIElements.TwoPaneSplitView::m_FixedPaneInitialDimension
|
|
float ___m_FixedPaneInitialDimension_86;
|
|
// UnityEngine.UIElements.TwoPaneSplitViewResizer UnityEngine.UIElements.TwoPaneSplitView::m_Resizer
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* ___m_Resizer_87;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitViewResizer
|
|
struct TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5 : public PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.TwoPaneSplitViewResizer::m_Start
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Start_4;
|
|
// System.Boolean UnityEngine.UIElements.TwoPaneSplitViewResizer::m_Active
|
|
bool ___m_Active_5;
|
|
// UnityEngine.UIElements.TwoPaneSplitView UnityEngine.UIElements.TwoPaneSplitViewResizer::m_SplitView
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* ___m_SplitView_6;
|
|
// System.Int32 UnityEngine.UIElements.TwoPaneSplitViewResizer::m_Direction
|
|
int32_t ___m_Direction_7;
|
|
// UnityEngine.UIElements.TwoPaneSplitViewOrientation UnityEngine.UIElements.TwoPaneSplitViewResizer::m_Orientation
|
|
int32_t ___m_Orientation_8;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseField`1<System.Int32>
|
|
struct BaseField_1_tB351B262306464787F5A31B33CDC431E89796615 : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
// System.Single UnityEngine.UIElements.BaseField`1::m_LabelWidthRatio
|
|
float ___m_LabelWidthRatio_80;
|
|
// System.Single UnityEngine.UIElements.BaseField`1::m_LabelExtraPadding
|
|
float ___m_LabelExtraPadding_81;
|
|
// System.Single UnityEngine.UIElements.BaseField`1::m_LabelBaseMinWidth
|
|
float ___m_LabelBaseMinWidth_82;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseField`1::m_VisualInput
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_VisualInput_83;
|
|
// TValueType UnityEngine.UIElements.BaseField`1::m_Value
|
|
int32_t ___m_Value_84;
|
|
// UnityEngine.UIElements.Label UnityEngine.UIElements.BaseField`1::<labelElement>k__BackingField
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* ___U3ClabelElementU3Ek__BackingField_85;
|
|
// System.Boolean UnityEngine.UIElements.BaseField`1::m_ShowMixedValue
|
|
bool ___m_ShowMixedValue_86;
|
|
// UnityEngine.UIElements.Label UnityEngine.UIElements.BaseField`1::m_MixedValueLabel
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* ___m_MixedValueLabel_87;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseField`1::m_CachedInspectorElement
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CachedInspectorElement_88;
|
|
// System.Int32 UnityEngine.UIElements.BaseField`1::m_CachedListAndFoldoutDepth
|
|
int32_t ___m_CachedListAndFoldoutDepth_89;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
struct MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68 : public PointerCaptureEventBase_1_t38FF965EA39837B57FA4081A1FE87180C56A8426
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC : public PointerCaptureEventBase_1_t19C92EDCA213A9395CF90DC2022EF67F080FBB55
|
|
{
|
|
};
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
// System.Object System.ArgumentOutOfRangeException::_actualValue
|
|
RuntimeObject* ____actualValue_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28 : public PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseRuntimePanel
|
|
struct BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4 : public Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9
|
|
{
|
|
// UnityEngine.GameObject UnityEngine.UIElements.BaseRuntimePanel::m_SelectableGameObject
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_SelectableGameObject_46;
|
|
// System.Int32 UnityEngine.UIElements.BaseRuntimePanel::m_RuntimePanelCreationIndex
|
|
int32_t ___m_RuntimePanelCreationIndex_48;
|
|
// System.Single UnityEngine.UIElements.BaseRuntimePanel::m_SortingPriority
|
|
float ___m_SortingPriority_49;
|
|
// System.Action UnityEngine.UIElements.BaseRuntimePanel::destroyed
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___destroyed_50;
|
|
// UnityEngine.Shader UnityEngine.UIElements.BaseRuntimePanel::m_StandardWorldSpaceShader
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___m_StandardWorldSpaceShader_51;
|
|
// System.Boolean UnityEngine.UIElements.BaseRuntimePanel::m_DrawToCameras
|
|
bool ___m_DrawToCameras_52;
|
|
// UnityEngine.RenderTexture UnityEngine.UIElements.BaseRuntimePanel::targetTexture
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___targetTexture_53;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.BaseRuntimePanel::panelToWorld
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___panelToWorld_54;
|
|
// System.Int32 UnityEngine.UIElements.BaseRuntimePanel::<targetDisplay>k__BackingField
|
|
int32_t ___U3CtargetDisplayU3Ek__BackingField_55;
|
|
// System.Func`2<UnityEngine.Vector2,UnityEngine.Vector2> UnityEngine.UIElements.BaseRuntimePanel::m_ScreenToPanelSpace
|
|
Func_2_t33ED521BE3A7E943FA8D764514952EDF1AF1C0FA* ___m_ScreenToPanelSpace_57;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
struct BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>> UnityEngine.UIElements.BaseVerticalCollectionView::onItemsChosen
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___onItemsChosen_67;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>> UnityEngine.UIElements.BaseVerticalCollectionView::onSelectionChange
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___onSelectionChange_68;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.BaseVerticalCollectionView::onSelectedIndicesChange
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___onSelectedIndicesChange_69;
|
|
// System.Action`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::itemIndexChanged
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___itemIndexChanged_70;
|
|
// System.Action UnityEngine.UIElements.BaseVerticalCollectionView::itemsSourceChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___itemsSourceChanged_71;
|
|
// System.Func`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_GetItemId
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* ___m_GetItemId_72;
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::m_MakeItem
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* ___m_MakeItem_73;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_BindItem
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___m_BindItem_74;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::<unbindItem>k__BackingField
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___U3CunbindItemU3Ek__BackingField_75;
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::<destroyItem>k__BackingField
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* ___U3CdestroyItemU3Ek__BackingField_76;
|
|
// UnityEngine.UIElements.SelectionType UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectionType
|
|
int32_t ___m_SelectionType_77;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_HorizontalScrollingEnabled
|
|
bool ___m_HorizontalScrollingEnabled_79;
|
|
// UnityEngine.UIElements.AlternatingRowBackground UnityEngine.UIElements.BaseVerticalCollectionView::m_ShowAlternatingRowBackgrounds
|
|
int32_t ___m_ShowAlternatingRowBackgrounds_80;
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::m_FixedItemHeight
|
|
float ___m_FixedItemHeight_82;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemHeightIsInline
|
|
bool ___m_ItemHeightIsInline_83;
|
|
// UnityEngine.UIElements.CollectionVirtualizationMethod UnityEngine.UIElements.BaseVerticalCollectionView::m_VirtualizationMethod
|
|
int32_t ___m_VirtualizationMethod_84;
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.BaseVerticalCollectionView::m_ScrollView
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_85;
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::m_ViewController
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* ___m_ViewController_86;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::m_VirtualizationController
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* ___m_VirtualizationController_87;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator UnityEngine.UIElements.BaseVerticalCollectionView::m_NavigationManipulator
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* ___m_NavigationManipulator_88;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.BaseVerticalCollectionView::m_ScrollOffset
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollOffset_89;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedIds
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SelectedIds_90;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedIndices
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SelectedIndices_91;
|
|
// System.Collections.Generic.List`1<System.Object> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedItems
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___m_SelectedItems_92;
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::m_LastHeight
|
|
float ___m_LastHeight_93;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_IsRangeSelectionDirectionUp
|
|
bool ___m_IsRangeSelectionDirectionUp_94;
|
|
// UnityEngine.UIElements.ListViewDragger UnityEngine.UIElements.BaseVerticalCollectionView::m_Dragger
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* ___m_Dragger_95;
|
|
// System.Action`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemIndexChangedCallback
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___m_ItemIndexChangedCallback_97;
|
|
// System.Action UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemsSourceChangedCallback
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_ItemsSourceChangedCallback_98;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.BaseVerticalCollectionView::m_TouchDownPosition
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_TouchDownPosition_108;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BlurEvent
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302 : public FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ClickEvent
|
|
struct ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318 : public PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ContextClickEvent
|
|
struct ContextClickEvent_t06F36D1ACA5C8390D5085158C7D7C1BCF9549EA3 : public MouseEventBase_1_t5ED96675A2B42789E87132B5B4AE0102E645AA9B
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ContextualMenuPopulateEvent
|
|
struct ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB : public MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E
|
|
{
|
|
// UnityEngine.UIElements.DropdownMenu UnityEngine.UIElements.ContextualMenuPopulateEvent::<menu>k__BackingField
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ___U3CmenuU3Ek__BackingField_28;
|
|
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.ContextualMenuPopulateEvent::<triggerEvent>k__BackingField
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___U3CtriggerEventU3Ek__BackingField_29;
|
|
// UnityEngine.UIElements.ContextualMenuManager UnityEngine.UIElements.ContextualMenuPopulateEvent::m_ContextualMenuManager
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* ___m_ContextualMenuManager_30;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496 : public PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ExecuteCommandEvent
|
|
struct ExecuteCommandEvent_t41D5C771261998F58E01612B66E1EF60C100F6D4 : public CommandEventBase_1_tC61C876047FB1C3B000DE161F2EA5CE6EAF19952
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F : public FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
struct FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE : public FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
struct FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C : public FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2
|
|
{
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958 : public TextAsset_tB28F1843A877CCA74B89DC4F63EA532618B049B8
|
|
{
|
|
// System.String UnityEngine.TextCore.Text.FontAsset::m_SourceFontFileGUID
|
|
String_t* ___m_SourceFontFileGUID_9;
|
|
// UnityEngine.Font UnityEngine.TextCore.Text.FontAsset::m_SourceFontFile
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___m_SourceFontFile_10;
|
|
// UnityEngine.TextCore.Text.AtlasPopulationMode UnityEngine.TextCore.Text.FontAsset::m_AtlasPopulationMode
|
|
int32_t ___m_AtlasPopulationMode_11;
|
|
// System.Boolean UnityEngine.TextCore.Text.FontAsset::InternalDynamicOS
|
|
bool ___InternalDynamicOS_12;
|
|
// UnityEngine.TextCore.FaceInfo UnityEngine.TextCore.Text.FontAsset::m_FaceInfo
|
|
FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 ___m_FaceInfo_13;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_FamilyNameHashCode
|
|
int32_t ___m_FamilyNameHashCode_14;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_StyleNameHashCode
|
|
int32_t ___m_StyleNameHashCode_15;
|
|
// UnityEngine.TextCore.Text.FontWeightPair[] UnityEngine.TextCore.Text.FontAsset::m_FontWeightTable
|
|
FontWeightPairU5BU5D_t76E8DB55C81EEBEFA2E6D1D3E3B3EA1FB4C4954F* ___m_FontWeightTable_16;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Glyph> UnityEngine.TextCore.Text.FontAsset::m_GlyphTable
|
|
List_1_t95DB74B8EE315F8F92B7B96D93C901C8C3F6FE2C* ___m_GlyphTable_17;
|
|
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Glyph> UnityEngine.TextCore.Text.FontAsset::m_GlyphLookupDictionary
|
|
Dictionary_2_tC61348D10610A6B3D7B65102D82AC3467D59EAA7* ___m_GlyphLookupDictionary_18;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.Character> UnityEngine.TextCore.Text.FontAsset::m_CharacterTable
|
|
List_1_tFED0F30EE65D995591571D3CD2C10F22439CB317* ___m_CharacterTable_19;
|
|
// System.Collections.Generic.Dictionary`2<System.UInt32,UnityEngine.TextCore.Text.Character> UnityEngine.TextCore.Text.FontAsset::m_CharacterLookupDictionary
|
|
Dictionary_2_t93CDF0F4011A5A3024EB73A492F9512E3046EACB* ___m_CharacterLookupDictionary_20;
|
|
// UnityEngine.Texture2D UnityEngine.TextCore.Text.FontAsset::m_AtlasTexture
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_AtlasTexture_21;
|
|
// UnityEngine.Texture2D[] UnityEngine.TextCore.Text.FontAsset::m_AtlasTextures
|
|
Texture2DU5BU5D_t05332F1E3F7D4493E304C702201F9BE4F9236191* ___m_AtlasTextures_22;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_AtlasTextureIndex
|
|
int32_t ___m_AtlasTextureIndex_23;
|
|
// System.Boolean UnityEngine.TextCore.Text.FontAsset::m_IsMultiAtlasTexturesEnabled
|
|
bool ___m_IsMultiAtlasTexturesEnabled_24;
|
|
// System.Boolean UnityEngine.TextCore.Text.FontAsset::m_ClearDynamicDataOnBuild
|
|
bool ___m_ClearDynamicDataOnBuild_25;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_AtlasWidth
|
|
int32_t ___m_AtlasWidth_26;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_AtlasHeight
|
|
int32_t ___m_AtlasHeight_27;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::m_AtlasPadding
|
|
int32_t ___m_AtlasPadding_28;
|
|
// UnityEngine.TextCore.LowLevel.GlyphRenderMode UnityEngine.TextCore.Text.FontAsset::m_AtlasRenderMode
|
|
int32_t ___m_AtlasRenderMode_29;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect> UnityEngine.TextCore.Text.FontAsset::m_UsedGlyphRects
|
|
List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___m_UsedGlyphRects_30;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect> UnityEngine.TextCore.Text.FontAsset::m_FreeGlyphRects
|
|
List_1_t425D3A455811E316D2DF73E46CF9CD90A4341C1B* ___m_FreeGlyphRects_31;
|
|
// UnityEngine.TextCore.Text.FontFeatureTable UnityEngine.TextCore.Text.FontAsset::m_FontFeatureTable
|
|
FontFeatureTable_t992E0493CD7E9D7834DF204E0198237F0D25B3B7* ___m_FontFeatureTable_32;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset> UnityEngine.TextCore.Text.FontAsset::m_FallbackFontAssetTable
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* ___m_FallbackFontAssetTable_33;
|
|
// UnityEngine.TextCore.Text.FontAssetCreationEditorSettings UnityEngine.TextCore.Text.FontAsset::m_fontAssetCreationEditorSettings
|
|
FontAssetCreationEditorSettings_t0FF28D2E78F090105C63C81F9E438A7B09E3EA52 ___m_fontAssetCreationEditorSettings_34;
|
|
// System.Single UnityEngine.TextCore.Text.FontAsset::m_RegularStyleWeight
|
|
float ___m_RegularStyleWeight_35;
|
|
// System.Single UnityEngine.TextCore.Text.FontAsset::m_RegularStyleSpacing
|
|
float ___m_RegularStyleSpacing_36;
|
|
// System.Single UnityEngine.TextCore.Text.FontAsset::m_BoldStyleWeight
|
|
float ___m_BoldStyleWeight_37;
|
|
// System.Single UnityEngine.TextCore.Text.FontAsset::m_BoldStyleSpacing
|
|
float ___m_BoldStyleSpacing_38;
|
|
// System.Byte UnityEngine.TextCore.Text.FontAsset::m_ItalicStyleSlant
|
|
uint8_t ___m_ItalicStyleSlant_39;
|
|
// System.Byte UnityEngine.TextCore.Text.FontAsset::m_TabMultiple
|
|
uint8_t ___m_TabMultiple_40;
|
|
// System.Boolean UnityEngine.TextCore.Text.FontAsset::IsFontAssetLookupTablesDirty
|
|
bool ___IsFontAssetLookupTablesDirty_41;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Glyph> UnityEngine.TextCore.Text.FontAsset::m_GlyphsToRender
|
|
List_1_t95DB74B8EE315F8F92B7B96D93C901C8C3F6FE2C* ___m_GlyphsToRender_55;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Glyph> UnityEngine.TextCore.Text.FontAsset::m_GlyphsRendered
|
|
List_1_t95DB74B8EE315F8F92B7B96D93C901C8C3F6FE2C* ___m_GlyphsRendered_56;
|
|
// System.Collections.Generic.List`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_GlyphIndexList
|
|
List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_GlyphIndexList_57;
|
|
// System.Collections.Generic.List`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_GlyphIndexListNewlyAdded
|
|
List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_GlyphIndexListNewlyAdded_58;
|
|
// System.Collections.Generic.List`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_GlyphsToAdd
|
|
List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___m_GlyphsToAdd_59;
|
|
// System.Collections.Generic.HashSet`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_GlyphsToAddLookup
|
|
HashSet_1_t5DD20B42149A11AEBF12A75505306E6EFC34943A* ___m_GlyphsToAddLookup_60;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.Character> UnityEngine.TextCore.Text.FontAsset::m_CharactersToAdd
|
|
List_1_tFED0F30EE65D995591571D3CD2C10F22439CB317* ___m_CharactersToAdd_61;
|
|
// System.Collections.Generic.HashSet`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_CharactersToAddLookup
|
|
HashSet_1_t5DD20B42149A11AEBF12A75505306E6EFC34943A* ___m_CharactersToAddLookup_62;
|
|
// System.Collections.Generic.List`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::s_MissingCharacterList
|
|
List_1_t9B68833848E4C4D7F623C05F6B77F0449396354A* ___s_MissingCharacterList_63;
|
|
// System.Collections.Generic.HashSet`1<System.UInt32> UnityEngine.TextCore.Text.FontAsset::m_MissingUnicodesFromFontFile
|
|
HashSet_1_t5DD20B42149A11AEBF12A75505306E6EFC34943A* ___m_MissingUnicodesFromFontFile_64;
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C : public KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyUpEvent
|
|
struct KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394 : public KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD : public MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEnterEvent
|
|
struct MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E : public MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEnterWindowEvent
|
|
struct MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6 : public MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseLeaveEvent
|
|
struct MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9 : public MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseLeaveWindowEvent
|
|
struct MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7 : public MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5 : public MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseOutEvent
|
|
struct MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD : public MouseEventBase_1_t8CFFFFBC092D11B6F52D25C2E177074C0CC59945
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseOverEvent
|
|
struct MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2 : public MouseEventBase_1_t953A98054E7AFA8FD043BFDA1CFBB6160E06EBC2
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseUpEvent
|
|
struct MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811 : public MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationCancelEvent
|
|
struct NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E : public NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationMoveEvent
|
|
struct NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF : public NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31
|
|
{
|
|
// UnityEngine.UIElements.NavigationMoveEvent/Direction UnityEngine.UIElements.NavigationMoveEvent::<direction>k__BackingField
|
|
int32_t ___U3CdirectionU3Ek__BackingField_18;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.NavigationMoveEvent::<move>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmoveU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationSubmitEvent
|
|
struct NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1 : public NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationTabEvent
|
|
struct NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7 : public NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939
|
|
{
|
|
// UnityEngine.UIElements.NavigationTabEvent/Direction UnityEngine.UIElements.NavigationTabEvent::<direction>k__BackingField
|
|
int32_t ___U3CdirectionU3Ek__BackingField_18;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelTextSettings
|
|
struct PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25 : public TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCancelEvent
|
|
struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51 : public PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEvent
|
|
struct PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB : public PointerCaptureEventBase_1_t126554CD81D838778F0E7A459970847AD90E364D
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureOutEvent
|
|
struct PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5 : public PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerDownEvent
|
|
struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51 : public PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEnterEvent
|
|
struct PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB : public PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerLeaveEvent
|
|
struct PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84 : public PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerMoveEvent
|
|
struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3 : public PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.PointerMoveEvent::<isHandledByDraggable>k__BackingField
|
|
bool ___U3CisHandledByDraggableU3Ek__BackingField_38;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerOutEvent
|
|
struct PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5 : public PointerEventBase_1_t33EFDCA6FF8E804893DB7207C86CCB0F444D18CB
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerOverEvent
|
|
struct PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9 : public PointerEventBase_1_t793D0418D3A027331899231F3AF583DE8B4791CC
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerStationaryEvent
|
|
struct PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A : public PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9 : public PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionCancelEvent
|
|
struct TransitionCancelEvent_t74AA81A33FC7DA4C0E6E22C5D16B7BC51C94CF69 : public TransitionEventBase_1_t0AAD21652882D2FCF19FCF0C4347DC161E413130
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionEndEvent
|
|
struct TransitionEndEvent_t0795C167FC14C0B97AFB54CCC2E34639ED85CCDD : public TransitionEventBase_1_tE4425184474B0AA7732182D0294F0960A51DEAC4
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionRunEvent
|
|
struct TransitionRunEvent_t66B0D9314D2E48D69E5848848B085655F02BF1AF : public TransitionEventBase_1_t297898456ECA9E8B0FE5C4821C0FD1C2CEFA86AC
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionStartEvent
|
|
struct TransitionStartEvent_t1DCCFED2B1D4744B1884EEF23EF75A03B8D2E5DF : public TransitionEventBase_1_t1FB26EAAAF9B2F0657560F33B4BB75695CAF7579
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
struct ValidateCommandEvent_t0FFED9E9EA11DA2AAB7ACF37C9D0CDB1FD847FDA : public CommandEventBase_1_tDDFD63770D737B793DE4F5DA22FBA4462B9B229A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.WheelEvent
|
|
struct WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E : public MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.WheelEvent::<delta>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CdeltaU3Ek__BackingField_28;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlTraits
|
|
struct UxmlTraits_t2B80C3B5E7B8E0FBF2384F6224536E39AF415DB3 : public BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.RadioButtonGroup/UxmlTraits::m_Choices
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Choices_15;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014 : public MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5 : public MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup
|
|
struct RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE : public BaseField_1_tB351B262306464787F5A31B33CDC431E89796615
|
|
{
|
|
// System.Collections.Generic.IEnumerable`1<System.String> UnityEngine.UIElements.RadioButtonGroup::m_Choices
|
|
RuntimeObject* ___m_Choices_91;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.RadioButton> UnityEngine.UIElements.RadioButtonGroup::m_RadioButtons
|
|
List_1_t83677DD3658C07F0F0DD73BD808F8F9EE45CDDE4* ___m_RadioButtons_92;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>> UnityEngine.UIElements.RadioButtonGroup::m_RadioButtonValueChangedCallback
|
|
EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103* ___m_RadioButtonValueChangedCallback_93;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RuntimePanel
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346 : public BaseRuntimePanel_tEDFA512CC6692082EBBB87E5DC446A88D2E75DC4
|
|
{
|
|
// UnityEngine.UIElements.PanelSettings UnityEngine.UIElements.RuntimePanel::m_PanelSettings
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* ___m_PanelSettings_59;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
EventCallbackFunctorBaseU5BU5D_tDD22888A8C0E1D7F5FF2E417BE833FE4122228C7* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>
|
|
struct List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
FontAssetU5BU5D_t5A6A4DD2BD3259A2F45F7F4D7860BAEA3666EA93* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ReusableCollectionItemU5BU5D_t7B98FF5B03A63736FAB4B967CBD8C0AC0822F2F9* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>
|
|
struct List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StylePropertyNameU5BU5D_t531626CF806E3F3D348D1F38A9109767014C35F8* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
|
|
// System.Collections.Generic.Stack`1<System.Object>
|
|
|
|
// System.Collections.Generic.Stack`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.RadioButtonGroup,UnityEngine.UIElements.RadioButtonGroup/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.RadioButtonGroup,UnityEngine.UIElements.RadioButtonGroup/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TwoPaneSplitView,UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TwoPaneSplitView,UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
|
|
// UnityEngine.UIElements.ElementUnderPointer
|
|
|
|
// UnityEngine.UIElements.ElementUnderPointer
|
|
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase
|
|
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase
|
|
|
|
// UnityEngine.UIElements.EventCallbackList
|
|
|
|
// UnityEngine.UIElements.EventCallbackList
|
|
|
|
// UnityEngine.UIElements.EventCallbackListPool
|
|
|
|
// UnityEngine.UIElements.EventCallbackListPool
|
|
|
|
// UnityEngine.UIElements.EventCallbackRegistry
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.EventCallbackListPool UnityEngine.UIElements.EventCallbackRegistry::s_ListPool
|
|
EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* ___s_ListPool_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallbackRegistry
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>> UnityEngine.UIElements.EventDispatcher::k_EventQueuePool
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* ___k_EventQueuePool_2;
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy[] UnityEngine.UIElements.EventDispatcher::s_EditorStrategies
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ___s_EditorStrategies_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventsHelper
|
|
|
|
// UnityEngine.UIElements.MouseEventsHelper
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState
|
|
struct PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation[] UnityEngine.UIElements.PointerDeviceState::s_PlayerPointerLocations
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* ___s_PlayerPointerLocations_0;
|
|
// System.Int32[] UnityEngine.UIElements.PointerDeviceState::s_PressedButtons
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_PressedButtons_1;
|
|
// UnityEngine.UIElements.IPanel[] UnityEngine.UIElements.PointerDeviceState::s_PlayerPanelWithSoftPointerCapture
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* ___s_PlayerPanelWithSoftPointerCapture_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerEventsHelper
|
|
|
|
// UnityEngine.UIElements.PointerEventsHelper
|
|
|
|
// UnityEngine.UIElements.PointerId
|
|
struct PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerId::maxPointers
|
|
int32_t ___maxPointers_0;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::invalidPointerId
|
|
int32_t ___invalidPointerId_1;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::mousePointerId
|
|
int32_t ___mousePointerId_2;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::touchPointerIdBase
|
|
int32_t ___touchPointerIdBase_3;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::touchPointerCount
|
|
int32_t ___touchPointerCount_4;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::penPointerIdBase
|
|
int32_t ___penPointerIdBase_5;
|
|
// System.Int32 UnityEngine.UIElements.PointerId::penPointerCount
|
|
int32_t ___penPointerCount_6;
|
|
// System.Int32[] UnityEngine.UIElements.PointerId::hoveringPointers
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___hoveringPointers_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerId
|
|
|
|
// UnityEngine.UIElements.PointerType
|
|
struct PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.PointerType::mouse
|
|
String_t* ___mouse_0;
|
|
// System.String UnityEngine.UIElements.PointerType::touch
|
|
String_t* ___touch_1;
|
|
// System.String UnityEngine.UIElements.PointerType::pen
|
|
String_t* ___pen_2;
|
|
// System.String UnityEngine.UIElements.PointerType::unknown
|
|
String_t* ___unknown_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerType
|
|
|
|
// UnityEngine.UIElements.PropagationPaths
|
|
struct PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths> UnityEngine.UIElements.PropagationPaths::s_Pool
|
|
ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* ___s_Pool_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PropagationPaths
|
|
|
|
// UnityEngine.UIElements.ReusableCollectionItem
|
|
|
|
// UnityEngine.UIElements.ReusableCollectionItem
|
|
|
|
// System.String
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.String
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector
|
|
struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields
|
|
{
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData> UnityEngine.UIElements.StyleComplexSelector::s_PseudoStates
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* ___s_PseudoStates_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector
|
|
|
|
// UnityEngine.UIElements.StyleRule
|
|
|
|
// UnityEngine.UIElements.StyleRule
|
|
|
|
// UnityEngine.UIElements.StyleSelector
|
|
|
|
// UnityEngine.UIElements.StyleSelector
|
|
|
|
// UnityEngine.UIElements.TextUtilities
|
|
|
|
// UnityEngine.UIElements.TextUtilities
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
struct UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.UIElementsPackageUtility::EditorResourcesBasePath
|
|
String_t* ___EditorResourcesBasePath_0;
|
|
// System.Boolean UnityEngine.UIElements.UIElementsPackageUtility::IsUIEPackageLoaded
|
|
bool ___IsUIEPackageLoaded_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c
|
|
struct U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c UnityEngine.UIElements.StyleComplexSelector/<>c::<>9
|
|
U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* ___U3CU3E9_0;
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String> UnityEngine.UIElements.StyleComplexSelector/<>c::<>9__20_0
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* ___U3CU3E9__20_0_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c
|
|
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<System.Object>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<System.Object>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex>
|
|
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex>
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32Enum>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32Enum>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
};
|
|
|
|
// System.Boolean
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
// System.Byte[] System.Char::s_categoryForLatin1
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
|
|
};
|
|
|
|
// System.Char
|
|
|
|
// UnityEngine.Color
|
|
|
|
// UnityEngine.Color
|
|
|
|
// UnityEngine.UIElements.CreationContext
|
|
struct CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.CreationContext UnityEngine.UIElements.CreationContext::Default
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___Default_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CreationContext
|
|
|
|
// System.Double
|
|
|
|
// System.Double
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
|
|
// UnityEngine.TextCore.FaceInfo
|
|
|
|
// UnityEngine.TextCore.FaceInfo
|
|
|
|
// UnityEngine.UIElements.Focusable
|
|
|
|
// UnityEngine.UIElements.Focusable
|
|
|
|
// UnityEngine.UIElements.FontDefinition
|
|
|
|
// UnityEngine.UIElements.FontDefinition
|
|
|
|
// System.Int32
|
|
|
|
// System.Int32
|
|
|
|
// System.Int64
|
|
|
|
// System.Int64
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
};
|
|
|
|
// System.IntPtr
|
|
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.Mathf
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
// System.Single UnityEngine.Mathf::Epsilon
|
|
float ___Epsilon_0;
|
|
};
|
|
|
|
// UnityEngine.Mathf
|
|
|
|
// UnityEngine.Matrix4x4
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
|
|
{
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16;
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17;
|
|
};
|
|
|
|
// UnityEngine.Matrix4x4
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// System.Single
|
|
|
|
// System.Single
|
|
|
|
// UnityEngine.UIElements.StyleFloat
|
|
|
|
// UnityEngine.UIElements.StyleFloat
|
|
|
|
// UnityEngine.UIElements.StylePropertyName
|
|
|
|
// UnityEngine.UIElements.StylePropertyName
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection
|
|
|
|
// UnityEngine.UIElements.StyleSelectorPart
|
|
|
|
// UnityEngine.UIElements.StyleSelectorPart
|
|
|
|
// System.UInt64
|
|
|
|
// System.UInt64
|
|
|
|
// UnityEngine.Vector2
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
|
|
};
|
|
|
|
// UnityEngine.Vector2
|
|
|
|
// UnityEngine.Vector3
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
|
|
};
|
|
|
|
// UnityEngine.Vector3
|
|
|
|
// System.Void
|
|
|
|
// System.Void
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>
|
|
|
|
// UnityEngine.UIElements.ComputedStyle
|
|
|
|
// UnityEngine.UIElements.ComputedStyle
|
|
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
|
|
// System.Delegate
|
|
|
|
// System.Delegate
|
|
|
|
// UnityEngine.UIElements.DragEventsProcessor
|
|
|
|
// UnityEngine.UIElements.DragEventsProcessor
|
|
|
|
// UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_StaticFields
|
|
{
|
|
// UnityEngine.Event UnityEngine.Event::s_Current
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_Current_1;
|
|
// UnityEngine.Event UnityEngine.Event::s_MasterEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_MasterEvent_2;
|
|
};
|
|
|
|
// UnityEngine.Event
|
|
|
|
// UnityEngine.UIElements.EventBase
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase::s_LastTypeId
|
|
int64_t ___s_LastTypeId_0;
|
|
// System.UInt64 UnityEngine.UIElements.EventBase::s_NextEventId
|
|
uint64_t ___s_NextEventId_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
|
|
// UnityEngine.UIElements.StyleLength
|
|
|
|
// UnityEngine.UIElements.StyleLength
|
|
|
|
// UnityEngine.UIElements.TextCoreHandle
|
|
struct TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields
|
|
{
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings UnityEngine.UIElements.TextCoreHandle::s_LayoutSettings
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___s_LayoutSettings_5;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::s_TextInfoLayout
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___s_TextInfoLayout_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextCoreHandle
|
|
|
|
// UnityEngine.UIElements.UIR.TextCoreSettings
|
|
|
|
// UnityEngine.UIElements.UIR.TextCoreSettings
|
|
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings
|
|
|
|
// UnityEngine.TextCore.Text.TextGenerationSettings
|
|
|
|
// UnityEngine.TextCore.Text.TextInfo
|
|
struct TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_StaticFields
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextInfo::s_InfinityVectorPositive
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___s_InfinityVectorPositive_0;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextInfo::s_InfinityVectorNegative
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___s_InfinityVectorNegative_1;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.TextInfo
|
|
|
|
// UnityEngine.UIElements.TextNativeHandle
|
|
|
|
// UnityEngine.UIElements.TextNativeHandle
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1::s_TypeId
|
|
int64_t ___s_TypeId_15;
|
|
// UnityEngine.UIElements.ObjectPool`1<T> UnityEngine.UIElements.EventBase`1::s_Pool
|
|
ObjectPool_1_t5FC06EAFF1CF75D5A94102AEB85EBD17B92324E7* ___s_Pool_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1::s_TypeId
|
|
int64_t ___s_TypeId_15;
|
|
// UnityEngine.UIElements.ObjectPool`1<T> UnityEngine.UIElements.EventBase`1::s_Pool
|
|
ObjectPool_1_tC6626AC387E62EDBD0EA56924280D44E6476EC67* ___s_Pool_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>
|
|
struct EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1::s_TypeId
|
|
int64_t ___s_TypeId_15;
|
|
// UnityEngine.UIElements.ObjectPool`1<T> UnityEngine.UIElements.EventBase`1::s_Pool
|
|
ObjectPool_1_t36D394C38E988B494FF27A209F41C47573069AFA* ___s_Pool_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>
|
|
struct EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1::s_TypeId
|
|
int64_t ___s_TypeId_15;
|
|
// UnityEngine.UIElements.ObjectPool`1<T> UnityEngine.UIElements.EventBase`1::s_Pool
|
|
ObjectPool_1_tB199E7A154EA10017A4933C9D8D6832F4B01EF74* ___s_Pool_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>
|
|
struct EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C_StaticFields
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1::s_TypeId
|
|
int64_t ___s_TypeId_15;
|
|
// UnityEngine.UIElements.ObjectPool`1<T> UnityEngine.UIElements.EventBase`1::s_Pool
|
|
ObjectPool_1_t8E105ADAB08C8A295C9659F4B4AC2EF1C98112CA* ___s_Pool_16;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields
|
|
{
|
|
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
|
|
Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___textureRebuilt_4;
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
|
|
// UnityEngine.TextCore.Text.LineInfo
|
|
|
|
// UnityEngine.TextCore.Text.LineInfo
|
|
|
|
// UnityEngine.UIElements.ListViewDragger
|
|
|
|
// UnityEngine.UIElements.ListViewDragger
|
|
|
|
// UnityEngine.Material
|
|
|
|
// UnityEngine.Material
|
|
|
|
// UnityEngine.TextCore.Text.TextElementInfo
|
|
|
|
// UnityEngine.TextCore.Text.TextElementInfo
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_StaticFields
|
|
{
|
|
// UnityEngine.PropertyName UnityEngine.UIElements.VisualElement::tooltipPropertyKey
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___tooltipPropertyKey_6;
|
|
// System.UInt32 UnityEngine.UIElements.VisualElement::s_NextId
|
|
uint32_t ___s_NextId_9;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElement::s_EmptyClassList
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___s_EmptyClassList_10;
|
|
// UnityEngine.PropertyName UnityEngine.UIElements.VisualElement::userDataPropertyKey
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___userDataPropertyKey_11;
|
|
// System.String UnityEngine.UIElements.VisualElement::disabledUssClassName
|
|
String_t* ___disabledUssClassName_12;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::s_InfiniteRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___s_InfiniteRect_30;
|
|
// UnityEngine.Material UnityEngine.UIElements.VisualElement::s_runtimeMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_runtimeMaterial_46;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.UIElements.VisualElement/TypeData> UnityEngine.UIElements.VisualElement::s_TypeData
|
|
Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8* ___s_TypeData_48;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualElement::s_EmptyList
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___s_EmptyList_56;
|
|
// UnityEngine.UIElements.VisualElement/CustomStyleAccess UnityEngine.UIElements.VisualElement::s_CustomStyleAccess
|
|
CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1* ___s_CustomStyleAccess_60;
|
|
// System.Text.RegularExpressions.Regex UnityEngine.UIElements.VisualElement::s_InternalStyleSheetPath
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___s_InternalStyleSheetPath_63;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
|
|
// UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>
|
|
|
|
// System.Action`1<System.Object>
|
|
|
|
// System.Action`1<System.Object>
|
|
|
|
// System.Action`1<System.Single>
|
|
|
|
// System.Action`1<System.Single>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
|
|
// UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>
|
|
|
|
// UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
|
|
// UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ValidateCommandEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
|
|
// System.Func`1<System.Int32Enum>
|
|
|
|
// System.Func`1<System.Int32Enum>
|
|
|
|
// System.Func`1<UnityEngine.SystemLanguage>
|
|
|
|
// System.Func`1<UnityEngine.SystemLanguage>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
|
|
// System.Func`2<System.Object,System.Object>
|
|
|
|
// System.Func`2<System.Object,System.Object>
|
|
|
|
// System.Func`2<System.String,UnityEngine.Object>
|
|
|
|
// System.Func`2<System.String,UnityEngine.Object>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyUpEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyUpEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextClickEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextClickEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationCancelEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
|
|
// UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionCancelEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionEndEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionRunEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
|
|
// UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionStartEvent>
|
|
|
|
// System.Action
|
|
|
|
// System.Action
|
|
|
|
// UnityEngine.UIElements.BindableElement
|
|
|
|
// UnityEngine.UIElements.BindableElement
|
|
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.IMGUIContainer::ussClassName
|
|
String_t* ___ussClassName_82;
|
|
// System.String UnityEngine.UIElements.IMGUIContainer::ussFoldoutChildDepthClassName
|
|
String_t* ___ussFoldoutChildDepthClassName_83;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.IMGUIContainer::ussFoldoutChildDepthClassNames
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___ussFoldoutChildDepthClassNames_84;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.IMGUIContainer::k_OnGUIMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_OnGUIMarker_86;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.IMGUIContainer::k_ImmediateCallbackMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ImmediateCallbackMarker_87;
|
|
// UnityEngine.Event UnityEngine.UIElements.IMGUIContainer::s_DefaultMeasureEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_DefaultMeasureEvent_88;
|
|
// UnityEngine.Event UnityEngine.UIElements.IMGUIContainer::s_MeasureEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_MeasureEvent_89;
|
|
// UnityEngine.Event UnityEngine.UIElements.IMGUIContainer::s_CurrentEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_CurrentEvent_90;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer
|
|
|
|
// UnityEngine.UIElements.IMGUIEvent
|
|
|
|
// UnityEngine.UIElements.IMGUIEvent
|
|
|
|
// UnityEngine.UIElements.InputEvent
|
|
|
|
// UnityEngine.UIElements.InputEvent
|
|
|
|
// UnityEngine.UIElements.Panel
|
|
struct Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_StaticFields
|
|
{
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.Panel::s_MarkerPickAll
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_MarkerPickAll_29;
|
|
// UnityEngine.UIElements.LoadResourceFunction UnityEngine.UIElements.Panel::<loadResourceFunc>k__BackingField
|
|
LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850* ___U3CloadResourceFuncU3Ek__BackingField_38;
|
|
// UnityEngine.UIElements.TimeMsFunction UnityEngine.UIElements.Panel::<TimeSinceStartup>k__BackingField
|
|
TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B* ___U3CTimeSinceStartupU3Ek__BackingField_39;
|
|
// System.Action`1<UnityEngine.UIElements.Panel> UnityEngine.UIElements.Panel::beforeAnyRepaint
|
|
Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01* ___beforeAnyRepaint_45;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Panel
|
|
|
|
// UnityEngine.UIElements.PanelSettings
|
|
|
|
// UnityEngine.UIElements.PanelSettings
|
|
|
|
// UnityEngine.UIElements.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9_StaticFields
|
|
{
|
|
// System.Single UnityEngine.UIElements.ScrollView::k_DefaultScrollDecelerationRate
|
|
float ___k_DefaultScrollDecelerationRate_71;
|
|
// System.Single UnityEngine.UIElements.ScrollView::k_DefaultElasticity
|
|
float ___k_DefaultElasticity_73;
|
|
// System.String UnityEngine.UIElements.ScrollView::ussClassName
|
|
String_t* ___ussClassName_82;
|
|
// System.String UnityEngine.UIElements.ScrollView::viewportUssClassName
|
|
String_t* ___viewportUssClassName_83;
|
|
// System.String UnityEngine.UIElements.ScrollView::contentAndVerticalScrollUssClassName
|
|
String_t* ___contentAndVerticalScrollUssClassName_84;
|
|
// System.String UnityEngine.UIElements.ScrollView::contentUssClassName
|
|
String_t* ___contentUssClassName_85;
|
|
// System.String UnityEngine.UIElements.ScrollView::hScrollerUssClassName
|
|
String_t* ___hScrollerUssClassName_86;
|
|
// System.String UnityEngine.UIElements.ScrollView::vScrollerUssClassName
|
|
String_t* ___vScrollerUssClassName_87;
|
|
// System.String UnityEngine.UIElements.ScrollView::horizontalVariantUssClassName
|
|
String_t* ___horizontalVariantUssClassName_88;
|
|
// System.String UnityEngine.UIElements.ScrollView::verticalVariantUssClassName
|
|
String_t* ___verticalVariantUssClassName_89;
|
|
// System.String UnityEngine.UIElements.ScrollView::verticalHorizontalVariantUssClassName
|
|
String_t* ___verticalHorizontalVariantUssClassName_90;
|
|
// System.String UnityEngine.UIElements.ScrollView::scrollVariantUssClassName
|
|
String_t* ___scrollVariantUssClassName_91;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollView
|
|
|
|
// UnityEngine.UIElements.Scroller
|
|
struct Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.Scroller::ussClassName
|
|
String_t* ___ussClassName_69;
|
|
// System.String UnityEngine.UIElements.Scroller::horizontalVariantUssClassName
|
|
String_t* ___horizontalVariantUssClassName_70;
|
|
// System.String UnityEngine.UIElements.Scroller::verticalVariantUssClassName
|
|
String_t* ___verticalVariantUssClassName_71;
|
|
// System.String UnityEngine.UIElements.Scroller::sliderUssClassName
|
|
String_t* ___sliderUssClassName_72;
|
|
// System.String UnityEngine.UIElements.Scroller::lowButtonUssClassName
|
|
String_t* ___lowButtonUssClassName_73;
|
|
// System.String UnityEngine.UIElements.Scroller::highButtonUssClassName
|
|
String_t* ___highButtonUssClassName_74;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Scroller
|
|
|
|
// UnityEngine.TextCore.Text.TextAsset
|
|
|
|
// UnityEngine.TextCore.Text.TextAsset
|
|
|
|
// UnityEngine.TextCore.Text.TextSettings
|
|
|
|
// UnityEngine.TextCore.Text.TextSettings
|
|
|
|
// UnityEngine.UIElements.TooltipEvent
|
|
|
|
// UnityEngine.UIElements.TooltipEvent
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView
|
|
struct TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_UssClassName
|
|
String_t* ___s_UssClassName_65;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_ContentContainerClassName
|
|
String_t* ___s_ContentContainerClassName_66;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineClassName
|
|
String_t* ___s_HandleDragLineClassName_67;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineVerticalClassName
|
|
String_t* ___s_HandleDragLineVerticalClassName_68;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineHorizontalClassName
|
|
String_t* ___s_HandleDragLineHorizontalClassName_69;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineAnchorClassName
|
|
String_t* ___s_HandleDragLineAnchorClassName_70;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineAnchorVerticalClassName
|
|
String_t* ___s_HandleDragLineAnchorVerticalClassName_71;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HandleDragLineAnchorHorizontalClassName
|
|
String_t* ___s_HandleDragLineAnchorHorizontalClassName_72;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_VerticalClassName
|
|
String_t* ___s_VerticalClassName_73;
|
|
// System.String UnityEngine.UIElements.TwoPaneSplitView::s_HorizontalClassName
|
|
String_t* ___s_HorizontalClassName_74;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitView
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitViewResizer
|
|
|
|
// UnityEngine.UIElements.TwoPaneSplitViewResizer
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
struct BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.BaseVerticalCollectionView::k_EmptyItems
|
|
List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7* ___k_EmptyItems_78;
|
|
// System.Int32 UnityEngine.UIElements.BaseVerticalCollectionView::s_DefaultItemHeight
|
|
int32_t ___s_DefaultItemHeight_81;
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::s_ItemHeightProperty
|
|
CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F ___s_ItemHeightProperty_96;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::ussClassName
|
|
String_t* ___ussClassName_99;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::borderUssClassName
|
|
String_t* ___borderUssClassName_100;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemUssClassName
|
|
String_t* ___itemUssClassName_101;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::dragHoverBarUssClassName
|
|
String_t* ___dragHoverBarUssClassName_102;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemDragHoverUssClassName
|
|
String_t* ___itemDragHoverUssClassName_103;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemSelectedVariantUssClassName
|
|
String_t* ___itemSelectedVariantUssClassName_104;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemAlternativeBackgroundUssClassName
|
|
String_t* ___itemAlternativeBackgroundUssClassName_105;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::listScrollViewUssClassName
|
|
String_t* ___listScrollViewUssClassName_106;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::backgroundFillUssClassName
|
|
String_t* ___backgroundFillUssClassName_107;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
|
|
// UnityEngine.UIElements.BlurEvent
|
|
|
|
// UnityEngine.UIElements.BlurEvent
|
|
|
|
// UnityEngine.UIElements.ClickEvent
|
|
|
|
// UnityEngine.UIElements.ClickEvent
|
|
|
|
// UnityEngine.UIElements.ContextClickEvent
|
|
|
|
// UnityEngine.UIElements.ContextClickEvent
|
|
|
|
// UnityEngine.UIElements.ContextualMenuPopulateEvent
|
|
|
|
// UnityEngine.UIElements.ContextualMenuPopulateEvent
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
|
|
// UnityEngine.UIElements.ExecuteCommandEvent
|
|
|
|
// UnityEngine.UIElements.ExecuteCommandEvent
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958_StaticFields
|
|
{
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_ReadFontAssetDefinitionMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ReadFontAssetDefinitionMarker_42;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_AddSynthesizedCharactersMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_AddSynthesizedCharactersMarker_43;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_TryAddCharacterMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_TryAddCharacterMarker_44;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_TryAddCharactersMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_TryAddCharactersMarker_45;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_UpdateGlyphAdjustmentRecordsMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_UpdateGlyphAdjustmentRecordsMarker_46;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_ClearFontAssetDataMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_ClearFontAssetDataMarker_47;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.TextCore.Text.FontAsset::k_UpdateFontAssetDataMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_UpdateFontAssetDataMarker_48;
|
|
// System.String UnityEngine.TextCore.Text.FontAsset::s_DefaultMaterialSuffix
|
|
String_t* ___s_DefaultMaterialSuffix_49;
|
|
// System.Collections.Generic.HashSet`1<System.Int32> UnityEngine.TextCore.Text.FontAsset::k_SearchedFontAssetLookup
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* ___k_SearchedFontAssetLookup_50;
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset> UnityEngine.TextCore.Text.FontAsset::k_FontAssets_FontFeaturesUpdateQueue
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* ___k_FontAssets_FontFeaturesUpdateQueue_51;
|
|
// System.Collections.Generic.HashSet`1<System.Int32> UnityEngine.TextCore.Text.FontAsset::k_FontAssets_FontFeaturesUpdateQueueLookup
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* ___k_FontAssets_FontFeaturesUpdateQueueLookup_52;
|
|
// System.Collections.Generic.List`1<UnityEngine.Texture2D> UnityEngine.TextCore.Text.FontAsset::k_FontAssets_AtlasTexturesUpdateQueue
|
|
List_1_t0F231C3F13EBA1FF9081BD61489D01AA3CBE59D4* ___k_FontAssets_AtlasTexturesUpdateQueue_53;
|
|
// System.Collections.Generic.HashSet`1<System.Int32> UnityEngine.TextCore.Text.FontAsset::k_FontAssets_AtlasTexturesUpdateQueueLookup
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* ___k_FontAssets_AtlasTexturesUpdateQueueLookup_54;
|
|
// System.UInt32[] UnityEngine.TextCore.Text.FontAsset::k_GlyphIndexArray
|
|
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___k_GlyphIndexArray_65;
|
|
};
|
|
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
|
|
// UnityEngine.UIElements.KeyUpEvent
|
|
|
|
// UnityEngine.UIElements.KeyUpEvent
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
|
|
// UnityEngine.UIElements.MouseEnterEvent
|
|
|
|
// UnityEngine.UIElements.MouseEnterEvent
|
|
|
|
// UnityEngine.UIElements.MouseEnterWindowEvent
|
|
|
|
// UnityEngine.UIElements.MouseEnterWindowEvent
|
|
|
|
// UnityEngine.UIElements.MouseLeaveEvent
|
|
|
|
// UnityEngine.UIElements.MouseLeaveEvent
|
|
|
|
// UnityEngine.UIElements.MouseLeaveWindowEvent
|
|
|
|
// UnityEngine.UIElements.MouseLeaveWindowEvent
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
|
|
// UnityEngine.UIElements.MouseOutEvent
|
|
|
|
// UnityEngine.UIElements.MouseOutEvent
|
|
|
|
// UnityEngine.UIElements.MouseOverEvent
|
|
|
|
// UnityEngine.UIElements.MouseOverEvent
|
|
|
|
// UnityEngine.UIElements.MouseUpEvent
|
|
|
|
// UnityEngine.UIElements.MouseUpEvent
|
|
|
|
// UnityEngine.UIElements.NavigationCancelEvent
|
|
|
|
// UnityEngine.UIElements.NavigationCancelEvent
|
|
|
|
// UnityEngine.UIElements.NavigationMoveEvent
|
|
|
|
// UnityEngine.UIElements.NavigationMoveEvent
|
|
|
|
// UnityEngine.UIElements.NavigationSubmitEvent
|
|
|
|
// UnityEngine.UIElements.NavigationSubmitEvent
|
|
|
|
// UnityEngine.UIElements.NavigationTabEvent
|
|
|
|
// UnityEngine.UIElements.NavigationTabEvent
|
|
|
|
// UnityEngine.UIElements.PanelTextSettings
|
|
struct PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.PanelTextSettings::s_DefaultPanelTextSettings
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* ___s_DefaultPanelTextSettings_22;
|
|
// System.Func`2<System.String,UnityEngine.Object> UnityEngine.UIElements.PanelTextSettings::EditorGUIUtilityLoad
|
|
Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24* ___EditorGUIUtilityLoad_23;
|
|
// System.Func`1<UnityEngine.SystemLanguage> UnityEngine.UIElements.PanelTextSettings::GetCurrentLanguage
|
|
Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE* ___GetCurrentLanguage_24;
|
|
// System.String UnityEngine.UIElements.PanelTextSettings::s_DefaultEditorPanelTextSettingPath
|
|
String_t* ___s_DefaultEditorPanelTextSettingPath_25;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PanelTextSettings
|
|
|
|
// UnityEngine.UIElements.PointerCancelEvent
|
|
|
|
// UnityEngine.UIElements.PointerCancelEvent
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEvent
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEvent
|
|
|
|
// UnityEngine.UIElements.PointerCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.PointerCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.PointerDownEvent
|
|
|
|
// UnityEngine.UIElements.PointerDownEvent
|
|
|
|
// UnityEngine.UIElements.PointerEnterEvent
|
|
|
|
// UnityEngine.UIElements.PointerEnterEvent
|
|
|
|
// UnityEngine.UIElements.PointerLeaveEvent
|
|
|
|
// UnityEngine.UIElements.PointerLeaveEvent
|
|
|
|
// UnityEngine.UIElements.PointerMoveEvent
|
|
|
|
// UnityEngine.UIElements.PointerMoveEvent
|
|
|
|
// UnityEngine.UIElements.PointerOutEvent
|
|
|
|
// UnityEngine.UIElements.PointerOutEvent
|
|
|
|
// UnityEngine.UIElements.PointerOverEvent
|
|
|
|
// UnityEngine.UIElements.PointerOverEvent
|
|
|
|
// UnityEngine.UIElements.PointerStationaryEvent
|
|
|
|
// UnityEngine.UIElements.PointerStationaryEvent
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
|
|
// UnityEngine.UIElements.TransitionCancelEvent
|
|
|
|
// UnityEngine.UIElements.TransitionCancelEvent
|
|
|
|
// UnityEngine.UIElements.TransitionEndEvent
|
|
|
|
// UnityEngine.UIElements.TransitionEndEvent
|
|
|
|
// UnityEngine.UIElements.TransitionRunEvent
|
|
|
|
// UnityEngine.UIElements.TransitionRunEvent
|
|
|
|
// UnityEngine.UIElements.TransitionStartEvent
|
|
|
|
// UnityEngine.UIElements.TransitionStartEvent
|
|
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
|
|
// UnityEngine.UIElements.WheelEvent
|
|
|
|
// UnityEngine.UIElements.WheelEvent
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup
|
|
struct RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.RadioButtonGroup::ussClassName
|
|
String_t* ___ussClassName_90;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RadioButtonGroup
|
|
|
|
// UnityEngine.UIElements.RuntimePanel
|
|
struct RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.RuntimePanel::s_EventDispatcher
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___s_EventDispatcher_58;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RuntimePanel
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.TextCore.Text.LineInfo[]
|
|
struct LineInfoU5BU5D_t37598F2175B291797270D1161DC29B6296FB169D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5 m_Items[1];
|
|
|
|
inline LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5* 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, LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, LineInfo_t2BBD461B330C46ACA45596A8E72FEA4172F88CF5 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.TextCore.Text.TextElementInfo[]
|
|
struct TextElementInfoU5BU5D_tEC28C9B72883EE21AA798913497C69E179A15C4E : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976 m_Items[1];
|
|
|
|
inline TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976* 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, TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textElement_3), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_4), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_5), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_7), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TextElementInfo_tDD7A12E319505510E0B350E342BD55F32AB5F976 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textElement_3), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_4), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_5), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_7), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// UnityEngine.Vector2[]
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 m_Items[1];
|
|
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* 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, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Boolean[]
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) bool m_Items[1];
|
|
|
|
inline bool GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline bool* 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, bool value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.VisualElement[]
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* m_Items[1];
|
|
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** 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, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.IPointerEvent[]
|
|
struct IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22 : 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);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.IMouseEvent[]
|
|
struct IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8 : 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);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.PointerDeviceState/PointerLocation[]
|
|
struct PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6 m_Items[1];
|
|
|
|
inline PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* 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, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CPanelU3Ek__BackingField_1), (void*)NULL);
|
|
}
|
|
inline PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CPanelU3Ek__BackingField_1), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.IPanel[]
|
|
struct IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933 : 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);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSelector[]
|
|
struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* m_Items[1];
|
|
|
|
inline StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362** 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, StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSelectorPart[]
|
|
struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 m_Items[1];
|
|
|
|
inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* 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, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Value_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tempData_2), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Value_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tempData_2), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// System.Object[]
|
|
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);
|
|
}
|
|
};
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
|
|
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<System.Object,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory_2__ctor_m88A0346DFE6F79DFE0C5986C5804D4FABA9DB95A_gshared (UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,System.Object>::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseFieldTraits_2_Init_mD09C39ABBF5E8B897DFA03AF16393308BD3FDBFC_gshared (BaseFieldTraits_2_t284A963BB2114CA90D4BCC48CCEF0F82FFAB9CA2* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.BaseField`1/UxmlTraits<System.Int32>::ParseChoiceList(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861_gshared (String_t* ___0_choicesFromBag, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseFieldTraits_2__ctor_m16AADFADEFCF3DE29A44ACCA6533A881A38DC9A1_gshared (BaseFieldTraits_2_t284A963BB2114CA90D4BCC48CCEF0F82FFAB9CA2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<System.Object>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared (EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<System.Object>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<System.Object>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>::set_defaultValue(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_gshared_inline (TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlEnumAttributeDescription`1<System.Int32Enum>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlEnumAttributeDescription_1__ctor_m322D3D784BFA831AA5CBCFAC52386E719D96B5CC_gshared (UxmlEnumAttributeDescription_1_t3735F5ADC360FC4636F222E8B1F27F9E70DAEF4F* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32Enum>::set_defaultValue(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_m79AF47A81305A712EECAA1732B7F0D328C0BD9EB_gshared_inline (TypedUxmlAttributeDescription_1_t9D2289098FC52844881F6536BCAA110E7F1D5B9C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
// TSource System.Linq.Enumerable::First<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateVirtualizationController<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_CreateVirtualizationController_TisRuntimeObject_m961F2939335CE13D7FE75882A6D7C871CBAE9522_gshared (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Single>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m770CD2F8BB65F2EDA5128CA2F96D71C35B23E859_gshared (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m83CEE170A5B9427B596A04F9F50676B044223927_gshared (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<System.Int32,System.Int32>::Invoke(T1,T2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m728A2437F181FBC56F4D617249B47F513AC9FC43_gshared_inline (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* __this, int32_t ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<System.Int32>::Contains(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>::get_destinationPanel()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PanelChangedEventBase_1_get_destinationPanel_m7F1989B93B498769D6A6EB6A5CB991AB3B4D8FD2_gshared_inline (PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<System.Int32Enum,System.Object>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mCAAE199274CB859466485ECBAE0128A25C8BBAAE_gshared (Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>::get_originPanel()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PanelChangedEventBase_1_get_originPanel_m3E8443C7EDD04BA92941A896405FB221339A39B5_gshared_inline (PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Object>::Invoke(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.KeyboardEventBase`1<System.Object>::get_shiftKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyboardEventBase_1_get_shiftKey_m251E3EA2045B05A2E7F801DD7A5A52A50ABDE1EA_gshared (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_button()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_button_m3FC007A6430390DB59817E93D8AB324EC13FE995_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_pressedButtons()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_pointerType()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* PointerEventBase_1_get_pointerType_m05EB5D56224F7A7A190AAFBBD622113A7A704F7C_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_pointerId()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_isPrimary()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventBase_1_get_isPrimary_m0F266CD0EEF96089B726E1E69A8A07029685E95B_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<System.Int32>::Remove(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<System.Object>::TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1<System.Object>::get_relatedTarget()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusEventBase_1_get_relatedTarget_m4D8C2900A27846F2A108FB515602553CB75C180F_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_gshared (CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F* __this, String_t* ___0_propertyName, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::IsNotNull<System.Object>(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotNull_TisRuntimeObject_mFA75318800124DED2E924476F16DD129394A20AC_gshared (RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// T UnityEngine.ScriptableObject::CreateInstance<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ScriptableObject_CreateInstance_TisRuntimeObject_mC07BE383F5EF546F4191035A679930852BC19BDA_gshared (const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Add(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
// TResult System.Func`1<System.Int32Enum>::Invoke()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_1_Invoke_m9ED2CAC2A2096B0FA42F20B76DCE0CFD80228DE6_gshared_inline (Func_1_tA8F91C23675D323D5C9C1F3D2FAA8008CB1EF551* __this, const RuntimeMethod* method) ;
|
|
// TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Item(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
// TResult System.Func`2<System.Object,System.Object>::Invoke(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureEventBase_1__ctor_m2AC985C6BB448D51EF38120C67FB476FD9B79F60_gshared (PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseCaptureEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureEventBase_1__ctor_m9538E317C257228A835903B8115452CD13EE27B1_gshared (MouseCaptureEventBase_1_t2269B9348BF179ADBDBBCE25ADF5E431A05DD5A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventsHelper::SendEnterLeave<System.Object,System.Object>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventsHelper_SendEnterLeave_TisRuntimeObject_TisRuntimeObject_m1FCE093303CE43483D779A485959EAE6426665EB_gshared (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderPointer, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderPointer, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_position, int32_t ___4_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventsHelper::SendEnterLeave<System.Object,System.Object>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventsHelper_SendEnterLeave_TisRuntimeObject_TisRuntimeObject_mA9FDCD2BEADD3CCAA145F8A362AC0AF11F7CD58F_gshared (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderMouse, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderMouse, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_mousePosition, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.EventBase`1<System.Object>::GetPooled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<System.Object>::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_1_Init_mD11258015D6778B557F3DED4696BEF3335FD66C3_gshared (EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared (EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.Stack`1<System.Object>::Pop()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<System.Object>::Push(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MouseEventBase_1_GetPooled_mAEB02CEEE74548033154896B4BC8BAEEDE16FC5A_gshared (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_mousePosition, bool ___2_recomputeTopElementUnderMouse, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.PointerEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerEventBase_1_GetPooled_m73C55154987E587C2FC2BA5545BD35CAE027F3BA_gshared (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_position, int32_t ___2_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.ObjectPool`1<System.Object>::Get()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjectPool_1_Get_m8083040649293905041518C11D70D801265F2F87_gshared (ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<System.Object>::Release(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1_Release_m6F11856AD6B4BB632CF4268585A12AD5BA07F7EA_gshared (ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6* __this, RuntimeObject* ___0_element, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<System.Object>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1__ctor_m1BFAB787CE8A32532F3B2E3D4AF4B1905E0230DE_gshared (ObjectPool_1_tC06B45D8A0C7CBBDAE418090727D1DF1F2FCB9F6* __this, int32_t ___0_maxSize, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54_gshared (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220_gshared (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::get_Current()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_gshared_inline (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D_gshared (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TransitionEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionEventBase_1__ctor_m9620CC0C2912EF596AFFE7229C4EB742A2FB048E_gshared (TransitionEventBase_1_t933635D8B03AA439D2C5DEDAB40FFEDEDD47C0DD* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<System.Object>::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<System.Object>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventBase_1_PostDispatch_m55159C6FE00ECB9C36A55169DFA3EAE699EB3AC3_gshared (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.PointerEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<System.Object>::set_clickCount(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventBase_1_set_clickCount_m951FFA44DA701FFDDB0784EC6EC325293D671DD0_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<System.Object>::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MouseEventBase_1_GetPooled_m3D8B2183776DC9250833F7A866C03A6262D50088_gshared (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<System.Object>::GetPooled(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MouseEventBase_1_GetPooled_m8109EEFF1AF800A62540B9E8364DDAD596D502BE_gshared (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<System.Object>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventBase_1_PostDispatch_m6B960FED57E8CC7841E48230254BAF12F40B4C5E_gshared (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CommandEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandEventBase_1__ctor_m316BD687453DE8C7E2FD2C8CD98929D1FC34756C_gshared (CommandEventBase_1_t5C854B0E85C1032ABBABBDFD0046CDB90858E518* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<System.Object>::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusEventBase_1_Init_m90E3F1DBC6B1448469F14E45B5F7168589803B98_gshared (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusEventBase_1__ctor_m22E68D411B006E13551B87551DF92938B8E451FA_gshared (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1<System.Object>::get_focusController()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* FocusEventBase_1_get_focusController_mBF86C2859478BA0F9C7B3FE06F0F124733C0A298_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1<System.Object>::get_pressedButtons()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseEventBase_1_get_pressedButtons_mE1BB0319BD4FC0790C886E984B48E75000C464AC_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1<System.Object>::get_modifiers()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyboardEventBase_1_get_modifiers_m3854A98D9AB58D771AA688360DB63B5D22DEA9DE_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method) ;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1<System.Object>::get_character()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyboardEventBase_1_get_character_mA9CEB62FCAB60DB09B83D5502FE84DE4B70D3727_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1<System.Object>::get_keyCode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyboardEventBase_1_get_keyCode_m416D85227006AA4A4F4A20396D2291068AA4916F_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.KeyboardEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardEventBase_1__ctor_m58E4DB80F810EC3538D88CC0D9856AFB36D64B42_gshared (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PanelChangedEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelChangedEventBase_1__ctor_m4AC8196BE117F81955496D33C8F2F07869E87897_gshared (PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<System.Object>::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationEventBase_1_Init_m207A5CA6A8C3A85BE62B23B38AA3FE7ADD4C322F_gshared (NavigationEventBase_1_tBB5FE8812B706A8379B36A5C435210DBE90644EB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationEventBase_1__ctor_mA5A97B1F0450883554F0B9A668C117821F0FC157_gshared (NavigationEventBase_1_tBB5FE8812B706A8379B36A5C435210DBE90644EB* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3C5862A628EEC02A20BF1DD0DAC66C872AA86B71_gshared (Dictionary_2_t377C2B6CAA20982B0AC7A180E3800172E88C8BDE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m65F7AB2D49B09E3F4C0FD364FC3DBDB4CC501C9C_gshared (Dictionary_2_t377C2B6CAA20982B0AC7A180E3800172E88C8BDE* __this, RuntimeObject* ___0_key, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 ___1_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m210FC0055E9EF77E13C23B66ED80E6E7CD6DB4FF_gshared (Dictionary_2_t377C2B6CAA20982B0AC7A180E3800172E88C8BDE* __this, RuntimeObject* ___0_key, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m67C538A5EBF57C4844107A8EF25DB2CAAFBAF8FB_gshared (RuntimeObject* ___0_source, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___1_selector, const RuntimeMethod* method) ;
|
|
// TSource[] System.Linq.Enumerable::ToArray<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Enumerable_ToArray_TisRuntimeObject_mA54265C2C8A0864929ECD300B75E4952D553D17D_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.RadioButtonGroup,UnityEngine.UIElements.RadioButtonGroup/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_m38DAD155B16017BA79124CB537DD2545D0740805 (UxmlFactory_2_t47455F8804FE5FBBAAFFE466FA749DBCBBE6DFEE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_t47455F8804FE5FBBAAFFE466FA749DBCBBE6DFEE*, const RuntimeMethod*))UxmlFactory_2__ctor_m88A0346DFE6F79DFE0C5986C5804D4FABA9DB95A_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
inline void BaseFieldTraits_2_Init_m765BE03BDB7A4A470F510B71C4E8B929FEC37868 (BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257, const RuntimeMethod*))BaseFieldTraits_2_Init_mD09C39ABBF5E8B897DFA03AF16393308BD3FDBFC_gshared)(__this, ___0_ve, ___1_bag, ___2_cc, method);
|
|
}
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.BaseField`1/UxmlTraits<System.Int32>::ParseChoiceList(System.String)
|
|
inline List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861 (String_t* ___0_choicesFromBag, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* (*) (String_t*, const RuntimeMethod*))UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861_gshared)(___0_choicesFromBag, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.RadioButtonGroup::set_choices(System.Collections.Generic.IEnumerable`1<System.String>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RadioButtonGroup_set_choices_m67A6FABD7E22F1C7997C52F5E68FEE69C6DED64C (RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlStringAttributeDescription::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlStringAttributeDescription__ctor_mA8A849D4B098131C4D456911CAA16E3A964B51D7 (UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlAttributeDescription::set_name(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline (UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseFieldTraits`2<System.Int32,UnityEngine.UIElements.UxmlIntAttributeDescription>::.ctor()
|
|
inline void BaseFieldTraits_2__ctor_m24D431C996A2879E3178FDF616EE6CD4004F588F (BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseFieldTraits_2_t53D6D25C007082D64FCE54A038FBB3035CAC857A*, const RuntimeMethod*))BaseFieldTraits_2__ctor_m16AADFADEFCF3DE29A44ACCA6533A881A38DC9A1_gshared)(__this, method);
|
|
}
|
|
// System.String UnityEngine.UIElements.VisualElement::get_viewDataKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* VisualElement_get_viewDataKey_m1F990A70B7861D0071A4462C62477363C69223F5 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::SaveViewData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::AddToClassList(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_className, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_name(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy UnityEngine.UIElements.VisualElement::get_hierarchy()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement/Hierarchy::Add(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648 (Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_child, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::Add(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_child, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::RemoveFromClassList(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_className, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementExtensions::RemoveManipulator(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IManipulator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementExtensions_RemoveManipulator_m7FF368767CDA311BA47F56729AA68B173F1BED35 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, RuntimeObject* ___1_manipulator, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::get_childCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5 (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.GeometryChangedEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::PostDisplaySetup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_PostDisplaySetup_m02D365F56B5A7DEF64BED0407AF48E4685D8B43A (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogError(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.GeometryChangedEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Single UnityEngine.UIElements.TwoPaneSplitView::get_fixedPaneDimension()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TwoPaneSplitView_get_fixedPaneDimension_m822BCD676B187C5640A6E7F86B63E2705A2C621C (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::set_fixedPaneDimension(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_set_fixedPaneDimension_m280265B68A13E2A5BBB2DC83CFF16261B45BE76C (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_get_Item_m84C0E356F6D66363D97482DC4EFC17060060C693 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IStyle UnityEngine.UIElements.VisualElement::get_style()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleLength UnityEngine.UIElements.StyleLength::op_Implicit(UnityEngine.UIElements.StyleKeyword)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990 (int32_t ___0_keyword, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.StyleFloat::op_Implicit(UnityEngine.UIElements.StyleKeyword)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 StyleFloat_op_Implicit_m664791457EBA988722362ABB4560E5E464A1E88B (int32_t ___0_keyword, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleLength UnityEngine.UIElements.StyleLength::op_Implicit(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019 (float ___0_v, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.StyleFloat::op_Implicit(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB (float ___0_v, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IResolvedStyle UnityEngine.UIElements.VisualElement::get_resolvedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitViewResizer::.ctor(UnityEngine.UIElements.TwoPaneSplitView,System.Int32,UnityEngine.UIElements.TwoPaneSplitViewOrientation)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitViewResizer__ctor_m2531CFDFE34DBF0649687308F5DB77C7A4636D89 (TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* __this, TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* ___0_splitView, int32_t ___1_dir, int32_t ___2_orientation, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementExtensions::AddManipulator(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IManipulator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementExtensions_AddManipulator_m3579CA75D8F76245DC3B7C9F5FCB9B769D69E27D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, RuntimeObject* ___1_manipulator, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::OnSizeChange()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_OnSizeChange_mC6F30AC185819EDC69A1BEE647F085F73179090A (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.StyleFloat::get_value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StyleFloat_get_value_mA16B2A988966FF48ED290BA14F3CD1011608ECC2 (StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::SetDragLineOffset(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_SetDragLineOffset_m0AA97C723D55B23A1028EDEF36222428876F17B2 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_offset, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::SetFixedPaneDimension(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_SetFixedPaneDimension_mF59B929CBEEF382C047DCBC34178DBEEC05247F7 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_dimension, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::OnViewDataReady()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_OnViewDataReady_mC163AC6CDC322CCB2941C1DEFC6EF3900C332C79 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.VisualElement::GetFullHierarchicalViewDataKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* VisualElement_GetFullHierarchicalViewDataKey_m36E019EF47770CE6BC054BB606CD224517028A8F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::OverwriteFromViewData(System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_OverwriteFromViewData_mF7BC9343789BED5307CCE900D7F05A62D6027AB3 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, RuntimeObject* ___0_obj, String_t* ___1_key, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TwoPaneSplitView,UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_m018A502C0F2472D4020C6F496065D83006F5FDFB (UxmlFactory_2_tEEF1268EAE5CA173703C394D675084E6A1ECB983* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_tEEF1268EAE5CA173703C394D675084E6A1ECB983*, const RuntimeMethod*))UxmlFactory_2__ctor_m88A0346DFE6F79DFE0C5986C5804D4FABA9DB95A_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_m5CDDC1216CB5BA22DF16A19E01C37EF26B4AF8FB (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::Init(System.Int32,System.Single,UnityEngine.UIElements.TwoPaneSplitViewOrientation)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_Init_mE0E3846607CD76825587E2F2F6D9E1BB58984151 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, int32_t ___0_fixedPaneIndex, float ___1_fixedPaneInitialDimension, int32_t ___2_orientation, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlIntAttributeDescription::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlIntAttributeDescription__ctor_mF713BAA8CE638F4B2FB569AB2BC34B986E0E6014 (UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline (TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03*, int32_t, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>::.ctor()
|
|
inline void UxmlEnumAttributeDescription_1__ctor_m69AAD7688907FE7D840A63F5668B0BC8EC4A45C9 (UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C*, const RuntimeMethod*))UxmlEnumAttributeDescription_1__ctor_m322D3D784BFA831AA5CBCFAC52386E719D96B5CC_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_mD0797674F7E1719CC35FD9766E5D3ED256F19EBB_inline (TypedUxmlAttributeDescription_1_t13464B85D57627D4381BEA28451BC34601B415D5* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TypedUxmlAttributeDescription_1_t13464B85D57627D4381BEA28451BC34601B415D5*, int32_t, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_m79AF47A81305A712EECAA1732B7F0D328C0BD9EB_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_m99053329DC8F0D4087968FCA3C60857B853E4346 (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, const RuntimeMethod* method) ;
|
|
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___0_a, Delegate_t* ___1_b, const RuntimeMethod* method) ;
|
|
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3 (Delegate_t* ___0_source, Delegate_t* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RefreshItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::get_viewController()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.IList UnityEngine.UIElements.CollectionViewController::get_itemsSource()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::GetOrCreateViewController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* BaseVerticalCollectionView_GetOrCreateViewController_mBE5552FD15421451E3968416C1FE3E0B264D3145 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::set_itemsSource(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_set_itemsSource_mE48BCD1FF9005623ECBE88064150515D7BE25918 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::Rebuild()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ClearSelection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
|
|
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline)(__this, method);
|
|
}
|
|
// TSource System.Linq.Enumerable::First<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
inline int32_t Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_gshared)(___0_source, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::GetOrCreateVirtualizationController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* BaseVerticalCollectionView_GetOrCreateVirtualizationController_m08F5D26C6F2153BE1B91889B357AA977A58ABB28 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.VisualElement::get_scaledPixelsPerPoint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::get_fixedItemHeight()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BaseVerticalCollectionView_get_fixedItemHeight_m7478BCCFEB566DBC1FF0D99BA0357D12FF8BC481_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::EnableInClassList(System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_EnableInClassList_m8576D29AB2E6772EBAAA0E0EC2698244C8C87365 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_className, bool ___1_enable, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ICollectionDragAndDropController UnityEngine.UIElements.ListViewDragger::get_dragAndDropController()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ListViewDragger_get_dragAndDropController_mA5270D767C750674CEAEBB7A21E586B549B5488F_inline (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
|
|
inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, bool, const RuntimeMethod*))Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared)(__this, ___0_value, method);
|
|
}
|
|
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
|
|
inline bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::InitializeDragAndDropController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_InitializeDragAndDropController_mE22E0AE631868C63B55233C8D2D05746E0434B79 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ScrollView::set_mode(UnityEngine.UIElements.ScrollViewMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollView_set_mode_mA5C5D8ED5D9E2291182843BE7F80D061FE949816 (ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateVirtualizationController<UnityEngine.UIElements.ReusableCollectionItem>()
|
|
inline void BaseVerticalCollectionView_CreateVirtualizationController_TisReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086_m80BE730714B5941882EFFAE4A1D8F7A05FB32DFB (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*, const RuntimeMethod*))BaseVerticalCollectionView_CreateVirtualizationController_TisRuntimeObject_m961F2939335CE13D7FE75882A6D7C871CBAE9522_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController__ctor_m0C6B9FB403570C94F587D445DDF79E6D196B2F86 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetViewController(UnityEngine.UIElements.CollectionViewController)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetViewController_mF1D50F1DE9A5441DA8D682A85A3247A8E0E40E91 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* ___0_controller, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::remove_itemIndexChanged(System.Action`2<System.Int32,System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_remove_itemIndexChanged_m04DC18BF142F24C0B543B472D94B53FAF17C8054 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::remove_itemsSourceChanged(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_remove_itemsSourceChanged_mD6136A1F18E2CD8320675B0A5675CEF615F52331 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::SetView(UnityEngine.UIElements.BaseVerticalCollectionView)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_SetView_m46D18786C18F4F40DE62AFCDB120671E15051DA1 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* ___0_view, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::add_itemIndexChanged(System.Action`2<System.Int32,System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_add_itemIndexChanged_mC5296D3EC98FD946CB88929C948DE88B26681724 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::add_itemsSourceChanged(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_add_itemsSourceChanged_mBA26B718C2D89D0CC5EB33B2D3FC11EF920B7123 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ListViewDragger::.ctor(UnityEngine.UIElements.BaseVerticalCollectionView)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewDragger__ctor_m012FA44B1E465E3691B5C6150CAACD9C19419DF2 (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* __this, BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* ___0_listView, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.DragEventsProcessor::UnregisterCallbacksFromTarget(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DragEventsProcessor_UnregisterCallbacksFromTarget_m4970926A61A828B7066C690841ED99172848569B (DragEventsProcessor_tC4594177C458D0DE91C0A4D1017CEF93DA69C9B6* __this, bool ___0_unregisterPanelEvents, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ListViewDragger::set_dragAndDropController(UnityEngine.UIElements.ICollectionDragAndDropController)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListViewDragger_set_dragAndDropController_m8E8172E3015EE8DAD69597B8FADC95BE5D271943_inline (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
|
|
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
|
inline void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BindableElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454 (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_selectionType(UnityEngine.UIElements.SelectionType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_selectionType_m92B637F0AA1583F7C1732CC936BB4553BAB13C13 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ScrollView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollView__ctor_m24F4FFBEBBA20900EBDFD2F1481ACB133D896280 (ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_viewDataKey(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_viewDataKey_m6318C0A701350678B0DBF34939C3BC392134B092 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Scroller UnityEngine.UIElements.ScrollView::get_verticalScroller()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ScrollView_get_verticalScroller_mDCBC1E09B2754C31BF917818CB07E5F36EC0D13A_inline (ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Single>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_1__ctor_m770CD2F8BB65F2EDA5128CA2F96D71C35B23E859 (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m770CD2F8BB65F2EDA5128CA2F96D71C35B23E859_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.Scroller::add_valueChanged(System.Action`1<System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scroller_add_valueChanged_mEBE3F410DB7D57597D8A7748805CB4CE4371D42B (Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* __this, Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mA03324C646FE93909402ABA6C660D14D22ACE4F8 (EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.CustomStyleResolvedEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m929B5D5292DB931820A52428141FECB39016A6B7 (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.AttachToPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m0407B736C264F06C81E5CBB70EF40FBB975AC634 (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.DetachFromPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::set_focusable(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.UsageHints UnityEngine.UIElements.VisualElement::get_usageHints()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElement_get_usageHints_mA29803CA9342027B81EBC54C1CB6B92D635153BF (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_usageHints(UnityEngine.UIElements.UsageHints)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_usageHints_mD317223075C8C708C1DB66CF90E81C5F9DE4C5B0 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_isCompositeRoot(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_isCompositeRoot_m9D76CE169E211EBD63CFA23C85271BB3BA971D65 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Focusable::set_delegatesFocus(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_2__ctor_m83CEE170A5B9427B596A04F9F50676B044223927 (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m83CEE170A5B9427B596A04F9F50676B044223927_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Collections.IList UnityEngine.UIElements.BaseVerticalCollectionView::get_itemsSource()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_itemsSource_mE1E01CC16339B3B28C6E1198A74AB8DE8E31A496 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::get_makeItem()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_bindItem()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<System.Int32,System.Int32>::Invoke(T1,T2)
|
|
inline void Action_2_Invoke_m728A2437F181FBC56F4D617249B47F513AC9FC43_inline (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* __this, int32_t ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*, int32_t, int32_t, const RuntimeMethod*))Action_2_Invoke_m728A2437F181FBC56F4D617249B47F513AC9FC43_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
// UnityEngine.UIElements.IBinding UnityEngine.UIElements.BindableElement::get_binding()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BindableElement_get_binding_m6175B80F3A495FAE7155D19DB30D155B583B9302_inline (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IVisualElementScheduler UnityEngine.UIElements.VisualElement::get_schedule()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action::Invoke()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RefreshSelection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RefreshSelection_m38E94A768745936EB551A2D896ED8D92080AB244 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::get_virtualizationController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
|
|
inline void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
|
|
inline void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1<System.Int32>::Contains(T)
|
|
inline bool List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_gshared)(__this, ___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
|
|
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
|
|
inline void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::HasValidDataAndBindings()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::get_layout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_height()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Single::IsNaN(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Rect::get_size()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::Resize(UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_Resize_m37EBBDA7D272B185B38F6B6DBA54527A8A52420A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_size, int32_t ___1_layoutPass, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>::get_destinationPanel()
|
|
inline RuntimeObject* PanelChangedEventBase_1_get_destinationPanel_m8AE1564C5D0CADA5428BFC43C5111C6227ED65C0_inline (PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3*, const RuntimeMethod*))PanelChangedEventBase_1_get_destinationPanel_m7F1989B93B498769D6A6EB6A5CB991AB3B4D8FD2_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_2__ctor_m56478DC9F2C2C7B89B665FC269F757E9891ADA72 (Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_mCAAE199274CB859466485ECBAE0128A25C8BBAAE_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.KeyboardNavigationManipulator::.ctor(System.Action`2<UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardNavigationManipulator__ctor_m7098F151C16E426B7E4272AB0D5ECDB0B45BA7D1 (KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* __this, Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* ___0_action, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596 (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.PointerMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398 (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.PointerDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.PointerCancelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_mE83DFDC25FA4E7E3A266F03E681EA0012BF8F2B4 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5 (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m8E83F917FC9541DE1168E498CDF99D58A6DC329B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.PointerUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>::get_originPanel()
|
|
inline RuntimeObject* PanelChangedEventBase_1_get_originPanel_mB78D4DFA7608CBBC25903E7944DF9CB36D57A3A3_inline (PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39*, const RuntimeMethod*))PanelChangedEventBase_1_get_originPanel_m3E8443C7EDD04BA92941A896405FB221339A39B5_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerCancelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// UnityEngine.UIElements.SelectionType UnityEngine.UIElements.BaseVerticalCollectionView::get_selectionType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SelectAll()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SelectAll_mD43E7E6E6C13B1BE444A67210114CB5B4D52715B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>::Invoke(T)
|
|
inline void Action_1_Invoke_m0D54E898904F46A8FA1CF6B984B5C62DA52AD771_inline (Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.BaseVerticalCollectionView::get_selectedIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ScrollToItem(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ScrollToItem_mA201CA77442DB59FDBAD1AEE7F61FFFA626A8716 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::<Apply>g__HandleSelectionAndScroll|164_0(System.Int32,UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, U3CU3Ec__DisplayClass164_0_tC8D9A08D511DD33A5B1192813EF9635A87268747* ___1_p, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Linq.Enumerable::Max(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704 (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Linq.Enumerable::Min(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443 (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Mathf::Min(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::get_shiftKey()
|
|
inline bool KeyboardEventBase_1_get_shiftKey_m6F17812A43DB9076880B0ACA64DD5675FA30E418 (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA*, const RuntimeMethod*))KeyboardEventBase_1_get_shiftKey_m251E3EA2045B05A2E7F801DD7A5A52A50ABDE1EA_gshared)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::Apply(UnityEngine.UIElements.KeyboardNavigationOperation,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_Apply_m0F0D53D497B3A1A6A36B67154D3EF0EDD20933DA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_op, bool ___1_shiftKey, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::StopPropagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::PreventDefault()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::get_button()
|
|
inline int32_t PointerEventBase_1_get_button_m2C8D3EC8071AFDA85E4B71093A129E0E0A7FD25D_inline (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1_get_button_m3FC007A6430390DB59817E93D8AB324EC13FE995_gshared_inline)(__this, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::get_pressedButtons()
|
|
inline int32_t PointerEventBase_1_get_pressedButtons_m5A50ECC9E90E177443813450F81D5F283C48BD4A_inline (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessPointerUp(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessPointerUp_m40882665BD89D99515ADC8BD6CD763CFAAE8AA2A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessPointerDown(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessPointerDown_m9A422F962E4EC91264B0897A93E3DEEAC09AE251 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::get_pointerType()
|
|
inline String_t* PointerEventBase_1_get_pointerType_m1724EBAD6D0313ABE5739C89FC27EBFAF86D1926_inline (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1_get_pointerType_m05EB5D56224F7A7A190AAFBBD622113A7A704F7C_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean System.String::op_Inequality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.VisualElement::get_panel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::get_pointerId()
|
|
inline int32_t PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::PreventCompatibilityMouseEvents(UnityEngine.UIElements.IPanel,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751 (RuntimeObject* ___0_panel, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::get_isPrimary()
|
|
inline bool PointerEventBase_1_get_isPrimary_mE2A52BF852EE9E4E8D7C83599B93CE9E7A2664E2_inline (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_get_isPrimary_m0F266CD0EEF96089B726E1E69A8A07029685E95B_gshared_inline)(__this, method);
|
|
}
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::get_pointerType()
|
|
inline String_t* PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_pointerType_m05EB5D56224F7A7A190AAFBBD622113A7A704F7C_gshared_inline)(__this, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::get_pointerId()
|
|
inline int32_t PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::DoSelect(UnityEngine.Vector2,System.Int32,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_DoSelect_mA8AF25B49A02621CEEE811D18A5B0B8449F06FEC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_localPosition, int32_t ___1_clickCount, bool ___2_actionKey, bool ___3_shiftKey, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::op_Subtraction(UnityEngine.Vector3,UnityEngine.Vector3)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Vector3::get_sqrMagnitude()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessSingleClick(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessSingleClick_mE4FAC4CC7A03A314713B0361DBB1345EDCB7DE3C (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_clickedIndex, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RemoveFromSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RemoveFromSelection_m5FBF5E2A9A48D3E1FB6F3571958761CDBD2C1C49 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelection_m6D702CBC773E7757EF54361C2612E82E6869838E (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::DoRangeSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_DoRangeSelection_m462F43AC5D59EEA06B6385AA5C27A9DCAF78F174 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_rangeSelectionFinalIndex, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ClearSelectionWithoutValidation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ClearSelectionWithoutValidation_m568C2DF260A0E61ECA6224861BF50BE6514F591D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelection(System.Collections.Generic.IList`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelection_mD297CE592C4B3AA52EBD57E660D7AE39A96D77CE (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indexes, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.BaseVerticalCollectionView::get_activeItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.ReusableCollectionItem::get_id()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::NotifyOfSelectionChange()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelectionWithoutValidation(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelectionWithoutValidation_mFE343B65971F600A4BE2720CD6DE9A55CE912A59 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RemoveFromSelectionWithoutValidation(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RemoveFromSelectionWithoutValidation_m69C20ECAC6DC5E982A38144581FAD48B373BECB3 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<System.Int32>::Remove(T)
|
|
inline bool List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_gshared)(__this, ___0_item, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
|
|
inline bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelection(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelection_mF5EF86474640A9CA69982DBA2C7877F0E57F11DD (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelectionInternal(System.Collections.Generic.IEnumerable`1<System.Int32>,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelectionInternal_m3A7D9E2BE9310A1EF237B7FA53B8D08AF7CEBCDD (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indices, bool ___1_sendNotification, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>::Invoke(T)
|
|
inline void Action_1_Invoke_m3599C55D4DA870CC0F313E761327FADAF574D881_inline (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement::ExecuteDefaultAction(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_ExecuteDefaultAction_m69DB43D84DE4D338F213E0C4B64AD2055E5A63A9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerUpEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.DragEventsProcessor::OnPointerUpEvent(UnityEngine.UIElements.PointerUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DragEventsProcessor_OnPointerUpEvent_mC5C2AAFDA12640033F5FD9CE855DD84F390C7A81 (DragEventsProcessor_tC4594177C458D0DE91C0A4D1017CEF93DA69C9B6* __this, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_leafTarget()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.BlurEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>::get_relatedTarget()
|
|
inline Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_inline (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* (*) (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94*, const RuntimeMethod*))FocusEventBase_1_get_relatedTarget_m4D8C2900A27846F2A108FB515602553CB75C180F_gshared_inline)(__this, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mB1256CEDFAF9A31F2C3B18538E6162E8B74DB0D4 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_target()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::get_newRect()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_width()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::get_oldRect()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_oldRect_m9961ACE622E851C4770B205C57664F90F3E0E9A7_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.GeometryChangedEvent::get_layoutPass()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GeometryChangedEvent_get_layoutPass_mF1D65C18E68AD76A3CECA65EF27FB466048F3F19_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ICustomStyle UnityEngine.UIElements.CustomStyleResolvedEvent::get_customStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomStyleResolvedEvent_get_customStyle_m0F9CBEBB0EAF766F4A913974871BB5B4DCE1D3F4 (CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ReusableCollectionItem>::.ctor()
|
|
inline void List_1__ctor_m3C332A204F7E245BC756631AB669E7518D14AEE1 (List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>::.ctor(System.String)
|
|
inline void CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126 (CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F* __this, String_t* ___0_propertyName, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F*, String_t*, const RuntimeMethod*))CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_gshared)(__this, ___0_propertyName, method);
|
|
}
|
|
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnScroll(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnScroll_mECB206AEDD2D6BF4FA2E57283BABF6E2C62C48D7 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_offset, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_selectedIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_selectedIndex_mFAC82D45A6517794F8A1E0C15AD488E63A231DDA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::get_MeasuredSizes()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::set_MeasuredSizes(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::get_RoundedSizes()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::set_RoundedSizes(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.TextCore.Text.TextGenerationSettings::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerationSettings__ctor_mA20608A16443434DAE9FEF0BF8BD076270FA660E (TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.TextCore.Text.TextInfo::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextInfo__ctor_m241E24715CC5F6293DC90A4D25884548BAD0D602 (TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::get_textInfoMesh()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsLegacy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsLegacy_m95D41D511B3AE74C37693E6FA01814425B8BCAAF (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextParams_GetHashCode_mC8A715BCEEDF161F0CDF1510C352C3C72B30C4A6 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsDirty(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsDirty_m87C99719001F2778DA99423BCACE64C049D18340 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextGenerator::GetCursorPosition(UnityEngine.TextCore.Text.TextInfo,UnityEngine.Rect,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextGenerator_GetCursorPosition_m9F767EE74114971780EF08619DEE0F5223FC5095 (TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___0_textInfo, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_screenRect, int32_t ___2_index, bool ___3_inverseYAxis, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::GetCursorPosition(UnityEngine.UIElements.CursorPositionStylePainterParameters,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_GetCursorPosition_m688A608C675E4A815935EB7ADCE2C649927B8FD5 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::UpdatePreferredValues(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::ComputeTextWidth(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_ComputeTextWidth_m19A12189B701300E3605E499CF0CF6CB4FA3A8E0 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::ComputeTextHeight(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_ComputeTextHeight_mACA9396D480B42C7ED37B3EA6CF0DA0F299D4AF0 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::Update(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_Update_mC3E3A597AC7276BBA05E70D154FA0637CFBD11EF (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::GetLineHeight(System.Int32,UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_GetLineHeight_mBB168796142ACE1D35F8528B405C76D969C58787 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::.ctor(UnityEngine.Vector2,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_size, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::UpdateGenerationSettingsCommon(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,UnityEngine.TextCore.Text.TextGenerationSettings)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_UpdateGenerationSettingsCommon_mBDBF001A8AFE3FE6D77B5141D070230BAE3D8E43 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_painterParams, TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___1_settings, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.TextCore.Text.TextGenerator::GenerateText(UnityEngine.TextCore.Text.TextGenerationSettings,UnityEngine.TextCore.Text.TextInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextGenerator_GenerateText_m28C6EED85E5BB42AA40812F475D533AAF6694757 (TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___0_settings, TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___1_textInfo, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::get_textInfoLayout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_get_textInfoLayout_mF74EE30CC20AB4944F2507877FAD63DA047DB5F3 (const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.TextCore.Text.TextGenerator::GetPreferredValues(UnityEngine.TextCore.Text.TextGenerationSettings,UnityEngine.TextCore.Text.TextInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextGenerator_GetPreferredValues_m17A1C8F1AA7D260AB9167985429D6819D0E8D9CA (TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___0_settings, TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* ___1_textInfo, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.TextUtilities::GetTextSettingsFrom(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* TextUtilities_GetTextSettingsFrom_mE0B53E9301202016E8086E990ADF3513D0EFC618 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParam, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.TextUtilities::GetFontAsset(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* TextUtilities_GetFontAsset_m0FEC35C27DDE9E9CB6C69C44A9ACF38AF78A48FF (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParam, const RuntimeMethod* method) ;
|
|
// UnityEngine.Material UnityEngine.TextCore.Text.TextAsset::get_material()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* TextAsset_get_material_m4B9C02D34426436FDB01F1963A9FDC11D75604EF_inline (TextAsset_tB28F1843A877CCA74B89DC4F63EA532618B049B8* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.FaceInfo UnityEngine.TextCore.Text.FontAsset::get_faceInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 FontAsset_get_faceInfo_mF020EC579E3C18A6279D55D86AF1C585031B49A9 (FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.TextCore.FaceInfo::get_pointSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB (FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.FontStyles UnityEngine.TextCore.Text.TextGeneratorUtilities::LegacyStyleToNewStyle(UnityEngine.FontStyle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGeneratorUtilities_LegacyStyleToNewStyle_m8E9C09A7BE7B27A4EC73ADD747BFD9A4DE7E656C (int32_t ___0_fontStyle, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextAlignment UnityEngine.TextCore.Text.TextGeneratorUtilities::LegacyAlignmentToNewAlignment(UnityEngine.TextAnchor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextGeneratorUtilities_LegacyAlignmentToNewAlignment_mA16F5CB58D3C8F352CAACB8DACA5AFED59D3ED63 (int32_t ___0_anchor, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextOverflowMode UnityEngine.UIElements.TextCoreHandle::GetTextOverflowMode(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextCoreHandle_GetTextOverflowMode_mA717EE24FFB54D9C97CEB618A83E2B4045AA9FB7 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParams, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Length::get_value()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsElided_mDFF269AA42996A09927C01E83091F068A9BFEB79 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::get_MeasuredSizes()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextNativeHandle::set_MeasuredSizes(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::get_RoundedSizes()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextNativeHandle::set_RoundedSizes(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeHandle::IsLegacy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextNativeHandle_IsLegacy_mE090DB23298B9A19896E64E7D25A8345CBCC5D62 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::ComputeTextHeight(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_ComputeTextHeight_mC34FDC68F1CF13407B7CE9AAD3EE2F05355BAB7F (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::GetLineHeight(System.Int32,UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_GetLineHeight_mCB567B4A0CE467F0F755E574285DB89C05957200 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::Log(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextNativeHandle::Update(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextNativeHandle_Update_m0248BEBF8EE7B9970F0108C8EF390D50F3E4EFCF (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextNativeSettings UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::GetTextNativeSettings(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 TextParams_GetTextNativeSettings_m9DB7A56B76F6076566ED602969C517C7A4CB6DC0 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParams, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::IsNotNull<UnityEngine.Font>(T)
|
|
inline void Assert_IsNotNull_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m23D40EA79151C942667AB85F5F1D441CF9D4896C (Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Font_tC95270EA3198038970422D78B74A7F2E218A96B6*, const RuntimeMethod*))Assert_IsNotNull_TisRuntimeObject_mFA75318800124DED2E924476F16DD129394A20AC_gshared)(___0_value, method);
|
|
}
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex> UnityEngine.UIElements.TextNative::GetVertices(UnityEngine.UIElements.TextNativeSettings)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 TextNative_GetVertices_m877716FCDD7F1D2C5849487C88691A5BA2441088 (TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 ___0_settings, const RuntimeMethod* method) ;
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex> UnityEngine.UIElements.TextNativeHandle::GetVertices(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 TextNativeHandle_GetVertices_m8AE5CB4E80201525F5E36B3648FE1B8670D0652A (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextNativeSettings UnityEngine.UIElements.CursorPositionStylePainterParameters::GetTextNativeSettings(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049 (CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* __this, float ___0_scaling, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNative::GetCursorPosition(UnityEngine.UIElements.TextNativeSettings,UnityEngine.Rect,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNative_GetCursorPosition_mF7B2D51841761A24623EE9DCAA354F30CB9523F4 (TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 ___0_settings, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_rect, int32_t ___2_cursorIndex, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::GetCursorPosition(UnityEngine.UIElements.CursorPositionStylePainterParameters,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_GetCursorPosition_m5630AF5161016756153882341F84325C69DD0326 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextNative::ComputeTextWidth(UnityEngine.UIElements.TextNativeSettings)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNative_ComputeTextWidth_mE3A73219F780DB79A4BFCEA91CA1C4DB9AF7F00F (TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 ___0_settings, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::ComputeTextWidth(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_ComputeTextWidth_m2D4531ECFFE5C4EF978C446F4DC5E28BE29E9AD6 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TextNative::ComputeTextHeight(UnityEngine.UIElements.TextNativeSettings)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNative_ComputeTextHeight_m2DB34E72014B203E83A17A7321793ED979D36AD8 (TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 ___0_settings, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeHandle::IsElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextNativeHandle_IsElided_mE761E0BF287AA7217FE8A87F514674E1D126CA92 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
|
|
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) ;
|
|
// System.Single UnityEngine.Vector3::get_magnitude()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextUtilities::IsFontAssigned(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextUtilities_IsFontAssigned_mF8C7AB1EA0F4C0611A680D48F4FD7F2053FE39DB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::MakeStyleBased(UnityEngine.UIElements.VisualElement,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F TextParams_MakeStyleBased_mDF20795C3A27408BAD96FB1FCF077694FFB05124 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, String_t* ___1_text, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_x()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_y()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_x, float ___1_y, float ___2_width, float ___3_height, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.AlignmentUtils::CeilToPixelGrid(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AlignmentUtils_CeilToPixelGrid_m4A98E79C0F6956E4D814A27197271F6A281624AE (float ___0_v, float ___1_pixelsPerPoint, float ___2_offset, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.FontDefinition::get_fontAsset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0 (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
// UnityEngine.Font UnityEngine.UIElements.FontDefinition::get_font()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107 (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.PanelTextSettings::GetCachedFontAsset(UnityEngine.Font)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357 (PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* __this, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ComputedStyle& UnityEngine.UIElements.VisualElement::get_computedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FontDefinition UnityEngine.UIElements.ComputedStyle::get_unityFontDefinition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.TextUtilities::GetTextSettingsFrom(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* TextUtilities_GetTextSettingsFrom_m3885FFB03C6D9DA29A08045DF3692617FC54218D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// UnityEngine.Font UnityEngine.UIElements.ComputedStyle::get_unityFont()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ComputedStyle_get_unityFont_m54E6172041232D304DA1B2716FEAB128830B9406 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Font UnityEngine.TextCore.Text.FontAsset::get_sourceFontFile()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* FontAsset_get_sourceFontFile_m6B0E805BD1B7712F0B5135D157E96F3F40314830 (FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FontDefinition::IsEmpty()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontDefinition_IsEmpty_m0AC5C77086840D6B175110062E3F23E8698C80BD (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PanelSettings UnityEngine.UIElements.RuntimePanel::get_panelSettings()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* RuntimePanel_get_panelSettings_mB9679B0ECC5D26BF090043809C8099F561325C8C_inline (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.PanelTextSettings::get_defaultPanelTextSettings()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917 (const RuntimeMethod* method) ;
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.TextUtilities::GetFontAsset(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* TextUtilities_GetFontAsset_m9FFADED783DEA40EA39D4EB833A8E4ABCC4EBE89 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.TextCore.Text.FontAsset::get_atlasPadding()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontAsset_get_atlasPadding_m251A35FB5F499EE66CC2E2150CBEDB2C8C5D5581 (FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.ComputedStyle::get_fontSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ComputedStyle_get_fontSize_m8EC7665FA467E17E3FF44A3A3AA61B1BB1D79272 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.ComputedStyle::get_textShadow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ComputedStyle_get_textShadow_m74DC8025A89CDA100956D9B97FDC67BCDAC0192C (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method) ;
|
|
// T UnityEngine.ScriptableObject::CreateInstance<UnityEngine.UIElements.PanelTextSettings>()
|
|
inline PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* ScriptableObject_CreateInstance_TisPanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_mB0E638882BD4ADB8F3290D76B9667580ADB49C8D (const RuntimeMethod* method)
|
|
{
|
|
return (( PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* (*) (const RuntimeMethod*))ScriptableObject_CreateInstance_TisRuntimeObject_mC07BE383F5EF546F4191035A679930852BC19BDA_gshared)(method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>::.ctor()
|
|
inline void Dictionary_2__ctor_mDF841125BC4100E914A28DF14F2A99A5777E2491 (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3*, const RuntimeMethod*))Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared)(__this, method);
|
|
}
|
|
// System.String System.String::Concat(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
// System.String System.IO.Path::Combine(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE (String_t* ___0_path1, String_t* ___1_path2, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>::Add(TKey,TValue)
|
|
inline void Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488 (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* __this, int32_t ___0_key, String_t* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3*, int32_t, String_t*, const RuntimeMethod*))Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
// TResult System.Func`1<UnityEngine.SystemLanguage>::Invoke()
|
|
inline int32_t Func_1_Invoke_mB8D6AF9F4703A3D9F6B0292E7BB846B4F111B105_inline (Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE*, const RuntimeMethod*))Func_1_Invoke_m9ED2CAC2A2096B0FA42F20B76DCE0CFD80228DE6_gshared_inline)(__this, method);
|
|
}
|
|
// TValue System.Collections.Generic.Dictionary`2<UnityEngine.SystemLanguage,System.String>::get_Item(TKey)
|
|
inline String_t* Dictionary_2_get_Item_mF10E35CFD3C75490710E375C2C75DB11438963D5 (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3*, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared)(__this, ___0_key, method);
|
|
}
|
|
// TResult System.Func`2<System.String,UnityEngine.Object>::Invoke(T)
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* Func_2_Invoke_mDC09341455141484548A3FBCA37973E85AC23EB5_inline (Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24* __this, String_t* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* (*) (Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24*, String_t*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
// System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset> UnityEngine.TextCore.Text.TextSettings::get_fallbackFontAssets()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* TextSettings_get_fallbackFontAssets_m332526E834C994425141A58C968FD40320573F98_inline (TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>::set_Item(System.Int32,T)
|
|
inline void List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9 (List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* __this, int32_t ___0_index, FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE*, int32_t, FontAsset_t61A6446D934E582651044E33D250EA8D306AB958*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.TextCore.Text.FontAsset>::get_Count()
|
|
inline int32_t List_1_get_Count_m654F4B0CF3BAA9A130BC72017949E6B5DA07AD86_inline (List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.TextCore.Text.TextSettings::GetCachedFontAssetInternal(UnityEngine.Font)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* TextSettings_GetCachedFontAssetInternal_m9308E0DDEF8F6D8ACA17DAADB43745C860788202 (TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* __this, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.TextCore.Text.TextSettings::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextSettings__ctor_m860D28B10258792A195E1C6391479E16D04CA8BF (TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>::.ctor()
|
|
inline void PointerCaptureEventBase_1__ctor_m9DEF773868286ECFB7BA390DB5DC6136639BC5ED (PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F*, const RuntimeMethod*))PointerCaptureEventBase_1__ctor_m2AC985C6BB448D51EF38120C67FB476FD9B79F60_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>::.ctor()
|
|
inline void PointerCaptureEventBase_1__ctor_m919C773A68103FCC4A812EB1295FE2D7C235B82B (PointerCaptureEventBase_1_t126554CD81D838778F0E7A459970847AD90E364D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerCaptureEventBase_1_t126554CD81D838778F0E7A459970847AD90E364D*, const RuntimeMethod*))PointerCaptureEventBase_1__ctor_m2AC985C6BB448D51EF38120C67FB476FD9B79F60_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>::.ctor()
|
|
inline void MouseCaptureEventBase_1__ctor_m964B5FA5C550017E062DE854397DDC526287CFE8 (MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC*, const RuntimeMethod*))MouseCaptureEventBase_1__ctor_m9538E317C257228A835903B8115452CD13EE27B1_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>::.ctor()
|
|
inline void MouseCaptureEventBase_1__ctor_m1E467FAE9ABD4656623BECDC96A8341F02C0D768 (MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68*, const RuntimeMethod*))MouseCaptureEventBase_1__ctor_m9538E317C257228A835903B8115452CD13EE27B1_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Debug::Assert(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D (bool ___0_condition, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::SetElementUnderPointer(UnityEngine.UIElements.VisualElement,System.Int32,UnityEngine.UIElements.EventBase,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_SetElementUnderPointer_m13D842D6ED9BE1595D40EFA0B043C13A8D36BF21 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_newElementUnderPointer, int32_t ___1_pointerId, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, bool ___3_temporary, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ElementUnderPointer::GetEventPointerPosition(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ElementUnderPointer_GetEventPointerPosition_m5C142E8672A230E5325DAB8FC24D4001BDD00C48 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_triggerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::.ctor(UnityEngine.UIElements.EventDispatcher)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___0_d, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerDeviceState::GetPointerPosition(System.Int32,UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerDeviceState_GetPointerPosition_m4F2F8719AB146901C9C64730F74B9EEF916E8A77 (int32_t ___0_pointerId, int32_t ___1_contextType, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventsHelper::SendOverOut(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventsHelper_SendOverOut_m8EF7035D3995A3342E93DBFCFEB53159D2E05FF9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderPointer, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderPointer, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_position, int32_t ___4_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventsHelper::SendEnterLeave<UnityEngine.UIElements.PointerLeaveEvent,UnityEngine.UIElements.PointerEnterEvent>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
inline void PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderPointer, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderPointer, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_position, int32_t ___4_pointerId, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t, const RuntimeMethod*))PointerEventsHelper_SendEnterLeave_TisRuntimeObject_TisRuntimeObject_m1FCE093303CE43483D779A485959EAE6426665EB_gshared)(___0_previousTopElementUnderPointer, ___1_currentTopElementUnderPointer, ___2_triggerEvent, ___3_position, ___4_pointerId, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventsHelper::SendMouseOverMouseOut(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventsHelper_SendMouseOverMouseOut_mC53497D84135203791027DAD5CFB68F7D994E3F0 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderMouse, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderMouse, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_mousePosition, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventsHelper::SendEnterLeave<UnityEngine.UIElements.MouseLeaveEvent,UnityEngine.UIElements.MouseEnterEvent>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2)
|
|
inline void MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderMouse, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderMouse, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_mousePosition, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, const RuntimeMethod*))MouseEventsHelper_SendEnterLeave_TisRuntimeObject_TisRuntimeObject_mA9FDCD2BEADD3CCAA145F8A362AC0AF11F7CD58F_gshared)(___0_previousTopElementUnderMouse, ___1_currentTopElementUnderMouse, ___2_triggerEvent, ___3_mousePosition, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerMoveEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerDownEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCancelEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m1A2720F11AB0D624809678ADE4E6D8C250E43741 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseMoveEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseDownEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseUpEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.WheelEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>::GetPooled()
|
|
inline IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* EventBase_1_GetPooled_m5C349B73E157553B73F21F11591CEB7266273A95 (const RuntimeMethod* method)
|
|
{
|
|
return (( IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* (*) (const RuntimeMethod*))EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_imguiEvent(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_imguiEvent_m72FEAD8F7611927C077B45BAA719C15D39E9F4F4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>::Init()
|
|
inline void EventBase_1_Init_m624713075B5108D1488D68D488679EF6665E6671 (EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD*, const RuntimeMethod*))EventBase_1_Init_mD11258015D6778B557F3DED4696BEF3335FD66C3_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEvent_LocalInit_mBA8C889C09A964E1C640D5694AF36348C83D0D96 (IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagation(UnityEngine.UIElements.EventBase/EventPropagation)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>::.ctor()
|
|
inline void EventBase_1__ctor_m6CD1821AACDF831718F32FEF562AD964019E8499 (EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD*, const RuntimeMethod*))EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Panel()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::SetLocation(UnityEngine.Vector2,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, RuntimeObject* ___1_panel, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Position()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PointerDeviceState/LocationFlag UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Flags()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerDeviceState::HasFlagFast(UnityEngine.UIElements.PointerDeviceState/LocationFlag,UnityEngine.UIElements.PointerDeviceState/LocationFlag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDeviceState_HasFlagFast_m71479211D7AB83D1295671261F439210D06646D3 (int32_t ___0_flagSet, int32_t ___1_flag, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Position(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Panel(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Flags(UnityEngine.UIElements.PointerDeviceState/LocationFlag)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Rect::Contains(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_point, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerCaptureHelper::GetCapturingElement(UnityEngine.UIElements.IPanel,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerCaptureHelper_GetCapturingElement_m30DED02760CA5544CF35162656E2E3959DC8103E (RuntimeObject* ___0_panel, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::ReleasePointer(UnityEngine.UIElements.IPanel,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_ReleasePointer_mE9ABEA39360504C8B5A9CF1C067A63F7535CDECB (RuntimeObject* ___0_panel, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerCaptureEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mECB64534E7784E4F149108516B906000134DA10E (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::ProcessPointerCapture(UnityEngine.UIElements.IPanel,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_ProcessPointerCapture_mD1AE918F21A8FA12782FDDB44BC51B4449F0B160 (RuntimeObject* ___0_panel, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::RecomputeTopElementUnderPointer(System.Int32,UnityEngine.Vector2,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVisualElementPanel_RecomputeTopElementUnderPointer_mF3D6110A28FCCF72408FE62A21A4F57E4AC717AF (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_pointerPos, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_dispatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_target(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagationPhase(UnityEngine.UIElements.PropagationPhase)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_skipDisabledElements(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_skipDisabledElements_mCD199A8D744CA42DC9A331A2795DAEB2CCA9243D (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_stopDispatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagateToIMGUI(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>::get_Count()
|
|
inline int32_t Stack_1_get_Count_m27EF77ADD65A56CD95F3EAFA786C44BC7271CC29_inline (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::.ctor(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList__ctor_m68637C48463F4F73C89DF6CA73A1E6B3CB5FD7D2 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList__ctor_m63560530AAC328229B8EEFC303AAE2B28504E12B (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>::Pop()
|
|
inline EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133 (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* (*) (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::AddRange(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_AddRange_m4ED6546AA29BB00231BDD0E41D7E64912A26C90D (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_list, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_Clear_mC911EA6B9D7DB6C81076D3E7A218F9E392A72DEC (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>::Push(T)
|
|
inline void Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F*, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>::.ctor()
|
|
inline void Stack_1__ctor_mE21E089AF2AB9703038F2EABB99638C8946E1C10 (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::.ctor()
|
|
inline void List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::set_trickleDownCallbackCount(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::set_bubbleUpCallbackCount(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45 (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___0_collection, method);
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase UnityEngine.UIElements.EventCallbackList::Find(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* EventCallbackList_Find_mCD242212B4EE860D14E3113C97B296A7DFBB7000 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_phase, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::get_Item(System.Int32)
|
|
inline EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::get_Count()
|
|
inline int32_t List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_inline (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8 (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___0_index, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_trickleDownCallbackCount()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_bubbleUpCallbackCount()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::Add(T)
|
|
inline void List_1_Add_m85814EBFEEB8F14E633DD5FCCC709B8A3711164B_inline (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
// UnityEngine.UIElements.CallbackPhase UnityEngine.UIElements.EventCallbackFunctorBase::get_phase()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m7245756097F392DCBE76E9A6060AF3B9D7268936 (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___0_collection, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::GetEnumerator()
|
|
inline Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665 List_1_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665 (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>::Dispose()
|
|
inline void Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>::get_Current()
|
|
inline EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* Enumerator_get_Current_mD39715123AE48C0393854BA496289E3975AD303F_inline (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* (*) (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.EventCallbackFunctorBase>::MoveNext()
|
|
inline bool Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>::Clear()
|
|
inline void List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_inline (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackListPool::Get(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackListPool_Get_m51BDCFE0D4D4F00F53234F4EE239E133F1671817 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_initializer, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackListPool::Release(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackListPool_Release_m022D1A233864CAC88AC6EDB37B77F70B60032A89 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_element, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::GetCallbackList(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_initializer, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::GetCallbackListForWriting()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackRegistry_GetCallbackListForWriting_m7D434CACC381588525875E2A9A4D2CB0113A0B94 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackList::Remove(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackList_Remove_mE19FE07B736B43811C2A5C91EB4FFE79FA427A28 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_phase, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isImmediatePropagationStopped()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isImmediatePropagationStopped_m23F718E5FA5FB49FE12BA560B8362B95E0C7F5D3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_skipDisabledElements()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::get_enabledInHierarchy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase UnityEngine.UIElements.EventCallbackList::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* EventCallbackList_get_Item_mDB9D16B9C9E12B1260CB6C7DAC3A07E4DD4A62A2 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_i, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.InvokePolicy UnityEngine.UIElements.EventCallbackFunctorBase::get_invokePolicy()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_invokePolicy_m7465E70C33AC6326DCA4F9C3C9A4BC7671930053_inline (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_Count_m2431721D83AFE7454CB2920D15C03B7825500670 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::ReleaseCallbackList(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry_ReleaseCallbackList_m781EC82FE1F90A0F32998738AB57BA7ACA9B8374 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_toRelease, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackListPool::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackListPool__ctor_m48C8D9BAF4A5A345FF23C7068F2FBE8768D8D138 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::GetLeafFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::Skip(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_h, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::SendEventToIMGUI(UnityEngine.UIElements.EventBase,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_SendEventToIMGUI_m3D953957F70AB7A0AA0F528D134AEB8177033271 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, bool ___1_canAffectFocus, bool ___2_verifyBounds, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatchUtilities::PropagateEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isPropagationStopped()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatchUtilities::PropagateToIMGUIContainer(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_root, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>::GetPooled(UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2,System.Boolean)
|
|
inline MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* MouseEventBase_1_GetPooled_m5C8BA4454157A0AA816235F6C004A7DE07286002 (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_mousePosition, bool ___2_recomputeTopElementUnderMouse, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* (*) (RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, bool, const RuntimeMethod*))MouseEventBase_1_GetPooled_mAEB02CEEE74548033154896B4BC8BAEEDE16FC5A_gshared)(___0_triggerEvent, ___1_mousePosition, ___2_recomputeTopElementUnderMouse, method);
|
|
}
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>::GetPooled(UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2,System.Boolean)
|
|
inline MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* MouseEventBase_1_GetPooled_m67758DA9E515DDB691111B3C2AFDED133D94AEF9 (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_mousePosition, bool ___2_recomputeTopElementUnderMouse, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* (*) (RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, bool, const RuntimeMethod*))MouseEventBase_1_GetPooled_mAEB02CEEE74548033154896B4BC8BAEEDE16FC5A_gshared)(___0_triggerEvent, ___1_mousePosition, ___2_recomputeTopElementUnderMouse, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
inline PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* PointerEventBase_1_GetPooled_mEB737E22C24C0FFC4F2D86E4FE3348C8168C277A (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_position, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* (*) (RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t, const RuntimeMethod*))PointerEventBase_1_GetPooled_m73C55154987E587C2FC2BA5545BD35CAE027F3BA_gshared)(___0_triggerEvent, ___1_position, ___2_pointerId, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
inline PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* PointerEventBase_1_GetPooled_m6A04371AEFF51E2C3DA0E8580A84CA2BCF39642E (RuntimeObject* ___0_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_position, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* (*) (RuntimeObject*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t, const RuntimeMethod*))PointerEventBase_1_GetPooled_m73C55154987E587C2FC2BA5545BD35CAE027F3BA_gshared)(___0_triggerEvent, ___1_position, ___2_pointerId, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1 (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
// T UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>::Get()
|
|
inline PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* (*) (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A*, const RuntimeMethod*))ObjectPool_1_Get_m8083040649293905041518C11D70D801265F2F87_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::Add(T)
|
|
inline void List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_inline (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::get_parent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4 (Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::get_isCompositeRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_ignoreCompositeRoots()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_ignoreCompositeRoots_m193D3963EBFA25A18D099AFFE0CD44206E2B81F8 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.CallbackEventHandler::HasTrickleDownHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallbackEventHandler_HasTrickleDownHandlers_mAC77A79CBA1CDD39444B61175B48FEBC67AEB883 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.CallbackEventHandler::HasBubbleUpHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallbackEventHandler_HasBubbleUpHandlers_m83DB6DB92A8417EC0EEDEAAB417882152131805C (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::Clear()
|
|
inline void List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_inline (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>::Release(T)
|
|
inline void ObjectPool_1_Release_mBED7FE0D073C450EA5B2CCE78D403ACF37DBCBB8 (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* __this, PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A*, PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*, const RuntimeMethod*))ObjectPool_1_Release_m6F11856AD6B4BB632CF4268585A12AD5BA07F7EA_gshared)(__this, ___0_element, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>::.ctor(System.Int32)
|
|
inline void ObjectPool_1__ctor_mAC1FD0696B9C947EC8757B15FA56BC0EB7C059EE (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* __this, int32_t ___0_maxSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A*, int32_t, const RuntimeMethod*))ObjectPool_1__ctor_m1BFAB787CE8A32532F3B2E3D4AF4B1905E0230DE_gshared)(__this, ___0_maxSize, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_propagateToIMGUI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>::Init()
|
|
inline void EventBase_1_Init_m56B39863E46D8744FA9932115F6B12AA94C46661 (EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C*, const RuntimeMethod*))EventBase_1_Init_mD11258015D6778B557F3DED4696BEF3335FD66C3_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent_LocalInit_mDF107572A323DC6EA8D5C67E6D7BB9D92986042C (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::set_rect(UnityEngine.Rect)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TooltipEvent_set_rect_mCD96D19C063247F8DE3B8553843C27611286A5FD_inline (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::set_tooltip(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TooltipEvent_set_tooltip_m989CA98943B7E44DDCC4FFC4940F8701A65C4980_inline (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_ignoreCompositeRoots(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_ignoreCompositeRoots_m07FC5BFF70C642A131303CEC424BDE3A7A31CB68 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.TooltipEvent>::.ctor()
|
|
inline void EventBase_1__ctor_mB1E5663AF6567CB703A4F1484568B8F32A0CD723 (EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C*, const RuntimeMethod*))EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.Event UnityEngine.UIElements.EventBase::get_imguiEvent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m0D0D492BF3E4484B89111ADF52C02D0B5643D2E6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseCaptureController::ReleaseMouse(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureController_ReleaseMouse_m1C7324C27A04E2BBA83A5C868E1816B3F3B0AC21 (RuntimeObject* ___0_handler, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::HandleEventAtTargetPhase(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_HandleEventAtTargetPhase_m681B23C2CCCF3064FEC2DFF49645043E7F909B18 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler> UnityEngine.UIElements.EventBase::get_skipElements()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>::Add(T)
|
|
inline void List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_inline (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_triggerEventId(System.UInt64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_triggerEventId_m00372E494A55D3121585C1BB431E45CE5A7BB69E_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_tricklesDown()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_tricklesDown_m8AA6FDD44359CE2C3BF327D510B49E6C48D5CFF3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_bubbles()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_bubbles_mE2783C986742080BD0744DAF34D367B72F85FFAE (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.PropagationPaths::Build(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPaths/Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* PropagationPaths_Build_mF9E0B86F150240E207A3DAEFE5111FAD74B72653 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_elem, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, int32_t ___2_pathTypesRequested, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebugger::LogPropagationPaths(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPaths)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebugger_LogPropagationPaths_m2320DCFA24AE8AED1A31B20717E82133AD16099E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___1_paths, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.PropagationPaths::Copy(UnityEngine.UIElements.PropagationPaths)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* PropagationPaths_Copy_mF823B946D02EEEDB72F000A6941B6386AB03BE40 (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___0_paths, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_processed(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_processed_m64A260997810D628DDA923C07B66600A4869663E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.EventBase/EventPropagation UnityEngine.UIElements.EventBase::get_propagation()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_leafTarget(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_leafTarget_mA88E8A073861DE9C4EADF3E9898B3BF66C17E426_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>::Contains(T)
|
|
inline bool List_1_Contains_mA394BA9DBC3AF1F855E619DBC319FE0C9F77CADB (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3*, RuntimeObject*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___0_item, method);
|
|
}
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus UnityEngine.UIElements.EventBase::get_lifeCycleStatus()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_lifeCycleStatus(UnityEngine.UIElements.EventBase/LifeCycleStatus)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isPropagationStopped(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isPropagationStopped_m349B9F6FFE653ED556DCA0227F5B9EF98B2C1837 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isImmediatePropagationStopped(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isImmediatePropagationStopped_m6E1827CBF9C871484A3B7CF197B167188CEB4A90 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isDefaultPrevented(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isDefaultPrevented_m7897125F338C7979D4CC1B2C2E7C8D8F58779BAF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.EventBase::get_originalMousePosition()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.VisualElementExtensions::WorldToLocal(UnityEngine.UIElements.VisualElement,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_p, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Event::set_mousePosition(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_mousePosition_m221CDC5C9556DE91E82242A693D9E14FAC371F38 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_dispatched(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_dispatched_m75E34CEE2FCF7D82C9145C3B92031B019F594C11 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_dispatched()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_dispatched_mCDBF6C42565B3273C7D9A08D7C6186A528900FD7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::Assert(System.Boolean,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6 (bool ___0_condition, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_imguiEventIsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_imguiEventIsValid_mA6B8FC1455F670535AFEC167A8AF8EFC51AF6765 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Event::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Event::CopyFrom(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_imguiEventIsValid(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_imguiEventIsValid_m34958942B271A5D824C2CECA229320EBEAABFB65 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Event::get_mousePosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Event_get_mousePosition_mD6D2DF45C75E6FADD415D27D0E93563DED37D9B9 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_originalMousePosition(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_originalMousePosition_m5374CBDE6D514D283709EE51F513B54A3423A81A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_LocalInit_m24E272F5D1A5DC03019DFF9002B8144E31BD67AF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.Panel::TimeSinceStartupMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_timestamp(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_timestamp_m03956857630FFA7521D46FE9FE41184B267B67A8_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_eventId(System.UInt64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_eventId_m0DE45A9CAAD8F63AEC11C42B62647136232EDEB7_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PropagationPaths::Release()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropagationPaths_Release_m77921697630F59276740DBCA9E682DBD92ADD878 (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>::Clear()
|
|
inline void List_1_Clear_m9514E9E35B642F957084FF90C965803456E18805_inline (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_processedByFocusController(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_processedByFocusController_mEC214B328484B60572EEE867ACB5527396436155 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_pooled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_pooled_m2010D79336024981A70A73A9BE586CBBA7B82C84 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>::.ctor()
|
|
inline void List_1__ctor_m484EBAB01215728D1AF4C83F284F25A095D09D3E (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::SetBestTargetForEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_SetBestTargetForEvent_mF913AD15E29D786201B3606FB42D0C3E71E9BF58 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::SendEventToTarget(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_SendEventToTarget_mA552787E3085D0F8FF15E4D2041B267C1CE88237 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::UpdateElementUnderPointer(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.VisualElement&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_UpdateElementUnderPointer_mEA4EF078EF8245DEE5350134325C80E180C5B5C7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___2_elementUnderPointer, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::GetTopElementUnderPointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVisualElementPanel_GetTopElementUnderPointer_mDB876CD969BE130AC4E687554E08334ECBEB6B30 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection::.ctor(System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyNameCollection__ctor_mFEFD0F083AD0B463E8CC1CF4E3E038106DC24DB4 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___0_list, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>::GetEnumerator()
|
|
inline Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54 (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D (*) (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*, const RuntimeMethod*))List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::.ctor(System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD07D109094C9479076EF0A08D145DEC90AB47BCC (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___0_enumerator, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StylePropertyNameCollection/Enumerator UnityEngine.UIElements.StylePropertyNameCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StylePropertyName> UnityEngine.UIElements.StylePropertyNameCollection::System.Collections.Generic.IEnumerable<UnityEngine.UIElements.StylePropertyName>.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StylePropertyNameCollection_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_StylePropertyNameU3E_GetEnumerator_m727C2B94129B7430946CCDF03CF58C6FC35FF21D (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.IEnumerator UnityEngine.UIElements.StylePropertyNameCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator_mC5609F30174F647EE0963A69094E2207E1BFE477 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220 (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D*, const RuntimeMethod*))Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220_gshared)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1B0D4ED8DF384746B6EF5E832EC2772360AABDBE (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::get_Current()
|
|
inline StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_inline (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF (*) (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D*, const RuntimeMethod*))Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.StylePropertyName UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m7EE91D3E8856E930ED488BAD7DE23861F9FA3F6F (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method) ;
|
|
// System.Object UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_mC554FD7F7A46C0A10C6103B0B5EDC468D93FE3C6 (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m6B2871639B0E115F08C89087E5D3440DDBF56867 (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>::Dispose()
|
|
inline void Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D*, const RuntimeMethod*))Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m66AA4EBF6963DA76D9C725198C5BBEB394240A9E (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionRunEvent>::.ctor()
|
|
inline void TransitionEventBase_1__ctor_mA89133B8A086738FD951A3B725B6756C8D00F741 (TransitionEventBase_1_t297898456ECA9E8B0FE5C4821C0FD1C2CEFA86AC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TransitionEventBase_1_t297898456ECA9E8B0FE5C4821C0FD1C2CEFA86AC*, const RuntimeMethod*))TransitionEventBase_1__ctor_m9620CC0C2912EF596AFFE7229C4EB742A2FB048E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionStartEvent>::.ctor()
|
|
inline void TransitionEventBase_1__ctor_mB38ABE9778812A782CD46CB5F6DEAD73C0551951 (TransitionEventBase_1_t1FB26EAAAF9B2F0657560F33B4BB75695CAF7579* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TransitionEventBase_1_t1FB26EAAAF9B2F0657560F33B4BB75695CAF7579*, const RuntimeMethod*))TransitionEventBase_1__ctor_m9620CC0C2912EF596AFFE7229C4EB742A2FB048E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionEndEvent>::.ctor()
|
|
inline void TransitionEventBase_1__ctor_m0173536041AC6AD075DF05F1E88C27A97A6C1E13 (TransitionEventBase_1_tE4425184474B0AA7732182D0294F0960A51DEAC4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TransitionEventBase_1_tE4425184474B0AA7732182D0294F0960A51DEAC4*, const RuntimeMethod*))TransitionEventBase_1__ctor_m9620CC0C2912EF596AFFE7229C4EB742A2FB048E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransitionEventBase`1<UnityEngine.UIElements.TransitionCancelEvent>::.ctor()
|
|
inline void TransitionEventBase_1__ctor_m59E5F6EDA095C329E3E009740FEB92327180BE70 (TransitionEventBase_1_t0AAD21652882D2FCF19FCF0C4347DC161E413130* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TransitionEventBase_1_t0AAD21652882D2FCF19FCF0C4347DC161E413130*, const RuntimeMethod*))TransitionEventBase_1__ctor_m9620CC0C2912EF596AFFE7229C4EB742A2FB048E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::Init()
|
|
inline void PointerEventBase_1_Init_mA1E6CC3B61166169763B6912412A3E33CBF87E93 (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDownEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDownEvent_LocalInit_mA33241586037DFD52930AEAD5B3FD54CF31EE552 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_m998F76A42DE6E5246AEECA0095657850B41DA8A2 (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isDefaultPrevented()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerCaptureHelper::ShouldSendCompatibilityMouseEvents(UnityEngine.UIElements.IPanel,UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerCaptureHelper_ShouldSendCompatibilityMouseEvents_mB102208A776332256A524971955503B9E93E1844 (RuntimeObject* ___0_panel, RuntimeObject* ___1_evt, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::GetPooled(UnityEngine.UIElements.PointerDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_GetPooled_m5DB89E406A11788647A9601FC5725F66895DC513 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void PointerEventBase_1_PostDispatch_mBBF8C65E6E8406C67A589BDB0E6F5E54DE46A426 (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_PostDispatch_m55159C6FE00ECB9C36A55169DFA3EAE699EB3AC3_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::Init()
|
|
inline void PointerEventBase_1_Init_mB7A2ABD885C3D09B64F29476C624D9AAAABF32C5 (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent_LocalInit_m2B3988A6E09A5484209BC512987D575F7EC02688 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::set_isHandledByDraggable(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerMoveEvent_set_isHandledByDraggable_m24AE525901E56FE8A7936EDA8F2046862BB3660D_inline (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mEEDD5DA0CB24E8B1539D7A8B7B6F478813511665 (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.EventType UnityEngine.Event::get_rawType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_GetPooled_m962419D9EB0246EB3C415A9A720BAB5BE470957F (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_m9CA92EB7E0EAD8BC01901C30E5C496829A3B1D20 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseMoveEvent UnityEngine.UIElements.MouseMoveEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* MouseMoveEvent_GetPooled_m6DD3C6A3D681222E98443C2D5483B7537B6E8ACA (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void PointerEventBase_1_PostDispatch_mDE64F12665D559442C1EFAEC9FCBFBCB7622494F (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_PostDispatch_m55159C6FE00ECB9C36A55169DFA3EAE699EB3AC3_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>::Init()
|
|
inline void PointerEventBase_1_Init_mAAF393FC943EA9A8341CB7DC23184B71F4B6FBFD (PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerStationaryEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerStationaryEvent_LocalInit_m44FF78DF38F56E7597924B4071FABCD9CDD36E50 (PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerStationaryEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_m3E8100AEEA4FA6AC1C073A19604AE06E89F37349 (PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::Init()
|
|
inline void PointerEventBase_1_Init_m6A5AAAB38F079D58A444E447671A79AD4098B98A (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerUpEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerUpEvent_LocalInit_m8BAFF359C820A90203BBA8FEA3BE60F9A36A8EEB (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mAE2D24192D8C6D25D241F42CC8435FBC28036695 (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerType::IsDirectManipulationDevice(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerType_IsDirectManipulationDevice_m06C8898A27F24AED14D463BE991C78276260E36E (String_t* ___0_pointerType, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BaseVisualElementPanel::ClearCachedElementUnderPointer(System.Int32,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualElementPanel_ClearCachedElementUnderPointer_m56ED8260C952BAB24740F95B280D2294BCC58539 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_triggerEvent, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_mEEAD8C564A22C2CE82AD17A97F0DE7E4370F0669 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void PointerEventBase_1_PostDispatch_mAF5CD0D2EE756A1E0E7B0733E7EC352A320C0897 (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_PostDispatch_m55159C6FE00ECB9C36A55169DFA3EAE699EB3AC3_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::ActivateCompatibilityMouseEvents(UnityEngine.UIElements.IPanel,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_ActivateCompatibilityMouseEvents_mB5506AB811F3B2AEC0452FEF0BD394BA2B13DEB1 (RuntimeObject* ___0_panel, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::Init()
|
|
inline void PointerEventBase_1_Init_m7C39066C6FC58310E991F2C8C4491520EB6D013B (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCancelEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCancelEvent_LocalInit_m1C7DA0C8AF41E714D70C4BB760CFA3D1B1A9D3D8 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mDC2BA420399D1B05219425FA26A81E3C01EC983D (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.String UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::get_pointerType()
|
|
inline String_t* PointerEventBase_1_get_pointerType_m035E9ED854B5F58692E67128A759F3863D212795_inline (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_get_pointerType_m05EB5D56224F7A7A190AAFBBD622113A7A704F7C_gshared_inline)(__this, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::get_pointerId()
|
|
inline int32_t PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerCancelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_mADEC2C8C9C69683139A261C5312A679E7F6B1D29 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerCancelEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void PointerEventBase_1_PostDispatch_mCCE423FE41D58CBC68045348F89008943747FA2D (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE5B00823964EF715DC1ED310DB3F91B16D40D7C7*, RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_PostDispatch_m55159C6FE00ECB9C36A55169DFA3EAE699EB3AC3_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>::Init()
|
|
inline void PointerEventBase_1_Init_mECC6EFC54352B623BA3BCF96DC7ABCAA7109434C (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ClickEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickEvent_LocalInit_m62B68AB70576A5830F88BCCCCB3BB95934098492 (ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mA70B3E8EEAAE5C2CDE62205CD8E5A55FD41A33C4 (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
inline ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* PointerEventBase_1_GetPooled_m5B7D3239A8C1E92C3045C41997EDAC47F757E8DA (RuntimeObject* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* (*) (RuntimeObject*, const RuntimeMethod*))PointerEventBase_1_GetPooled_m612B3887EC374AF94E88181C4DD6FC55083A1B63_gshared)(___0_triggerEvent, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.ClickEvent>::set_clickCount(System.Int32)
|
|
inline void PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_inline (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tE7FD0B460EEC808CA9256F0071D67C920B0E1124*, int32_t, const RuntimeMethod*))PointerEventBase_1_set_clickCount_m951FFA44DA701FFDDB0784EC6EC325293D671DD0_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>::Init()
|
|
inline void PointerEventBase_1_Init_mB8033AF59D776B5968DD983BA8E2FEE5D7B2643A (PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEnterEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEnterEvent_LocalInit_m0BB2CA5C8996BFAA15C4502545054F9413BB6A51 (PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerEnterEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mA0557C9D68E527F40125701EA3A67DA52C805AA6 (PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_tFAF39AE25DDCEE3DE28F7BEF926867EB75BCE3D6*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>::Init()
|
|
inline void PointerEventBase_1_Init_m8C36DC066721E1AC99A205129551EBE2C65A432D (PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE*, const RuntimeMethod*))PointerEventBase_1_Init_mC10751BD7B55C42BCBC1E855E9B31116A1DE9EAE_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerLeaveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLeaveEvent_LocalInit_m0CBA72A4644CF857E3DD2746EAC04EA8F74964A7 (PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerLeaveEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_m5A717FB16CEBD963D885F99DBED915DBAD419F42 (PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t9D4143282EF9734F6C1F786F95E7B8D636D437DE*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOverEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mB7A3F65D4DA735C91B931AF65D46C6E5BFDD1FBE (PointerEventBase_1_t793D0418D3A027331899231F3AF583DE8B4791CC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t793D0418D3A027331899231F3AF583DE8B4791CC*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerOutEvent>::.ctor()
|
|
inline void PointerEventBase_1__ctor_mFC14CFE3B732209E75A86B89C1CE113DBF9FC0AC (PointerEventBase_1_t33EFDCA6FF8E804893DB7207C86CCB0F444D18CB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerEventBase_1_t33EFDCA6FF8E804893DB7207C86CCB0F444D18CB*, const RuntimeMethod*))PointerEventBase_1__ctor_mEB528D68A256915EA1143085BD73099BEF96F39E_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.ICustomStyle UnityEngine.UIElements.VisualElement::get_customStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_customStyle_mDCF1288B1B853DEDEA124C017B1C3AF9B1D5669C (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.CustomStyleResolvedEvent>::.ctor()
|
|
inline void EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE (EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD*, const RuntimeMethod*))EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.PropagationPhase UnityEngine.UIElements.EventBase::get_propagationPhase()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::InvokeCallbacks(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry_InvokeCallbacks_mB1B282F6F91C0E10E00F0A963223649BB4676EA9 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, int32_t ___1_propagationPhase, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction::.ctor(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogExecuteDefaultAction__ctor_m9AF0AC749478DD49D1B611ED1917877F51CF5A69 (EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC (EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackRegistry::HasTrickleDownHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackRegistry_HasTrickleDownHandlers_m1586C8C2C02F82AD8A5D6B713F01F8114EE3DE33 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackRegistry::HasBubbleHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackRegistry_HasBubbleHandlers_mB6FC43F1DB308DE15B293B6C0E801A186241F83C (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>::GetPooled()
|
|
inline GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* EventBase_1_GetPooled_m1A01D8B3467862836985A752F41A76010F6F06D8 (const RuntimeMethod* method)
|
|
{
|
|
return (( GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* (*) (const RuntimeMethod*))EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_oldRect(UnityEngine.Rect)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_oldRect_mEA782D77A997652976CE3517396F2D8973A41742_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_newRect(UnityEngine.Rect)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_newRect_m3F885B6343894840429DACBBBA8BDFE6CDB78F52_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>::Init()
|
|
inline void EventBase_1_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0 (EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E*, const RuntimeMethod*))EventBase_1_Init_mD11258015D6778B557F3DED4696BEF3335FD66C3_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_LocalInit_mCF78204B861F080CBA5E8FCFFCA59B2BEBE88268 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.Rect::get_zero()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_layoutPass(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_layoutPass_mCB48CB5C27EF9B4CCDF45776DCC8C4B35871E6FC_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>::.ctor()
|
|
inline void EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952 (EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E*, const RuntimeMethod*))EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>::Init()
|
|
inline void MouseEventBase_1_Init_m4EC1DC92CBE25F2D096B5F8C553FB4347F6EDE54 (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseDownEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseDownEvent_LocalInit_m572FAB81FAD2754FCC34F790390C5A0B33E40B32 (MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m19DE4DD0D8F81992FFEC61A6920378DA6E4BD9C4 (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::PressButton(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_PressButton_mBB102F81A0E72F8A7685E31979C1069FAB22C05F (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
inline MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseEventBase_1_GetPooled_m713CBA226990F6E0FC54AE1E756CB12FCDB33265 (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* (*) (RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m3D8B2183776DC9250833F7A866C03A6262D50088_gshared)(___0_pointerEvent, method);
|
|
}
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::MakeFromPointerEvent(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_MakeFromPointerEvent_mE7E9A57EBC8ED9D11314470C9092364D4E527BAF (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>::Init()
|
|
inline void MouseEventBase_1_Init_mADB87BB99F95C493AFE5ACE6377E47F978226453 (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseUpEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseUpEvent_LocalInit_m9D4351244B2C35DA661614AF2681EE5375BA0466 (MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m4A8C93EF6FCE660673064A965E01B031FA8C153D (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::ReleaseButton(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_ReleaseButton_m37AD62F48C80F0087158DA241DC055703268D494 (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
inline MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseEventBase_1_GetPooled_m48E23E2CEC51FF7FA6E60C4A4073F3E9075848D9 (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* (*) (RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m3D8B2183776DC9250833F7A866C03A6262D50088_gshared)(___0_pointerEvent, method);
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::MakeFromPointerEvent(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_MakeFromPointerEvent_mD1830A08D58F0D48CF422CF3E453B3C81E0237F4 (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>::Init()
|
|
inline void MouseEventBase_1_Init_mFEAB9B469E99EDAA5E56F540357226049C5B9AFA (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseMoveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseMoveEvent_LocalInit_m1159C3B901FC061B77C1C86AF01D4EDA5F779FB4 (MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mB84A95F11F7DECE44659C5D099FE7C82773A2BB1 (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
inline MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* MouseEventBase_1_GetPooled_mC2955840E38CF19566CC2F2D06178101E293F268 (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* (*) (RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m3D8B2183776DC9250833F7A866C03A6262D50088_gshared)(___0_pointerEvent, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextClickEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mD08FBD2DD5FD68ABF25E50B606C89B3EB46D8C82 (MouseEventBase_1_t5ED96675A2B42789E87132B5B4AE0102E645AA9B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t5ED96675A2B42789E87132B5B4AE0102E645AA9B*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>::GetPooled(UnityEngine.Event)
|
|
inline WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* MouseEventBase_1_GetPooled_m76E4D98D003541CE0DF10D5800CD7CE4D1BDC6AD (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* (*) (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m8109EEFF1AF800A62540B9E8364DDAD596D502BE_gshared)(___0_systemEvent, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.Event::get_delta()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Event_get_delta_m1BBF28E2FC379EDD3907DC987E6BD7E6521D69A0 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_v, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.WheelEvent::set_delta(UnityEngine.Vector3)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92_inline (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>::GetPooled(UnityEngine.UIElements.IPointerEvent)
|
|
inline WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* MouseEventBase_1_GetPooled_m4B99E18521DA00391AA9F80D8639D184C9ACA33C (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* (*) (RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m3D8B2183776DC9250833F7A866C03A6262D50088_gshared)(___0_pointerEvent, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>::Init()
|
|
inline void MouseEventBase_1_Init_mF4545F4BE72A0550BDF8FD5757AC406A1BF716A4 (MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.WheelEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WheelEvent_LocalInit_mED59C3380CDBD81DFBAE2DC2458C4118225C7A41 (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.WheelEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mB7045D14E46AB980B352B696F07A3DE86F767129 (MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t35E93F7BC2C45F462571240059A9AEA02683F3C8*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>::Init()
|
|
inline void MouseEventBase_1_Init_m0B0AF66EF7846C4FAA09B86D9A04A72AA7559F3A (MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterEvent_LocalInit_mFCFB0E12299ADB33B08857F6D621783E79951123 (MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m3C6E232AD6D84E78DDADFCF1186821ED2C5B66FE (MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tBD01CA048EE3FA69026A0B42D9393974E7BCF087*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>::Init()
|
|
inline void MouseEventBase_1_Init_m5FF50B43F529E49EFB22E44617739B8D414D8D25 (MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveEvent_LocalInit_m5A05E04EC6C8754DE7E7D17EB954D66918E34201 (MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mD86BD142A6E3495041FBDAB51EAC772A22BEA5EA (MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t4DA57599852343C51C0A70ED3856087EB47DE303*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>::Init()
|
|
inline void MouseEventBase_1_Init_m5172307D4D848585DFF1EB18608B9B26AAAB7A47 (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterWindowEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterWindowEvent_LocalInit_mB2A56A4CF9E7BAE2F0E404AE2CA863AA9B9FF262 (MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m604ECC785993566C6DBF24FE55F7050124B365DE (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualElementPanel::CommitElementUnderPointers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualElementPanel_CommitElementUnderPointers_m627C64420BE261C972B4A9D37E619E9E275EB072 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseEnterWindowEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void MouseEventBase_1_PostDispatch_m554F8A3B5BB1FF34F91107CD64E9E927546D800D (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tF3C8E1BD7B93DAD2BE4F4006268997097EA9F8B8*, RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_PostDispatch_m6B960FED57E8CC7841E48230254BAF12F40B4C5E_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::Init()
|
|
inline void MouseEventBase_1_Init_mFFC1D5A84BBF1E43B3219E043EC13091772C4708 (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveWindowEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveWindowEvent_LocalInit_m2041C8ED9719EA11285AD22A3BD4FE69BE0CDE9B (MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m6552D6F655A8E0E8C16FD2A907590F97F2DFF8A0 (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::ReleaseAllButtons(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_ReleaseAllButtons_mCB608A120B1851402C0300EF8AA95620A1AF86AA (int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::GetPooled(UnityEngine.Event)
|
|
inline MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* MouseEventBase_1_GetPooled_mDA2CD5EE5E56FDDF4ECBD5B5BEF7789AD73F52CD (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* (*) (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*, const RuntimeMethod*))MouseEventBase_1_GetPooled_m8109EEFF1AF800A62540B9E8364DDAD596D502BE_gshared)(___0_systemEvent, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void MouseEventBase_1_PostDispatch_mE6988E33474F18D07624B92B3828903754A296E0 (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6*, RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_PostDispatch_m6B960FED57E8CC7841E48230254BAF12F40B4C5E_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOverEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mE970617681C555250ADB957AAAA30CCA8471C99B (MouseEventBase_1_t953A98054E7AFA8FD043BFDA1CFBB6160E06EBC2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t953A98054E7AFA8FD043BFDA1CFBB6160E06EBC2*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseOutEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_m606F1D5F8D2D5C2AB1B3857D1C2C2EBBBF1F0906 (MouseEventBase_1_t8CFFFFBC092D11B6F52D25C2E177074C0CC59945* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t8CFFFFBC092D11B6F52D25C2E177074C0CC59945*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>::Init()
|
|
inline void MouseEventBase_1_Init_mB557CC2D817400B27286C2D5FBAB71B25A0A8DD5 (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E*, const RuntimeMethod*))MouseEventBase_1_Init_mB09017C0BBE7D3647831B5202FC027D2A265953D_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_LocalInit_m96F892D597CF3A54B393B7B5380800E93E632F3B (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::set_menu(UnityEngine.UIElements.DropdownMenu)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_set_menu_m28709F7A74353EFEECFE1C28D708C6F619E84120_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.ContextualMenuPopulateEvent::get_triggerEvent()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::set_triggerEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_set_triggerEvent_m6AEDC5CEB93E6A8DA01BD7760D7DE05C90884E3A_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>::.ctor()
|
|
inline void MouseEventBase_1__ctor_mD3DE0C71E1F39D8D818A1EA52D607369F382C3BF (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E*, const RuntimeMethod*))MouseEventBase_1__ctor_mA96528C27A4FDF555CF618BC5444FDB7C3E217C0_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.DropdownMenu UnityEngine.UIElements.ContextualMenuPopulateEvent::get_menu()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ContextualMenuPopulateEvent_get_menu_mDD978E1DE874D04B47708329654A7D37F88C37CA_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.DropdownMenu::PrepareForDisplay(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropdownMenu_PrepareForDisplay_m7217E1F33CE5D461B41D61239DBB1B8FCAB01DBF (DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.ContextualMenuPopulateEvent>::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
inline void MouseEventBase_1_PostDispatch_mB75794FD55D2CD0C88E989577B3D4768393F353F (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (MouseEventBase_1_t668C64269EF6F77113679FD1210F50818CA7E12E*, RuntimeObject*, const RuntimeMethod*))MouseEventBase_1_PostDispatch_m6B960FED57E8CC7841E48230254BAF12F40B4C5E_gshared)(__this, ___0_panel, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ValidateCommandEvent>::.ctor()
|
|
inline void CommandEventBase_1__ctor_m0EE3ADD730778B7B390BAB028BFE8F01481C2ADD (CommandEventBase_1_tDDFD63770D737B793DE4F5DA22FBA4462B9B229A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CommandEventBase_1_tDDFD63770D737B793DE4F5DA22FBA4462B9B229A*, const RuntimeMethod*))CommandEventBase_1__ctor_m316BD687453DE8C7E2FD2C8CD98929D1FC34756C_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CommandEventBase`1<UnityEngine.UIElements.ExecuteCommandEvent>::.ctor()
|
|
inline void CommandEventBase_1__ctor_mD1BEBAC533ED3D60C4D7A4587F3BAF7627E3F2E6 (CommandEventBase_1_tC61C876047FB1C3B000DE161F2EA5CE6EAF19952* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CommandEventBase_1_tC61C876047FB1C3B000DE161F2EA5CE6EAF19952*, const RuntimeMethod*))CommandEventBase_1__ctor_m316BD687453DE8C7E2FD2C8CD98929D1FC34756C_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>::Init()
|
|
inline void FocusEventBase_1_Init_mA72DC669D8659FF07D190ED39EC8AF109B22B2DC (FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2*, const RuntimeMethod*))FocusEventBase_1_Init_m90E3F1DBC6B1448469F14E45B5F7168589803B98_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusOutEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusOutEvent_LocalInit_m360EAB28EF2DB06A8327CEE5CB660354B12FA063 (FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>::.ctor()
|
|
inline void FocusEventBase_1__ctor_m94B8E2FFFA6261D448EFF0A546E833D70F708386 (FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2*, const RuntimeMethod*))FocusEventBase_1__ctor_m22E68D411B006E13551B87551DF92938B8E451FA_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PreDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreDispatch_mD788394C54A5400B25B423AF5DC41AA318A33DC4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>::get_focusController()
|
|
inline FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* FocusEventBase_1_get_focusController_m9E504BEF59B529FC125693F27E3E1F50495FDCA7_inline (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* (*) (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94*, const RuntimeMethod*))FocusEventBase_1_get_focusController_mBF86C2859478BA0F9C7B3FE06F0F124733C0A298_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::DoFocusChange(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_DoFocusChange_mF171453239CB9F0DF03E0E5ABFD48AEC49DF9CB4 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>::.ctor()
|
|
inline void FocusEventBase_1__ctor_m1263E69D612CA01C2996B918DF64532FD9FEB498 (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94*, const RuntimeMethod*))FocusEventBase_1__ctor_m22E68D411B006E13551B87551DF92938B8E451FA_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>::Init()
|
|
inline void FocusEventBase_1_Init_m2B80A3CB379E144D03568D06FA2216895A7A9804 (FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022*, const RuntimeMethod*))FocusEventBase_1_Init_m90E3F1DBC6B1448469F14E45B5F7168589803B98_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusInEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusInEvent_LocalInit_m662E1C26A15F66AD72F9D2CE1B867BD9BC69E9B6 (FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>::.ctor()
|
|
inline void FocusEventBase_1__ctor_m4D74FEAC69FD099A561F3E18A97276C34711144D (FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022*, const RuntimeMethod*))FocusEventBase_1__ctor_m22E68D411B006E13551B87551DF92938B8E451FA_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>::get_focusController()
|
|
inline FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* FocusEventBase_1_get_focusController_m4B3D99989FB7F92066CF64237E637A92A2FCBAA0_inline (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* (*) (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A*, const RuntimeMethod*))FocusEventBase_1_get_focusController_mBF86C2859478BA0F9C7B3FE06F0F124733C0A298_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>::.ctor()
|
|
inline void FocusEventBase_1__ctor_mAA41734F626A8D069318E4C1057CBE5D9C4711C5 (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A*, const RuntimeMethod*))FocusEventBase_1__ctor_m22E68D411B006E13551B87551DF92938B8E451FA_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Assertions.Assert::IsTrue(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsTrue_mE42C53B7220324D1FBAFB7AE48A7D8DD7796A663 (bool ___0_condition, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::SetBestTargetForEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy_SetBestTargetForEvent_m5CE6AA02B8DD56733DF12C63016A96073510B758 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToTarget(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToTarget_mA0A51B4ED15FC687C4E8767AE7DDEA5C44A935AD (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToRegularTarget(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToRegularTarget_m17A8680DC91E0A49168C3AC4ADDBA1B860A74B38 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToIMGUIContainer(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToIMGUIContainer_m34346929F73ECBC91D8520A049BF4B018B7C8010 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::IsDone(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_IsDone_mA1ECE68F27613C2E71607AC809D25862526065EF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::UpdateElementUnderMouse(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel,UnityEngine.UIElements.VisualElement&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy_UpdateElementUnderMouse_m40E22F2B217096A3396C781415BF4C66B60D2C5E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___2_elementUnderMouse, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseLeaveWindowEvent>::get_pressedButtons()
|
|
inline int32_t MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_inline (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (MouseEventBase_1_tFECF2C68461E1836AD69A4B03BD75F2B2CB2ABD6*, const RuntimeMethod*))MouseEventBase_1_get_pressedButtons_mE1BB0319BD4FC0790C886E984B48E75000C464AC_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Event::set_type(UnityEngine.EventType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::get_modifiers()
|
|
inline int32_t KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_inline (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA*, const RuntimeMethod*))KeyboardEventBase_1_get_modifiers_m3854A98D9AB58D771AA688360DB63B5D22DEA9DE_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Event::set_modifiers(UnityEngine.EventModifiers)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_modifiers_m879319643B5CD23F3223AB8E835C8ABCD3DA72FB (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::get_character()
|
|
inline Il2CppChar KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_inline (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Il2CppChar (*) (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA*, const RuntimeMethod*))KeyboardEventBase_1_get_character_mA9CEB62FCAB60DB09B83D5502FE84DE4B70D3727_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Event::set_character(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_character_mA159F1742FD9EA968F32556C5FE1A2401069BAF5 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::get_keyCode()
|
|
inline int32_t KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_inline (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA*, const RuntimeMethod*))KeyboardEventBase_1_get_keyCode_m416D85227006AA4A4F4A20396D2291068AA4916F_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.Event::set_keyCode(UnityEngine.KeyCode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_keyCode_m698D040F2EE0BE55B1B06A3FD865CC0A5D7B1168 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::.ctor()
|
|
inline void KeyboardEventBase_1__ctor_m81B4CAFCE183DB45ACDB9AF0319476AF0CD969CB (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA*, const RuntimeMethod*))KeyboardEventBase_1__ctor_m58E4DB80F810EC3538D88CC0D9856AFB36D64B42_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyUpEvent>::.ctor()
|
|
inline void KeyboardEventBase_1__ctor_m5DEEB4213631D80690A19ED45C5602BC705CA346 (KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyboardEventBase_1_t057EEE9439ED114E0F32C5C41075AD72A3E978DD*, const RuntimeMethod*))KeyboardEventBase_1__ctor_m58E4DB80F810EC3538D88CC0D9856AFB36D64B42_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.AttachToPanelEvent>::.ctor()
|
|
inline void PanelChangedEventBase_1__ctor_m484437AB3FBE0B759ABD36B98022E2ACCECF0311 (PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3*, const RuntimeMethod*))PanelChangedEventBase_1__ctor_m4AC8196BE117F81955496D33C8F2F07869E87897_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PanelChangedEventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>::.ctor()
|
|
inline void PanelChangedEventBase_1__ctor_m9205106266852B52BAD4133BC38F6BF8DF28F26E (PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39*, const RuntimeMethod*))PanelChangedEventBase_1__ctor_m4AC8196BE117F81955496D33C8F2F07869E87897_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>::Init()
|
|
inline void EventBase_1_Init_m8131683CEF471879438D67B7856F2A89C63C7929 (EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB*, const RuntimeMethod*))EventBase_1_Init_mD11258015D6778B557F3DED4696BEF3335FD66C3_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.InputEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_LocalInit_mE33CB375D1946443F69F84B9E5FCE65D23E65A5F (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InputEvent::set_previousData(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEvent_set_previousData_mB8F0167113616AA99FAB01E99A7CC34D723214DD_inline (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InputEvent::set_newData(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEvent_set_newData_m9ECFA476FF3EE5F711B54E572B5631EA656EA76C_inline (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>::GetPooled()
|
|
inline InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* EventBase_1_GetPooled_mB5A6FDED5153774180E113D48361FE9036A93B0C (const RuntimeMethod* method)
|
|
{
|
|
return (( InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* (*) (const RuntimeMethod*))EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.InputEvent>::.ctor()
|
|
inline void EventBase_1__ctor_m146C3FE791CB9769618F8574DE4ADA56F3A3AAA3 (EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB*, const RuntimeMethod*))EventBase_1__ctor_m385124A7A8517F869B52108A7FC234225AFBB4A0_gshared)(__this, method);
|
|
}
|
|
// System.Single UnityEngine.Vector2::get_sqrMagnitude()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationMoveEvent>::GetPooled()
|
|
inline NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* EventBase_1_GetPooled_mA4352A75E18231B53FD89198374B6EC173D93D78 (const RuntimeMethod* method)
|
|
{
|
|
return (( NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* (*) (const RuntimeMethod*))EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.NavigationMoveEvent/Direction UnityEngine.UIElements.NavigationMoveEvent::DetermineMoveDirection(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigationMoveEvent_DetermineMoveDirection_mED9C93FCB031403BE1A49CD7010C46A4EC860421 (float ___0_x, float ___1_y, float ___2_deadZone, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::set_direction(UnityEngine.UIElements.NavigationMoveEvent/Direction)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_direction_m712EBADD778DE12FB11A2E35FA160BA321A1804B_inline (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::set_move(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_move_mB6C278D3B4A3FE95F573E3E74DC3BCD066567244_inline (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>::Init()
|
|
inline void NavigationEventBase_1_Init_m7B60279F83401BB6508A7B2658240EDA30D5EA8F (NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31*, const RuntimeMethod*))NavigationEventBase_1_Init_m207A5CA6A8C3A85BE62B23B38AA3FE7ADD4C322F_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationMoveEvent>::.ctor()
|
|
inline void NavigationEventBase_1__ctor_m4F9E95BC8D415DE106E1932FF4A82366CD25D8B9 (NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_tEDD047CC06F9BA7B1CA7D54DCAA4B7DDFA99DF31*, const RuntimeMethod*))NavigationEventBase_1__ctor_mA5A97B1F0450883554F0B9A668C117821F0FC157_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.NavigationTabEvent>::GetPooled()
|
|
inline NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* EventBase_1_GetPooled_m513A5D9AE3EC627C07100D4CE41F7A80485BF5EB (const RuntimeMethod* method)
|
|
{
|
|
return (( NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* (*) (const RuntimeMethod*))EventBase_1_GetPooled_mBD7595B7D0C2B6D191690953CCBC74F4120FBD01_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.NavigationTabEvent/Direction UnityEngine.UIElements.NavigationTabEvent::DetermineMoveDirection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigationTabEvent_DetermineMoveDirection_m8429257B9CBCE7E40724CE2134A8B315FE525E31 (int32_t ___0_moveValue, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationTabEvent::set_direction(UnityEngine.UIElements.NavigationTabEvent/Direction)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationTabEvent_set_direction_m1CAB1803AA164CAA4D53D4FDFBA012F4148CD59F_inline (NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>::Init()
|
|
inline void NavigationEventBase_1_Init_m3C16C9ABDFE7568FE4D45C6C0C16A6A7EE49E223 (NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939*, const RuntimeMethod*))NavigationEventBase_1_Init_m207A5CA6A8C3A85BE62B23B38AA3FE7ADD4C322F_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationTabEvent>::.ctor()
|
|
inline void NavigationEventBase_1__ctor_mE183BB21D852CC844A54BEE671209231A4B4CC6D (NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_tFF6BF61509F756B8D8DADCD3AD2C31DE00F96939*, const RuntimeMethod*))NavigationEventBase_1__ctor_mA5A97B1F0450883554F0B9A668C117821F0FC157_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationCancelEvent>::.ctor()
|
|
inline void NavigationEventBase_1__ctor_mECD273E7B651E2DE0CB6D4F2AC99578358CF2D75 (NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_t7F8A7ED2852A570BAEE97B2620A0569C74E91022*, const RuntimeMethod*))NavigationEventBase_1__ctor_mA5A97B1F0450883554F0B9A668C117821F0FC157_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventBase`1<UnityEngine.UIElements.NavigationSubmitEvent>::.ctor()
|
|
inline void NavigationEventBase_1__ctor_m364A946C798C642694D607BD7C3CB5B91A1DE34F (NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NavigationEventBase_1_t141648AE09CFA7BADDE9BDF1DF9CA2777D82DA87*, const RuntimeMethod*))NavigationEventBase_1__ctor_mA5A97B1F0450883554F0B9A668C117821F0FC157_gshared)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_dispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_dispatch_mD276B79138918A551A035A384CB801D17166406F (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.EventBase::get_path()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::get_Count()
|
|
inline int32_t List_1_get_Count_m76A83B76330D385CC22ECE544729CDD0FCEAFECC_inline (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::get_Item(System.Int32)
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092 (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>::GetEnumerator()
|
|
inline Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 (*) (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>::Dispose()
|
|
inline void Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4 (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>::get_Current()
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_inline (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* (*) (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844 (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualElement::get_elementPanel()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_focusable()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement/Hierarchy::get_childCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hierarchy_get_childCount_mAD31B42C0FF9B64AAF6A8CF23F22024B3F9542D5 (Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Hierarchy_get_Item_mBA5811C28D9E7FA48D0F10603A95F8CF248C3467 (Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::.ctor()
|
|
inline void Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42 (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834*, const RuntimeMethod*))Dictionary_2__ctor_m3C5862A628EEC02A20BF1DD0DAC66C872AA86B71_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector/PseudoStateData::.ctor(UnityEngine.UIElements.PseudoStates,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27 (PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8* __this, int32_t ___0_state, bool ___1_negate, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525 (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* __this, String_t* ___0_key, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834*, String_t*, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8, const RuntimeMethod*))Dictionary_2_set_Item_m65F7AB2D49B09E3F4C0FD364FC3DBDB4CC501C9C_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
// UnityEngine.UIElements.StyleSelector[] UnityEngine.UIElements.StyleComplexSelector::get_selectors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleSelectorPart[] UnityEngine.UIElements.StyleSelector::get_parts()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleSelectorType UnityEngine.UIElements.StyleSelectorPart::get_type()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818 (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.StyleSelectorPart::get_value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8 (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* __this, String_t* ___0_key, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834*, String_t*, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8*, const RuntimeMethod*))Dictionary_2_TryGetValue_m210FC0055E9EF77E13C23B66ED80E6E7CD6DB4FF_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
// System.Void UnityEngine.Debug::LogWarningFormat(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarningFormat_mD8224DEBCB6050F4E2BF55151F0C6A29B87DEFBC (String_t* ___0_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_2__ctor_m13E7564459EAE64DC03D66DA40D517179E0FFEA8 (Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F8A01C0B02BC1D4063F4EB1E817F7A48562A398_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<UnityEngine.UIElements.StyleSelector,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
|
|
inline RuntimeObject* Enumerable_Select_TisStyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362_TisString_t_m79C46127F42BF97331248F9BBB8216CBAE3B0FE5 (RuntimeObject* ___0_source, Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* ___1_selector, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (RuntimeObject*, Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59*, const RuntimeMethod*))Enumerable_Select_TisRuntimeObject_TisRuntimeObject_m67C538A5EBF57C4844107A8EF25DB2CAAFBAF8FB_gshared)(___0_source, ___1_selector, method);
|
|
}
|
|
// TSource[] System.Linq.Enumerable::ToArray<System.String>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Enumerable_ToArray_TisString_t_m3B23EE2DD15B2996E7D2ECA6E74696DA892AA194 (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisRuntimeObject_mA54265C2C8A0864929ECD300B75E4952D553D17D_gshared)(___0_source, method);
|
|
}
|
|
// System.String System.String::Join(System.String,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD (String_t* ___0_separator, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_value, const RuntimeMethod* method) ;
|
|
// System.String System.String::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
// System.Int32 System.BitConverter::SingleToInt32Bits(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.RadioButtonGroup/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_m4DE146268D2868B2569F6FE00949A80128558439 (UxmlFactory_t73B2991499239881C5C824B63741E30FC900377F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_m38DAD155B16017BA79124CB537DD2545D0740805_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_m38DAD155B16017BA79124CB537DD2545D0740805(__this, UxmlFactory_2__ctor_m38DAD155B16017BA79124CB537DD2545D0740805_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
|
|
// System.Void UnityEngine.UIElements.RadioButtonGroup/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_mDE44740C25CCEB05619440AEE2882193AE9CA79E (UxmlTraits_t2B80C3B5E7B8E0FBF2384F6224536E39AF415DB3* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseFieldTraits_2_Init_m765BE03BDB7A4A470F510B71C4E8B929FEC37868_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE* V_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
RuntimeObject* L_1 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_2 = ___2_cc;
|
|
BaseFieldTraits_2_Init_m765BE03BDB7A4A470F510B71C4E8B929FEC37868(__this, L_0, L_1, L_2, BaseFieldTraits_2_Init_m765BE03BDB7A4A470F510B71C4E8B929FEC37868_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ve;
|
|
V_0 = ((RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE*)CastclassClass((RuntimeObject*)L_3, RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE_il2cpp_TypeInfo_var));
|
|
RadioButtonGroup_t92E82155D2102EA368B854C8F088737BED188DDE* L_4 = V_0;
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_5 = __this->___m_Choices_15;
|
|
RuntimeObject* L_6 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_7 = ___2_cc;
|
|
NullCheck(L_5);
|
|
String_t* L_8;
|
|
L_8 = VirtualFuncInvoker2< String_t*, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_5, L_6, L_7);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_9;
|
|
L_9 = UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861(L_8, UxmlTraits_ParseChoiceList_m60C1CE3D1E5247613494D9CC988E183110281861_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
RadioButtonGroup_set_choices_m67A6FABD7E22F1C7997C52F5E68FEE69C6DED64C(L_4, L_9, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.RadioButtonGroup/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_m887D965A333D64746483A34F36D6B72AD27B114F (UxmlTraits_t2B80C3B5E7B8E0FBF2384F6224536E39AF415DB3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseFieldTraits_2__ctor_m24D431C996A2879E3178FDF616EE6CD4004F588F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1EF7C872CC643B32A30371B136F5234F6C7B3F0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_0 = (UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF*)il2cpp_codegen_object_new(UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
UxmlStringAttributeDescription__ctor_mA8A849D4B098131C4D456911CAA16E3A964B51D7(L_0, NULL);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_1, _stringLiteralF1EF7C872CC643B32A30371B136F5234F6C7B3F0, NULL);
|
|
__this->___m_Choices_15 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Choices_15), (void*)L_1);
|
|
BaseFieldTraits_2__ctor_m24D431C996A2879E3178FDF616EE6CD4004F588F(__this, BaseFieldTraits_2__ctor_m24D431C996A2879E3178FDF616EE6CD4004F588F_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
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::get_fixedPane()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* TwoPaneSplitView_get_fixedPane_m9EE7781C6F3E854BC3E0A2615FFBD0A614A4C4B5 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_FixedPane_77;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::get_flexedPane()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* TwoPaneSplitView_get_flexedPane_m9AA2C53DCFA187AE40F3F4C56B6D80EC93922239 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_FlexedPane_78;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TwoPaneSplitView::get_fixedPaneIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TwoPaneSplitView_get_fixedPaneIndex_m745FA06FEA7DCDF534D96A235E13F515C5504B0F (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_FixedPaneIndex_85;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.TwoPaneSplitView::get_fixedPaneDimension()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TwoPaneSplitView_get_fixedPaneDimension_m822BCD676B187C5640A6E7F86B63E2705A2C621C (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = VisualElement_get_viewDataKey_m1F990A70B7861D0071A4462C62477363C69223F5(__this, NULL);
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = __this->___m_FixedPaneDimension_79;
|
|
G_B3_0 = L_2;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_3 = __this->___m_FixedPaneInitialDimension_86;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return G_B3_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::set_fixedPaneDimension(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_set_fixedPaneDimension_m280265B68A13E2A5BBB2DC83CFF16261B45BE76C (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___0_value;
|
|
float L_1 = __this->___m_FixedPaneDimension_79;
|
|
V_0 = (bool)((((float)L_0) == ((float)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
float L_3 = ___0_value;
|
|
__this->___m_FixedPaneDimension_79 = L_3;
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView__ctor_mB89BA100928E508ADBB1D9D6CDC76069EC2358E2 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7EEE7A209509DD074A6DCF92F933A54B19F4AA76);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral940A6B653D7D0E259EE14C9F44C62DD3992D6A2F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral97FCF4C5E9B3B166B1D9C1242C020B41F797EFED);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
__this->___m_FixedPaneDimension_79 = (-1.0f);
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_0 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_UssClassName_65;
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(__this, L_0, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_1, NULL);
|
|
__this->___m_Content_83 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Content_83), (void*)L_1);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = __this->___m_Content_83;
|
|
NullCheck(L_2);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_2, _stringLiteral97FCF4C5E9B3B166B1D9C1242C020B41F797EFED, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = __this->___m_Content_83;
|
|
String_t* L_4 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_ContentContainerClassName_66;
|
|
NullCheck(L_3);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_3, L_4, NULL);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_5;
|
|
L_5 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(__this, NULL);
|
|
V_0 = L_5;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = __this->___m_Content_83;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_0), L_6, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_7, NULL);
|
|
__this->___m_DragLineAnchor_81 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DragLineAnchor_81), (void*)L_7);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_8);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_8, _stringLiteral940A6B653D7D0E259EE14C9F44C62DD3992D6A2F, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = __this->___m_DragLineAnchor_81;
|
|
String_t* L_10 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorClassName_70;
|
|
NullCheck(L_9);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_9, L_10, NULL);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_11;
|
|
L_11 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(__this, NULL);
|
|
V_0 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = __this->___m_DragLineAnchor_81;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_0), L_12, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_13, NULL);
|
|
__this->___m_DragLine_80 = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DragLine_80), (void*)L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = __this->___m_DragLine_80;
|
|
NullCheck(L_14);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_14, _stringLiteral7EEE7A209509DD074A6DCF92F933A54B19F4AA76, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = __this->___m_DragLine_80;
|
|
String_t* L_16 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineClassName_67;
|
|
NullCheck(L_15);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_15, L_16, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = __this->___m_DragLineAnchor_81;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = __this->___m_DragLine_80;
|
|
NullCheck(L_17);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_17, L_18, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::Init(System.Int32,System.Single,UnityEngine.UIElements.TwoPaneSplitViewOrientation)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_Init_mE0E3846607CD76825587E2F2F6D9E1BB58984151 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, int32_t ___0_fixedPaneIndex, float ___1_fixedPaneInitialDimension, int32_t ___2_orientation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
{
|
|
int32_t L_0 = ___2_orientation;
|
|
__this->___m_Orientation_84 = L_0;
|
|
int32_t L_1 = ___0_fixedPaneIndex;
|
|
__this->___m_FixedPaneIndex_85 = L_1;
|
|
float L_2 = ___1_fixedPaneInitialDimension;
|
|
__this->___m_FixedPaneInitialDimension_86 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = __this->___m_Content_83;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_4 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HorizontalClassName_74;
|
|
NullCheck(L_3);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_3, L_4, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = __this->___m_Content_83;
|
|
String_t* L_6 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_VerticalClassName_73;
|
|
NullCheck(L_5);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_5, L_6, NULL);
|
|
int32_t L_7 = __this->___m_Orientation_84;
|
|
V_0 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = __this->___m_Content_83;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_10 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HorizontalClassName_74;
|
|
NullCheck(L_9);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_9, L_10, NULL);
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = __this->___m_Content_83;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_12 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_VerticalClassName_73;
|
|
NullCheck(L_11);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_11, L_12, NULL);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = __this->___m_DragLineAnchor_81;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_14 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorHorizontalClassName_72;
|
|
NullCheck(L_13);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_13, L_14, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = __this->___m_DragLineAnchor_81;
|
|
String_t* L_16 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorVerticalClassName_71;
|
|
NullCheck(L_15);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_15, L_16, NULL);
|
|
int32_t L_17 = __this->___m_Orientation_84;
|
|
V_1 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
|
|
bool L_18 = V_1;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = __this->___m_DragLineAnchor_81;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_20 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorHorizontalClassName_72;
|
|
NullCheck(L_19);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_19, L_20, NULL);
|
|
goto IL_00bc;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = __this->___m_DragLineAnchor_81;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_22 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorVerticalClassName_71;
|
|
NullCheck(L_21);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_21, L_22, NULL);
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_23 = __this->___m_DragLine_80;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_24 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineHorizontalClassName_69;
|
|
NullCheck(L_23);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_23, L_24, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = __this->___m_DragLine_80;
|
|
String_t* L_26 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineVerticalClassName_68;
|
|
NullCheck(L_25);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_25, L_26, NULL);
|
|
int32_t L_27 = __this->___m_Orientation_84;
|
|
V_2 = (bool)((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
|
|
bool L_28 = V_2;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29 = __this->___m_DragLine_80;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_30 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineHorizontalClassName_69;
|
|
NullCheck(L_29);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_29, L_30, NULL);
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = __this->___m_DragLine_80;
|
|
il2cpp_codegen_runtime_class_init_inline(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
String_t* L_32 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineVerticalClassName_68;
|
|
NullCheck(L_31);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_31, L_32, NULL);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* L_33 = __this->___m_Resizer_87;
|
|
V_3 = (bool)((!(((RuntimeObject*)(TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5*)L_33) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_34 = V_3;
|
|
if (!L_34)
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_35 = __this->___m_DragLineAnchor_81;
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* L_36 = __this->___m_Resizer_87;
|
|
VisualElementExtensions_RemoveManipulator_m7FF368767CDA311BA47F56729AA68B173F1BED35(L_35, L_36, NULL);
|
|
__this->___m_Resizer_87 = (TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Resizer_87), (void*)(TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5*)NULL);
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = __this->___m_Content_83;
|
|
NullCheck(L_37);
|
|
int32_t L_38;
|
|
L_38 = VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A(L_37, NULL);
|
|
V_4 = (bool)((((int32_t)((((int32_t)L_38) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_39 = V_4;
|
|
if (!L_39)
|
|
{
|
|
goto IL_0164;
|
|
}
|
|
}
|
|
{
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_40 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_40);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_40, __this, (intptr_t)((void*)TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F(__this, L_40, 0, CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
goto IL_016b;
|
|
}
|
|
|
|
IL_0164:
|
|
{
|
|
TwoPaneSplitView_PostDisplaySetup_m02D365F56B5A7DEF64BED0407AF48E4685D8B43A(__this, NULL);
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::OnPostDisplaySetup(UnityEngine.UIElements.GeometryChangedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD542F2D72436073414E6B1D92AB2475BA3DD4136);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_Content_83;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A(L_0, NULL);
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralD542F2D72436073414E6B1D92AB2475BA3DD4136, NULL);
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
TwoPaneSplitView_PostDisplaySetup_m02D365F56B5A7DEF64BED0407AF48E4685D8B43A(__this, NULL);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_3 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_3, __this, (intptr_t)((void*)TwoPaneSplitView_OnPostDisplaySetup_mECD63507F2C66A3A75E97F50CD6F9B98F56519DE_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2(__this, L_3, 0, CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::PostDisplaySetup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_PostDisplaySetup_m02D365F56B5A7DEF64BED0407AF48E4685D8B43A (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_OnSizeChange_mE9251DA484D4D1D75709BEB0C9CB9324B4D654B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD542F2D72436073414E6B1D92AB2475BA3DD4136);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_Content_83;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A(L_0, NULL);
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralD542F2D72436073414E6B1D92AB2475BA3DD4136, NULL);
|
|
goto IL_03bf;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
float L_3;
|
|
L_3 = TwoPaneSplitView_get_fixedPaneDimension_m822BCD676B187C5640A6E7F86B63E2705A2C621C(__this, NULL);
|
|
V_3 = (bool)((((float)L_3) < ((float)(0.0f)))? 1 : 0);
|
|
bool L_4 = V_3;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
float L_5 = __this->___m_FixedPaneInitialDimension_86;
|
|
TwoPaneSplitView_set_fixedPaneDimension_m280265B68A13E2A5BBB2DC83CFF16261B45BE76C(__this, L_5, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
float L_6;
|
|
L_6 = TwoPaneSplitView_get_fixedPaneDimension_m822BCD676B187C5640A6E7F86B63E2705A2C621C(__this, NULL);
|
|
V_0 = L_6;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = __this->___m_Content_83;
|
|
NullCheck(L_7);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = VisualElement_get_Item_m84C0E356F6D66363D97482DC4EFC17060060C693(L_7, 0, NULL);
|
|
__this->___m_LeftPane_75 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LeftPane_75), (void*)L_8);
|
|
int32_t L_9 = __this->___m_FixedPaneIndex_85;
|
|
V_4 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
bool L_10 = V_4;
|
|
if (!L_10)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = __this->___m_LeftPane_75;
|
|
__this->___m_FixedPane_77 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FixedPane_77), (void*)L_11);
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = __this->___m_LeftPane_75;
|
|
__this->___m_FlexedPane_78 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FlexedPane_78), (void*)L_12);
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = __this->___m_Content_83;
|
|
NullCheck(L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = VisualElement_get_Item_m84C0E356F6D66363D97482DC4EFC17060060C693(L_13, 1, NULL);
|
|
__this->___m_RightPane_76 = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_RightPane_76), (void*)L_14);
|
|
int32_t L_15 = __this->___m_FixedPaneIndex_85;
|
|
V_5 = (bool)((((int32_t)L_15) == ((int32_t)1))? 1 : 0);
|
|
bool L_16 = V_5;
|
|
if (!L_16)
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = __this->___m_RightPane_76;
|
|
__this->___m_FixedPane_77 = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FixedPane_77), (void*)L_17);
|
|
goto IL_00c2;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = __this->___m_RightPane_76;
|
|
__this->___m_FlexedPane_78 = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FlexedPane_78), (void*)L_18);
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = __this->___m_FixedPane_77;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_19, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_21;
|
|
L_21 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_20);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(18 /* System.Void UnityEngine.UIElements.IStyle::set_flexBasis(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_20, L_21);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22 = __this->___m_FixedPane_77;
|
|
NullCheck(L_22);
|
|
RuntimeObject* L_23;
|
|
L_23 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_22, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_24;
|
|
L_24 = StyleFloat_op_Implicit_m664791457EBA988722362ABB4560E5E464A1E88B(1, NULL);
|
|
NullCheck(L_23);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(21 /* System.Void UnityEngine.UIElements.IStyle::set_flexShrink(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_23, L_24);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = __this->___m_FixedPane_77;
|
|
NullCheck(L_25);
|
|
RuntimeObject* L_26;
|
|
L_26 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_25, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_27;
|
|
L_27 = StyleFloat_op_Implicit_m664791457EBA988722362ABB4560E5E464A1E88B(1, NULL);
|
|
NullCheck(L_26);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_26, L_27);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29;
|
|
L_29 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_28, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_30;
|
|
L_30 = StyleFloat_op_Implicit_m664791457EBA988722362ABB4560E5E464A1E88B(1, NULL);
|
|
NullCheck(L_29);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_29, L_30);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_32;
|
|
L_32 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_31, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_33;
|
|
L_33 = StyleFloat_op_Implicit_m664791457EBA988722362ABB4560E5E464A1E88B(1, NULL);
|
|
NullCheck(L_32);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(21 /* System.Void UnityEngine.UIElements.IStyle::set_flexShrink(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_32, L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_34);
|
|
RuntimeObject* L_35;
|
|
L_35 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_34, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_36;
|
|
L_36 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_35);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(18 /* System.Void UnityEngine.UIElements.IStyle::set_flexBasis(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_35, L_36);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = __this->___m_FixedPane_77;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_38;
|
|
L_38 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_37, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_39;
|
|
L_39 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_38);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(49 /* System.Void UnityEngine.UIElements.IStyle::set_width(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_38, L_39);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_40 = __this->___m_FixedPane_77;
|
|
NullCheck(L_40);
|
|
RuntimeObject* L_41;
|
|
L_41 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_40, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_42;
|
|
L_42 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_41);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(24 /* System.Void UnityEngine.UIElements.IStyle::set_height(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_41, L_42);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_43 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_43);
|
|
RuntimeObject* L_44;
|
|
L_44 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_43, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_45;
|
|
L_45 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_44);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(49 /* System.Void UnityEngine.UIElements.IStyle::set_width(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_44, L_45);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_46 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_46);
|
|
RuntimeObject* L_47;
|
|
L_47 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_46, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_48;
|
|
L_48 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_47);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(24 /* System.Void UnityEngine.UIElements.IStyle::set_height(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_47, L_48);
|
|
int32_t L_49 = __this->___m_Orientation_84;
|
|
V_6 = (bool)((((int32_t)L_49) == ((int32_t)0))? 1 : 0);
|
|
bool L_50 = V_6;
|
|
if (!L_50)
|
|
{
|
|
goto IL_01e9;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = __this->___m_FixedPane_77;
|
|
NullCheck(L_51);
|
|
RuntimeObject* L_52;
|
|
L_52 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_51, NULL);
|
|
float L_53 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_54;
|
|
L_54 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_53, NULL);
|
|
NullCheck(L_52);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(49 /* System.Void UnityEngine.UIElements.IStyle::set_width(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_52, L_54);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_55 = __this->___m_FixedPane_77;
|
|
NullCheck(L_55);
|
|
RuntimeObject* L_56;
|
|
L_56 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_55, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_57;
|
|
L_57 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_56);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(24 /* System.Void UnityEngine.UIElements.IStyle::set_height(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_56, L_57);
|
|
goto IL_0219;
|
|
}
|
|
|
|
IL_01e9:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_58 = __this->___m_FixedPane_77;
|
|
NullCheck(L_58);
|
|
RuntimeObject* L_59;
|
|
L_59 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_58, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_60;
|
|
L_60 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(1, NULL);
|
|
NullCheck(L_59);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(49 /* System.Void UnityEngine.UIElements.IStyle::set_width(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_59, L_60);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_61 = __this->___m_FixedPane_77;
|
|
NullCheck(L_61);
|
|
RuntimeObject* L_62;
|
|
L_62 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_61, NULL);
|
|
float L_63 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_64;
|
|
L_64 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_63, NULL);
|
|
NullCheck(L_62);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(24 /* System.Void UnityEngine.UIElements.IStyle::set_height(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_62, L_64);
|
|
}
|
|
|
|
IL_0219:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_65 = __this->___m_FixedPane_77;
|
|
NullCheck(L_65);
|
|
RuntimeObject* L_66;
|
|
L_66 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_65, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_67;
|
|
L_67 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((0.0f), NULL);
|
|
NullCheck(L_66);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(21 /* System.Void UnityEngine.UIElements.IStyle::set_flexShrink(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_66, L_67);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_68 = __this->___m_FixedPane_77;
|
|
NullCheck(L_68);
|
|
RuntimeObject* L_69;
|
|
L_69 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_68, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_70;
|
|
L_70 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((0.0f), NULL);
|
|
NullCheck(L_69);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_69, L_70);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_71 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_71);
|
|
RuntimeObject* L_72;
|
|
L_72 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_71, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_73;
|
|
L_73 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((1.0f), NULL);
|
|
NullCheck(L_72);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_72, L_73);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_74 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_74);
|
|
RuntimeObject* L_75;
|
|
L_75 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_74, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_76;
|
|
L_76 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((0.0f), NULL);
|
|
NullCheck(L_75);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(21 /* System.Void UnityEngine.UIElements.IStyle::set_flexShrink(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_75, L_76);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_77 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_77);
|
|
RuntimeObject* L_78;
|
|
L_78 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_77, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_79;
|
|
L_79 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019((0.0f), NULL);
|
|
NullCheck(L_78);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(18 /* System.Void UnityEngine.UIElements.IStyle::set_flexBasis(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_78, L_79);
|
|
int32_t L_80 = __this->___m_Orientation_84;
|
|
V_7 = (bool)((((int32_t)L_80) == ((int32_t)0))? 1 : 0);
|
|
bool L_81 = V_7;
|
|
if (!L_81)
|
|
{
|
|
goto IL_02fe;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_82 = __this->___m_FixedPaneIndex_85;
|
|
V_8 = (bool)((((int32_t)L_82) == ((int32_t)0))? 1 : 0);
|
|
bool L_83 = V_8;
|
|
if (!L_83)
|
|
{
|
|
goto IL_02d8;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_84 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_84);
|
|
RuntimeObject* L_85;
|
|
L_85 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_84, NULL);
|
|
float L_86 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_87;
|
|
L_87 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_86, NULL);
|
|
NullCheck(L_85);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(25 /* System.Void UnityEngine.UIElements.IStyle::set_left(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_85, L_87);
|
|
goto IL_02fb;
|
|
}
|
|
|
|
IL_02d8:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_88 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_88);
|
|
RuntimeObject* L_89;
|
|
L_89 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_88, NULL);
|
|
RuntimeObject* L_90;
|
|
L_90 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_90);
|
|
float L_91;
|
|
L_91 = InterfaceFuncInvoker0< float >::Invoke(43 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_width() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_90);
|
|
float L_92 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_93;
|
|
L_93 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(((float)il2cpp_codegen_subtract(L_91, L_92)), NULL);
|
|
NullCheck(L_89);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(25 /* System.Void UnityEngine.UIElements.IStyle::set_left(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_89, L_93);
|
|
}
|
|
|
|
IL_02fb:
|
|
{
|
|
goto IL_034b;
|
|
}
|
|
|
|
IL_02fe:
|
|
{
|
|
int32_t L_94 = __this->___m_FixedPaneIndex_85;
|
|
V_9 = (bool)((((int32_t)L_94) == ((int32_t)0))? 1 : 0);
|
|
bool L_95 = V_9;
|
|
if (!L_95)
|
|
{
|
|
goto IL_0327;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_96 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_96);
|
|
RuntimeObject* L_97;
|
|
L_97 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_96, NULL);
|
|
float L_98 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_99;
|
|
L_99 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_98, NULL);
|
|
NullCheck(L_97);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(42 /* System.Void UnityEngine.UIElements.IStyle::set_top(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_97, L_99);
|
|
goto IL_034a;
|
|
}
|
|
|
|
IL_0327:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_100 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_100);
|
|
RuntimeObject* L_101;
|
|
L_101 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_100, NULL);
|
|
RuntimeObject* L_102;
|
|
L_102 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_102);
|
|
float L_103;
|
|
L_103 = InterfaceFuncInvoker0< float >::Invoke(18 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_height() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_102);
|
|
float L_104 = V_0;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_105;
|
|
L_105 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(((float)il2cpp_codegen_subtract(L_103, L_104)), NULL);
|
|
NullCheck(L_101);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(42 /* System.Void UnityEngine.UIElements.IStyle::set_top(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_101, L_105);
|
|
}
|
|
|
|
IL_034a:
|
|
{
|
|
}
|
|
|
|
IL_034b:
|
|
{
|
|
V_1 = 1;
|
|
int32_t L_106 = __this->___m_FixedPaneIndex_85;
|
|
V_10 = (bool)((((int32_t)L_106) == ((int32_t)0))? 1 : 0);
|
|
bool L_107 = V_10;
|
|
if (!L_107)
|
|
{
|
|
goto IL_0360;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 1;
|
|
goto IL_0362;
|
|
}
|
|
|
|
IL_0360:
|
|
{
|
|
V_1 = (-1);
|
|
}
|
|
|
|
IL_0362:
|
|
{
|
|
int32_t L_108 = __this->___m_FixedPaneIndex_85;
|
|
V_11 = (bool)((((int32_t)L_108) == ((int32_t)0))? 1 : 0);
|
|
bool L_109 = V_11;
|
|
if (!L_109)
|
|
{
|
|
goto IL_0386;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_110 = V_1;
|
|
int32_t L_111 = __this->___m_Orientation_84;
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* L_112 = (TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5*)il2cpp_codegen_object_new(TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_112);
|
|
TwoPaneSplitViewResizer__ctor_m2531CFDFE34DBF0649687308F5DB77C7A4636D89(L_112, __this, L_110, L_111, NULL);
|
|
__this->___m_Resizer_87 = L_112;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Resizer_87), (void*)L_112);
|
|
goto IL_0399;
|
|
}
|
|
|
|
IL_0386:
|
|
{
|
|
int32_t L_113 = V_1;
|
|
int32_t L_114 = __this->___m_Orientation_84;
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* L_115 = (TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5*)il2cpp_codegen_object_new(TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_115);
|
|
TwoPaneSplitViewResizer__ctor_m2531CFDFE34DBF0649687308F5DB77C7A4636D89(L_115, __this, L_113, L_114, NULL);
|
|
__this->___m_Resizer_87 = L_115;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Resizer_87), (void*)L_115);
|
|
}
|
|
|
|
IL_0399:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_116 = __this->___m_DragLineAnchor_81;
|
|
TwoPaneSplitViewResizer_t2F90BA5231BD6B25F7442A86359B78004B73CEF5* L_117 = __this->___m_Resizer_87;
|
|
VisualElementExtensions_AddManipulator_m3579CA75D8F76245DC3B7C9F5FCB9B769D69E27D(L_116, L_117, NULL);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_118 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_118);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_118, __this, (intptr_t)((void*)TwoPaneSplitView_OnSizeChange_mE9251DA484D4D1D75709BEB0C9CB9324B4D654B6_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F(__this, L_118, 0, CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_03bf:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::OnSizeChange(UnityEngine.UIElements.GeometryChangedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_OnSizeChange_mE9251DA484D4D1D75709BEB0C9CB9324B4D654B6 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TwoPaneSplitView_OnSizeChange_mC6F30AC185819EDC69A1BEE647F085F73179090A(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::OnSizeChange()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_OnSizeChange_mC6F30AC185819EDC69A1BEE647F085F73179090A (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
float V_10 = 0.0f;
|
|
int32_t G_B5_0 = 0;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B12_0 = NULL;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B11_0 = NULL;
|
|
float G_B13_0 = 0.0f;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B13_1 = NULL;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B17_0 = NULL;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B16_0 = NULL;
|
|
float G_B18_0 = 0.0f;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B18_1 = NULL;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B21_0 = NULL;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B20_0 = NULL;
|
|
float G_B22_0 = 0.0f;
|
|
TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* G_B22_1 = NULL;
|
|
{
|
|
bool L_0 = __this->___m_CollapseMode_82;
|
|
V_4 = L_0;
|
|
bool L_1 = V_4;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0169;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(15 /* UnityEngine.UIElements.DisplayStyle UnityEngine.UIElements.IResolvedStyle::get_display() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_2);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(41 /* UnityEngine.UIElements.Visibility UnityEngine.UIElements.IResolvedStyle::get_visibility() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_4);
|
|
G_B5_0 = ((((int32_t)L_5) == ((int32_t)1))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_5 = (bool)G_B5_0;
|
|
bool L_6 = V_5;
|
|
if (!L_6)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0169;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
RuntimeObject* L_7;
|
|
L_7 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_7);
|
|
float L_8;
|
|
L_8 = InterfaceFuncInvoker0< float >::Invoke(43 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_width() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_7);
|
|
V_0 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = __this->___m_FixedPane_77;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10;
|
|
L_10 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_9, NULL);
|
|
NullCheck(L_10);
|
|
float L_11;
|
|
L_11 = InterfaceFuncInvoker0< float >::Invoke(43 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_width() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_10);
|
|
V_1 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = __this->___m_FixedPane_77;
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_13;
|
|
L_13 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_12, NULL);
|
|
NullCheck(L_13);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_14;
|
|
L_14 = InterfaceFuncInvoker0< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(25 /* UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.IResolvedStyle::get_minWidth() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_13);
|
|
V_6 = L_14;
|
|
float L_15;
|
|
L_15 = StyleFloat_get_value_mA16B2A988966FF48ED290BA14F3CD1011608ECC2((&V_6), NULL);
|
|
V_2 = L_15;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_16);
|
|
RuntimeObject* L_17;
|
|
L_17 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_16, NULL);
|
|
NullCheck(L_17);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_18;
|
|
L_18 = InterfaceFuncInvoker0< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(25 /* UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.IResolvedStyle::get_minWidth() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_17);
|
|
V_6 = L_18;
|
|
float L_19;
|
|
L_19 = StyleFloat_get_value_mA16B2A988966FF48ED290BA14F3CD1011608ECC2((&V_6), NULL);
|
|
V_3 = L_19;
|
|
int32_t L_20 = __this->___m_Orientation_84;
|
|
V_7 = (bool)((((int32_t)L_20) == ((int32_t)1))? 1 : 0);
|
|
bool L_21 = V_7;
|
|
if (!L_21)
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_22;
|
|
L_22 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_22);
|
|
float L_23;
|
|
L_23 = InterfaceFuncInvoker0< float >::Invoke(18 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_height() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_22);
|
|
V_0 = L_23;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = __this->___m_FixedPane_77;
|
|
NullCheck(L_24);
|
|
RuntimeObject* L_25;
|
|
L_25 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_24, NULL);
|
|
NullCheck(L_25);
|
|
float L_26;
|
|
L_26 = InterfaceFuncInvoker0< float >::Invoke(18 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_height() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_25);
|
|
V_1 = L_26;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = __this->___m_FixedPane_77;
|
|
NullCheck(L_27);
|
|
RuntimeObject* L_28;
|
|
L_28 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_27, NULL);
|
|
NullCheck(L_28);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_29;
|
|
L_29 = InterfaceFuncInvoker0< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(24 /* UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.IResolvedStyle::get_minHeight() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_28);
|
|
V_6 = L_29;
|
|
float L_30;
|
|
L_30 = StyleFloat_get_value_mA16B2A988966FF48ED290BA14F3CD1011608ECC2((&V_6), NULL);
|
|
V_2 = L_30;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = __this->___m_FlexedPane_78;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_32;
|
|
L_32 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_31, NULL);
|
|
NullCheck(L_32);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_33;
|
|
L_33 = InterfaceFuncInvoker0< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(24 /* UnityEngine.UIElements.StyleFloat UnityEngine.UIElements.IResolvedStyle::get_minHeight() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_32);
|
|
V_6 = L_33;
|
|
float L_34;
|
|
L_34 = StyleFloat_get_value_mA16B2A988966FF48ED290BA14F3CD1011608ECC2((&V_6), NULL);
|
|
V_3 = L_34;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
float L_35 = V_0;
|
|
float L_36 = V_1;
|
|
float L_37 = V_3;
|
|
V_8 = (bool)((((int32_t)((!(((float)L_35) >= ((float)((float)il2cpp_codegen_add(L_36, L_37)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_38 = V_8;
|
|
if (!L_38)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_39 = __this->___m_FixedPaneIndex_85;
|
|
G_B11_0 = __this;
|
|
if (!L_39)
|
|
{
|
|
G_B12_0 = __this;
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
float L_40 = V_0;
|
|
float L_41 = V_1;
|
|
G_B13_0 = ((float)il2cpp_codegen_subtract(L_40, L_41));
|
|
G_B13_1 = G_B11_0;
|
|
goto IL_010e;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
float L_42 = V_1;
|
|
G_B13_0 = L_42;
|
|
G_B13_1 = G_B12_0;
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
NullCheck(G_B13_1);
|
|
TwoPaneSplitView_SetDragLineOffset_m0AA97C723D55B23A1028EDEF36222428876F17B2(G_B13_1, G_B13_0, NULL);
|
|
goto IL_0169;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
float L_43 = V_0;
|
|
float L_44 = V_2;
|
|
float L_45 = V_3;
|
|
V_9 = (bool)((((int32_t)((!(((float)L_43) >= ((float)((float)il2cpp_codegen_add(L_44, L_45)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_46 = V_9;
|
|
if (!L_46)
|
|
{
|
|
goto IL_014c;
|
|
}
|
|
}
|
|
{
|
|
float L_47 = V_0;
|
|
float L_48 = V_3;
|
|
V_10 = ((float)il2cpp_codegen_subtract(L_47, L_48));
|
|
float L_49 = V_10;
|
|
TwoPaneSplitView_SetFixedPaneDimension_mF59B929CBEEF382C047DCBC34178DBEEC05247F7(__this, L_49, NULL);
|
|
int32_t L_50 = __this->___m_FixedPaneIndex_85;
|
|
G_B16_0 = __this;
|
|
if (!L_50)
|
|
{
|
|
G_B17_0 = __this;
|
|
goto IL_0141;
|
|
}
|
|
}
|
|
{
|
|
float L_51 = V_3;
|
|
G_B18_0 = L_51;
|
|
G_B18_1 = G_B16_0;
|
|
goto IL_0143;
|
|
}
|
|
|
|
IL_0141:
|
|
{
|
|
float L_52 = V_10;
|
|
G_B18_0 = L_52;
|
|
G_B18_1 = G_B17_0;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
NullCheck(G_B18_1);
|
|
TwoPaneSplitView_SetDragLineOffset_m0AA97C723D55B23A1028EDEF36222428876F17B2(G_B18_1, G_B18_0, NULL);
|
|
goto IL_0169;
|
|
}
|
|
|
|
IL_014c:
|
|
{
|
|
float L_53 = V_2;
|
|
TwoPaneSplitView_SetFixedPaneDimension_mF59B929CBEEF382C047DCBC34178DBEEC05247F7(__this, L_53, NULL);
|
|
int32_t L_54 = __this->___m_FixedPaneIndex_85;
|
|
G_B20_0 = __this;
|
|
if (!L_54)
|
|
{
|
|
G_B21_0 = __this;
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
float L_55 = V_3;
|
|
G_B22_0 = L_55;
|
|
G_B22_1 = G_B20_0;
|
|
goto IL_0162;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
float L_56 = V_2;
|
|
G_B22_0 = L_56;
|
|
G_B22_1 = G_B21_0;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
NullCheck(G_B22_1);
|
|
TwoPaneSplitView_SetDragLineOffset_m0AA97C723D55B23A1028EDEF36222428876F17B2(G_B22_1, G_B22_0, NULL);
|
|
}
|
|
|
|
IL_0169:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TwoPaneSplitView::get_contentContainer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* TwoPaneSplitView_get_contentContainer_mEF2F8825AD78066CE6B9467B4748A13A1AD8E7C5 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_Content_83;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::OnViewDataReady()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_OnViewDataReady_mED6354BF532E30ECB824EFA540F373B0080A4F01 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
VisualElement_OnViewDataReady_mC163AC6CDC322CCB2941C1DEFC6EF3900C332C79(__this, NULL);
|
|
String_t* L_0;
|
|
L_0 = VisualElement_GetFullHierarchicalViewDataKey_m36E019EF47770CE6BC054BB606CD224517028A8F(__this, NULL);
|
|
V_0 = L_0;
|
|
String_t* L_1 = V_0;
|
|
VisualElement_OverwriteFromViewData_mF7BC9343789BED5307CCE900D7F05A62D6027AB3(__this, __this, L_1, NULL);
|
|
TwoPaneSplitView_PostDisplaySetup_m02D365F56B5A7DEF64BED0407AF48E4685D8B43A(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::SetDragLineOffset(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_SetDragLineOffset_m0AA97C723D55B23A1028EDEF36222428876F17B2 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_offset, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_Orientation_84;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_2, NULL);
|
|
float L_4 = ___0_offset;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_5;
|
|
L_5 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_4, NULL);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(25 /* System.Void UnityEngine.UIElements.IStyle::set_left(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_3, L_5);
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = __this->___m_DragLineAnchor_81;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_6, NULL);
|
|
float L_8 = ___0_offset;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_9;
|
|
L_9 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_8, NULL);
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(42 /* System.Void UnityEngine.UIElements.IStyle::set_top(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_7, L_9);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::SetFixedPaneDimension(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView_SetFixedPaneDimension_mF59B929CBEEF382C047DCBC34178DBEEC05247F7 (TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67* __this, float ___0_dimension, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_Orientation_84;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = __this->___m_FixedPane_77;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_2, NULL);
|
|
float L_4 = ___0_dimension;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_5;
|
|
L_5 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_4, NULL);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(49 /* System.Void UnityEngine.UIElements.IStyle::set_width(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_3, L_5);
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = __this->___m_FixedPane_77;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_6, NULL);
|
|
float L_8 = ___0_dimension;
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_9;
|
|
L_9 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019(L_8, NULL);
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(24 /* System.Void UnityEngine.UIElements.IStyle::set_height(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_7, L_9);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TwoPaneSplitView__cctor_mE0DD83611230564AF12054D644B0EB9C2FA41C39 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1F73081387A76D3714657FCEF270D341EEA9BA6D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral281E4838B647B106CEAA1223C7794A3F392336C8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral356EE8C45878EF171BDB96B2ACC1C967BF056C9A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50C316C7057DB0F1E0EE7D115B5BB30FBFDB297D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EAE817BD607589A65A955CE49998FA0F2192B46);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7951E2FB9C044754287C7C6DF6397451ACC5AC8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF91AEE1E52ADFB5A9BAB4F407686F2F13C022DC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF077DFE0EA0D87CC2B19BBE1BC0979E4DF9EF8BE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_UssClassName_65 = _stringLiteral5EAE817BD607589A65A955CE49998FA0F2192B46;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_UssClassName_65), (void*)_stringLiteral5EAE817BD607589A65A955CE49998FA0F2192B46);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_ContentContainerClassName_66 = _stringLiteralF077DFE0EA0D87CC2B19BBE1BC0979E4DF9EF8BE;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_ContentContainerClassName_66), (void*)_stringLiteralF077DFE0EA0D87CC2B19BBE1BC0979E4DF9EF8BE);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineClassName_67 = _stringLiteral50C316C7057DB0F1E0EE7D115B5BB30FBFDB297D;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineClassName_67), (void*)_stringLiteral50C316C7057DB0F1E0EE7D115B5BB30FBFDB297D);
|
|
String_t* L_0 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineClassName_67;
|
|
String_t* L_1;
|
|
L_1 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_0, _stringLiteral281E4838B647B106CEAA1223C7794A3F392336C8, NULL);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineVerticalClassName_68 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineVerticalClassName_68), (void*)L_1);
|
|
String_t* L_2 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineClassName_67;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_2, _stringLiteral1F73081387A76D3714657FCEF270D341EEA9BA6D, NULL);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineHorizontalClassName_69 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineHorizontalClassName_69), (void*)L_3);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorClassName_70 = _stringLiteralB7951E2FB9C044754287C7C6DF6397451ACC5AC8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorClassName_70), (void*)_stringLiteralB7951E2FB9C044754287C7C6DF6397451ACC5AC8);
|
|
String_t* L_4 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorClassName_70;
|
|
String_t* L_5;
|
|
L_5 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_4, _stringLiteral281E4838B647B106CEAA1223C7794A3F392336C8, NULL);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorVerticalClassName_71 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorVerticalClassName_71), (void*)L_5);
|
|
String_t* L_6 = ((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorClassName_70;
|
|
String_t* L_7;
|
|
L_7 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_6, _stringLiteral1F73081387A76D3714657FCEF270D341EEA9BA6D, NULL);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorHorizontalClassName_72 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HandleDragLineAnchorHorizontalClassName_72), (void*)L_7);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_VerticalClassName_73 = _stringLiteralDF91AEE1E52ADFB5A9BAB4F407686F2F13C022DC;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_VerticalClassName_73), (void*)_stringLiteralDF91AEE1E52ADFB5A9BAB4F407686F2F13C022DC);
|
|
((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HorizontalClassName_74 = _stringLiteral356EE8C45878EF171BDB96B2ACC1C967BF056C9A;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_StaticFields*)il2cpp_codegen_static_fields_for(TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var))->___s_HorizontalClassName_74), (void*)_stringLiteral356EE8C45878EF171BDB96B2ACC1C967BF056C9A);
|
|
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
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_m560E6756E7DC1D33CC3B603C1BA98E3209FBF94F (UxmlFactory_t045B315994A585EA6A21E9B7C1662889F1A5CDB8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_m018A502C0F2472D4020C6F496065D83006F5FDFB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_m018A502C0F2472D4020C6F496065D83006F5FDFB(__this, UxmlFactory_2__ctor_m018A502C0F2472D4020C6F496065D83006F5FDFB_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
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_m6CC1C58CC1BD975C94249F039F669F3DBE9CD896 (UxmlTraits_tD94069F1DEA132ACB4C340B51942037468E26A9D* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
RuntimeObject* L_1 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_2 = ___2_cc;
|
|
UxmlTraits_Init_m5CDDC1216CB5BA22DF16A19E01C37EF26B4AF8FB(__this, L_0, L_1, L_2, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_3 = __this->___m_FixedPaneIndex_12;
|
|
RuntimeObject* L_4 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_5 = ___2_cc;
|
|
NullCheck(L_3);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker2< int32_t, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_3, L_4, L_5);
|
|
V_0 = L_6;
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_7 = __this->___m_FixedPaneInitialDimension_13;
|
|
RuntimeObject* L_8 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_9 = ___2_cc;
|
|
NullCheck(L_7);
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker2< int32_t, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_7, L_8, L_9);
|
|
V_1 = L_10;
|
|
UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* L_11 = __this->___m_Orientation_14;
|
|
RuntimeObject* L_12 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_13 = ___2_cc;
|
|
NullCheck(L_11);
|
|
int32_t L_14;
|
|
L_14 = VirtualFuncInvoker2< int32_t, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.TwoPaneSplitViewOrientation>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_11, L_12, L_13);
|
|
V_2 = L_14;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = ___0_ve;
|
|
int32_t L_16 = V_0;
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_2;
|
|
NullCheck(((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67*)CastclassClass((RuntimeObject*)L_15, TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var)));
|
|
TwoPaneSplitView_Init_mE0E3846607CD76825587E2F2F6D9E1BB58984151(((TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67*)CastclassClass((RuntimeObject*)L_15, TwoPaneSplitView_tB474821CB57A1FF40CA9ADB5360072A151744A67_il2cpp_TypeInfo_var)), L_16, ((float)L_17), L_18, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TwoPaneSplitView/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_m115E4DC7442F9E2607C91C42CC6C17AA9E172A52 (UxmlTraits_tD94069F1DEA132ACB4C340B51942037468E26A9D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedUxmlAttributeDescription_1_set_defaultValue_mD0797674F7E1719CC35FD9766E5D3ED256F19EBB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1__ctor_m69AAD7688907FE7D840A63F5668B0BC8EC4A45C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral091B5F957F874B58A87D935DC88AD891FBF95D2B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral136A31D128A0E235237DEFB9B9E20371C841E254);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB62B97E393533314D3C809D57CB62D3059C0EF3);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_0 = (UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4*)il2cpp_codegen_object_new(UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
UxmlIntAttributeDescription__ctor_mF713BAA8CE638F4B2FB569AB2BC34B986E0E6014(L_0, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_1, _stringLiteral136A31D128A0E235237DEFB9B9E20371C841E254, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline(L_2, 0, TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
__this->___m_FixedPaneIndex_12 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FixedPaneIndex_12), (void*)L_2);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_3 = (UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4*)il2cpp_codegen_object_new(UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
UxmlIntAttributeDescription__ctor_mF713BAA8CE638F4B2FB569AB2BC34B986E0E6014(L_3, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_4 = L_3;
|
|
NullCheck(L_4);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_4, _stringLiteral091B5F957F874B58A87D935DC88AD891FBF95D2B, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline(L_5, ((int32_t)100), TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
__this->___m_FixedPaneInitialDimension_13 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FixedPaneInitialDimension_13), (void*)L_5);
|
|
UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* L_6 = (UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C*)il2cpp_codegen_object_new(UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
UxmlEnumAttributeDescription_1__ctor_m69AAD7688907FE7D840A63F5668B0BC8EC4A45C9(L_6, UxmlEnumAttributeDescription_1__ctor_m69AAD7688907FE7D840A63F5668B0BC8EC4A45C9_RuntimeMethod_var);
|
|
UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* L_7 = L_6;
|
|
NullCheck(L_7);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_7, _stringLiteralCB62B97E393533314D3C809D57CB62D3059C0EF3, NULL);
|
|
UxmlEnumAttributeDescription_1_t89530FF090886EE79B249745B8C64E715172665C* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mD0797674F7E1719CC35FD9766E5D3ED256F19EBB_inline(L_8, 0, TypedUxmlAttributeDescription_1_set_defaultValue_mD0797674F7E1719CC35FD9766E5D3ED256F19EBB_RuntimeMethod_var);
|
|
__this->___m_Orientation_14 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Orientation_14), (void*)L_8);
|
|
UxmlTraits__ctor_m99053329DC8F0D4087968FCA3C60857B853E4346(__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
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::add_onItemsChosen(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_add_onItemsChosen_m5EF76FF94F96078F0B95ECEC7702B12E62FE7C70 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_1 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_2 = NULL;
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_0 = __this->___onItemsChosen_67;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_2 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)Castclass((RuntimeObject*)L_4, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var));
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5** L_5 = (&__this->___onItemsChosen_67);
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_6 = V_2;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_7 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_9 = V_0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_9) == ((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::remove_onItemsChosen(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_remove_onItemsChosen_m1B7908FCEBBEC14A724DB65CA0AA716CBB4BDBA0 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_1 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_2 = NULL;
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_0 = __this->___onItemsChosen_67;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_2 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)Castclass((RuntimeObject*)L_4, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var));
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5** L_5 = (&__this->___onItemsChosen_67);
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_6 = V_2;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_7 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_9 = V_0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_9) == ((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::add_onSelectionChange(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_add_onSelectionChange_mFFA799BCADAA39108F69E1713258C6FCB8CF10D1 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_1 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_2 = NULL;
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_0 = __this->___onSelectionChange_68;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_2 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)Castclass((RuntimeObject*)L_4, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var));
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5** L_5 = (&__this->___onSelectionChange_68);
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_6 = V_2;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_7 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_9 = V_0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_9) == ((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::remove_onSelectionChange(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_remove_onSelectionChange_mEE2BA49B7F41D27D0BCF35268A939F7C34CFF4DC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_1 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* V_2 = NULL;
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_0 = __this->___onSelectionChange_68;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_2 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)Castclass((RuntimeObject*)L_4, Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var));
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5** L_5 = (&__this->___onSelectionChange_68);
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_6 = V_2;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_7 = V_1;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_9 = V_0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_9) == ((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Func`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_getItemId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* BaseVerticalCollectionView_get_getItemId_m51EF1320768EF82E1DEB2F7346E6F3259B098C4D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_0 = __this->___m_GetItemId_72;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_getItemId(System.Func`2<System.Int32,System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_getItemId_mDCE0D8D2F43CD303F8F5DD368C0B70CFCC073704 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_0 = ___0_value;
|
|
__this->___m_GetItemId_72 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GetItemId_72), (void*)L_0);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IList UnityEngine.UIElements.BaseVerticalCollectionView::get_itemsSource()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_itemsSource_mE1E01CC16339B3B28C6E1198A74AB8DE8E31A496 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* G_B2_0 = NULL;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* G_B1_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0;
|
|
L_0 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(G_B2_0, NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
return G_B3_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_itemsSource(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_itemsSource_mD1B669C6202DE74A6DBF3D99488D7E939267BC3B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0;
|
|
L_0 = BaseVerticalCollectionView_GetOrCreateViewController_mBE5552FD15421451E3968416C1FE3E0B264D3145(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
CollectionViewController_set_itemsSource_mE48BCD1FF9005623ECBE88064150515D7BE25918(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::get_sourceIncludesArraySize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_get_sourceIncludesArraySize_mB895FED80E443B65C76894258E4C62D3373D4F7B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::get_makeItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_0 = __this->___m_MakeItem_73;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_makeItem(System.Func`1<UnityEngine.UIElements.VisualElement>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_makeItem_m4EFF623FA38FA7522CA88DF8F2673F4FEA88CBE1 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_0 = ___0_value;
|
|
__this->___m_MakeItem_73 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_MakeItem_73), (void*)L_0);
|
|
BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_bindItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = __this->___m_BindItem_74;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_bindItem(System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_bindItem_m7D68A21C470BC6F26E87C8B012850FCCA0789153 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = ___0_value;
|
|
__this->___m_BindItem_74 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_BindItem_74), (void*)L_0);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_unbindItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_unbindItem_mF1318DEBEC44E601C7847D16DF5EF084C5AEAAB6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = __this->___U3CunbindItemU3Ek__BackingField_75;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_unbindItem(System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_unbindItem_m70B66966E4F15F175715762AF824862980920F71 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = ___0_value;
|
|
__this->___U3CunbindItemU3Ek__BackingField_75 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CunbindItemU3Ek__BackingField_75), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::get_destroyItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* BaseVerticalCollectionView_get_destroyItem_mE32383B57CC96FC04212E03B01B76671C360865B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* L_0 = __this->___U3CdestroyItemU3Ek__BackingField_76;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_destroyItem(System.Action`1<UnityEngine.UIElements.VisualElement>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_destroyItem_m9B9C4AD91C3D4700A5E75F397D22640FB459029D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* L_0 = ___0_value;
|
|
__this->___U3CdestroyItemU3Ek__BackingField_76 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdestroyItemU3Ek__BackingField_76), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVerticalCollectionView::get_contentContainer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVerticalCollectionView_get_contentContainer_mA2096BD696F804FC19B7E174F9F4F9BF76AB3891 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.SelectionType UnityEngine.UIElements.BaseVerticalCollectionView::get_selectionType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_SelectionType_77;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_selectionType(UnityEngine.UIElements.SelectionType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_selectionType_m92B637F0AA1583F7C1732CC936BB4553BAB13C13 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_SelectionType_77 = L_0;
|
|
int32_t L_1 = __this->___m_SelectionType_77;
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0(__this, NULL);
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_3 = __this->___m_SelectionType_77;
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)1))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_5, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_2 = (bool)((((int32_t)L_6) > ((int32_t)1))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_8 = __this->___m_SelectedIndices_91;
|
|
int32_t L_9;
|
|
L_9 = Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7(L_8, Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482(__this, L_9, NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.BaseVerticalCollectionView::get_selectedIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_0, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2 = __this->___m_SelectedIndices_91;
|
|
int32_t L_3;
|
|
L_3 = Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7(L_2, Enumerable_First_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m665FD6DD7E983D1E8938E44617925C04CD612DE7_RuntimeMethod_var);
|
|
G_B3_0 = L_3;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = (-1);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_selectedIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_selectedIndex_mFAC82D45A6517794F8A1E0C15AD488E63A231DDA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_selectedIndices()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_selectedIndices_m225B0611A10353F497E2144373F8335C6809314C (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_91;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.BaseVerticalCollectionView::get_activeItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* G_B2_0 = NULL;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* G_B1_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_0 = __this->___m_VirtualizationController_87;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(15 /* System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.CollectionVirtualizationController::get_activeItems() */, G_B2_0);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
RuntimeObject* L_3 = G_B3_0;
|
|
G_B4_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B5_0 = L_3;
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7* L_4 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___k_EmptyItems_78;
|
|
G_B5_0 = ((RuntimeObject*)(L_4));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return G_B5_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.BaseVerticalCollectionView::get_scrollView()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* BaseVerticalCollectionView_get_scrollView_mB4F44C6276CC57A0D8AD030F3C396650532E83CC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_0 = __this->___m_ScrollView_85;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ListViewDragger UnityEngine.UIElements.BaseVerticalCollectionView::get_dragger()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* BaseVerticalCollectionView_get_dragger_m561975581D087B9C51C90CDFC1D68EE6CECD9446 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_0 = __this->___m_Dragger_95;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::get_viewController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::get_virtualizationController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_0;
|
|
L_0 = BaseVerticalCollectionView_GetOrCreateVirtualizationController_m08F5D26C6F2153BE1B91889B357AA977A58ABB28(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::ResolveItemHeight(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseVerticalCollectionView_ResolveItemHeight_mC3024AC52E0AF9443C9954DA7D0834C94AD727AB (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, float ___0_height, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0;
|
|
L_0 = VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD(__this, NULL);
|
|
V_0 = L_0;
|
|
float L_1 = ___0_height;
|
|
if ((((float)L_1) < ((float)(0.0f))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___0_height;
|
|
G_B3_0 = L_2;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
float L_3;
|
|
L_3 = BaseVerticalCollectionView_get_fixedItemHeight_m7478BCCFEB566DBC1FF0D99BA0357D12FF8BC481_inline(__this, NULL);
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
___0_height = G_B3_0;
|
|
float L_4 = ___0_height;
|
|
float L_5 = V_0;
|
|
float L_6;
|
|
L_6 = bankers_roundf(((float)il2cpp_codegen_multiply(L_4, L_5)));
|
|
float L_7 = V_0;
|
|
V_1 = ((float)(L_6/L_7));
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
float L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_showBorder(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_showBorder_mA9E3C8D24D94CC86E68633440599C0DF46C63F0D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_0 = __this->___m_ScrollView_85;
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___borderUssClassName_100;
|
|
bool L_2 = ___0_value;
|
|
NullCheck(L_0);
|
|
VisualElement_EnableInClassList_m8576D29AB2E6772EBAAA0E0EC2698244C8C87365(L_0, L_1, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::get_reorderable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_get_reorderable_m5F5C463431BC2646D1FC256868F476091B8EACB6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B2_0 = NULL;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B1_0 = NULL;
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 G_B5_0;
|
|
memset((&G_B5_0), 0, sizeof(G_B5_0));
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_0 = __this->___m_Dragger_95;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_2 = V_0;
|
|
G_B5_0 = L_2;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_3;
|
|
L_3 = ListViewDragger_get_dragAndDropController_mA5270D767C750674CEAEBB7A21E586B549B5488F_inline(G_B2_0, NULL);
|
|
RuntimeObject* L_4 = L_3;
|
|
G_B3_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_5 = V_0;
|
|
G_B5_0 = L_5;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
bool L_6;
|
|
L_6 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean UnityEngine.UIElements.IReorderable::get_enableReordering() */, IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var, G_B4_0);
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_7), L_6, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
|
|
G_B5_0 = L_7;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
V_0 = G_B5_0;
|
|
bool L_8;
|
|
L_8 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_0), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_reorderable(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_reorderable_mD9BF6024CE81576E7ABA2D04BE24802153880A27 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B2_0 = NULL;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B1_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_0 = __this->___m_Dragger_95;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = ListViewDragger_get_dragAndDropController_mA5270D767C750674CEAEBB7A21E586B549B5488F_inline(G_B2_0, NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)G_B3_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
bool L_4 = ___0_value;
|
|
V_2 = L_4;
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_InitializeDragAndDropController_mE22E0AE631868C63B55233C8D2D05746E0434B79(__this, NULL);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_6 = __this->___m_Dragger_95;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = ListViewDragger_get_dragAndDropController_mA5270D767C750674CEAEBB7A21E586B549B5488F_inline(L_6, NULL);
|
|
V_0 = L_7;
|
|
RuntimeObject* L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean UnityEngine.UIElements.IReorderable::get_enableReordering() */, IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var, L_9);
|
|
bool L_11 = ___0_value;
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_10) == ((int32_t)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
V_3 = (bool)G_B10_0;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_0;
|
|
bool L_14 = ___0_value;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IReorderable::set_enableReordering(System.Boolean) */, IReorderable_tC3E3CFC733150A60D1647D92D874A2D0A8DAC046_il2cpp_TypeInfo_var, L_13, L_14);
|
|
BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE(__this, NULL);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_horizontalScrollingEnabled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_horizontalScrollingEnabled_mC08B64918907A7347DEF8F1B1A3C59D55664DDEB (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* G_B4_0 = NULL;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* G_B3_0 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* G_B5_1 = NULL;
|
|
{
|
|
bool L_0 = __this->___m_HorizontalScrollingEnabled_79;
|
|
bool L_1 = ___0_value;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = ___0_value;
|
|
__this->___m_HorizontalScrollingEnabled_79 = L_3;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_4 = __this->___m_ScrollView_85;
|
|
bool L_5 = ___0_value;
|
|
G_B3_0 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = 0;
|
|
G_B5_1 = G_B3_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 2;
|
|
G_B5_1 = G_B4_0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
ScrollView_set_mode_mA5C5D8ED5D9E2291182843BE7F80D061FE949816(G_B5_1, G_B5_0, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.AlternatingRowBackground UnityEngine.UIElements.BaseVerticalCollectionView::get_showAlternatingRowBackgrounds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_showAlternatingRowBackgrounds_m47BFEE57E56D46D6C705C7F7DD6C8BA5DBB2B97A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_ShowAlternatingRowBackgrounds_80;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_showAlternatingRowBackgrounds(UnityEngine.UIElements.AlternatingRowBackground)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_showAlternatingRowBackgrounds_m92D6D5331D46614EFD787A843287E665FF326060 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_ShowAlternatingRowBackgrounds_80;
|
|
int32_t L_1 = ___0_value;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_3 = ___0_value;
|
|
__this->___m_ShowAlternatingRowBackgrounds_80 = L_3;
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.CollectionVirtualizationMethod UnityEngine.UIElements.BaseVerticalCollectionView::get_virtualizationMethod()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BaseVerticalCollectionView_get_virtualizationMethod_mB374D38B21D6CE19A96F6B547C5FB3F4A98F35A7 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_VirtualizationMethod_84;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_virtualizationMethod(UnityEngine.UIElements.CollectionVirtualizationMethod)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_virtualizationMethod_m187926DD29014D76AAD0853180C3D0BB0F6CB392 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_VirtualizationMethod_84;
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___0_value;
|
|
__this->___m_VirtualizationMethod_84 = L_1;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3 = ___0_value;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
VirtualActionInvoker0::Invoke(101 /* System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateVirtualizationController() */, __this);
|
|
BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE(__this, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::get_fixedItemHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseVerticalCollectionView_get_fixedItemHeight_m7478BCCFEB566DBC1FF0D99BA0357D12FF8BC481 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_FixedItemHeight_82;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_fixedItemHeight(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_fixedItemHeight_m14CA50DAC1007FB42483201BCBB2FAEBBDC7F5F5 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, float ___0_value, 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;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = 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_001d;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF71917878FB4C2D84A1A27F2A69BCCC69BF691D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEBD7F17B3D530A6E800EB887A20126AE05FB2233)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BaseVerticalCollectionView_set_fixedItemHeight_m14CA50DAC1007FB42483201BCBB2FAEBBDC7F5F5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
__this->___m_ItemHeightIsInline_83 = (bool)1;
|
|
float L_3 = __this->___m_FixedItemHeight_82;
|
|
float L_4 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
float L_5;
|
|
L_5 = fabsf(((float)il2cpp_codegen_subtract(L_3, L_4)));
|
|
V_1 = (bool)((((float)L_5) > ((float)(1.40129846E-45f)))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = ___0_value;
|
|
__this->___m_FixedItemHeight_82 = L_7;
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::get_lastHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BaseVerticalCollectionView_get_lastHeight_mEDABF6845E379DCA0216106F56FAF84B952DA1F2 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_LastHeight_93;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateVirtualizationController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_CreateVirtualizationController_mD825F042CE7C1879452D5B25960FB1E226240B1D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_CreateVirtualizationController_TisReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086_m80BE730714B5941882EFFAE4A1D8F7A05FB32DFB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_CreateVirtualizationController_TisReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086_m80BE730714B5941882EFFAE4A1D8F7A05FB32DFB(__this, BaseVerticalCollectionView_CreateVirtualizationController_TisReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086_m80BE730714B5941882EFFAE4A1D8F7A05FB32DFB_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::GetOrCreateVirtualizationController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* BaseVerticalCollectionView_GetOrCreateVirtualizationController_m08F5D26C6F2153BE1B91889B357AA977A58ABB28 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* V_1 = NULL;
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_0 = __this->___m_VirtualizationController_87;
|
|
V_0 = (bool)((((RuntimeObject*)(CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
VirtualActionInvoker0::Invoke(101 /* System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateVirtualizationController() */, __this);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_2 = __this->___m_VirtualizationController_87;
|
|
V_1 = L_2;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::GetOrCreateViewController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* BaseVerticalCollectionView_GetOrCreateViewController_mBE5552FD15421451E3968416C1FE3E0B264D3145 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* V_1 = NULL;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
V_0 = (bool)((((RuntimeObject*)(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
VirtualActionInvoker0::Invoke(102 /* System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateViewController() */, __this);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_2 = __this->___m_ViewController_86;
|
|
V_1 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::CreateViewController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_CreateViewController_mF512C7B36C3473739AC1C3E22659B95BF8061433 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)il2cpp_codegen_object_new(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
CollectionViewController__ctor_m0C6B9FB403570C94F587D445DDF79E6D196B2F86(L_0, NULL);
|
|
BaseVerticalCollectionView_SetViewController_mF1D50F1DE9A5441DA8D682A85A3247A8E0E40E91(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetViewController(UnityEngine.UIElements.CollectionViewController)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetViewController_mF1D50F1DE9A5441DA8D682A85A3247A8E0E40E91 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* ___0_controller, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
V_0 = (bool)((!(((RuntimeObject*)(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_2 = __this->___m_ViewController_86;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_3 = __this->___m_ItemIndexChangedCallback_97;
|
|
NullCheck(L_2);
|
|
CollectionViewController_remove_itemIndexChanged_m04DC18BF142F24C0B543B472D94B53FAF17C8054(L_2, L_3, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_4 = __this->___m_ViewController_86;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = __this->___m_ItemsSourceChangedCallback_98;
|
|
NullCheck(L_4);
|
|
CollectionViewController_remove_itemsSourceChanged_mD6136A1F18E2CD8320675B0A5675CEF615F52331(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_6 = ___0_controller;
|
|
__this->___m_ViewController_86 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ViewController_86), (void*)L_6);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_7 = __this->___m_ViewController_86;
|
|
V_1 = (bool)((!(((RuntimeObject*)(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_9 = __this->___m_ViewController_86;
|
|
NullCheck(L_9);
|
|
CollectionViewController_SetView_m46D18786C18F4F40DE62AFCDB120671E15051DA1(L_9, __this, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_10 = __this->___m_ViewController_86;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_11 = __this->___m_ItemIndexChangedCallback_97;
|
|
NullCheck(L_10);
|
|
CollectionViewController_add_itemIndexChanged_mC5296D3EC98FD946CB88929C948DE88B26681724(L_10, L_11, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_12 = __this->___m_ViewController_86;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_13 = __this->___m_ItemsSourceChangedCallback_98;
|
|
NullCheck(L_12);
|
|
CollectionViewController_add_itemsSourceChanged_mBA26B718C2D89D0CC5EB33B2D3FC11EF920B7123(L_12, L_13, NULL);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ListViewDragger UnityEngine.UIElements.BaseVerticalCollectionView::CreateDragger()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* BaseVerticalCollectionView_CreateDragger_m98E9608A297D092931E90F15AA03A3F3D5EAC6D6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* V_0 = NULL;
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_0 = (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD*)il2cpp_codegen_object_new(ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ListViewDragger__ctor_m012FA44B1E465E3691B5C6150CAACD9C19419DF2(L_0, __this, NULL);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::InitializeDragAndDropController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_InitializeDragAndDropController_mE22E0AE631868C63B55233C8D2D05746E0434B79 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_0 = __this->___m_Dragger_95;
|
|
V_0 = (bool)((!(((RuntimeObject*)(ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_2 = __this->___m_Dragger_95;
|
|
NullCheck(L_2);
|
|
DragEventsProcessor_UnregisterCallbacksFromTarget_m4970926A61A828B7066C690841ED99172848569B(L_2, (bool)1, NULL);
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_3 = __this->___m_Dragger_95;
|
|
NullCheck(L_3);
|
|
ListViewDragger_set_dragAndDropController_m8E8172E3015EE8DAD69597B8FADC95BE5D271943_inline(L_3, (RuntimeObject*)NULL, NULL);
|
|
__this->___m_Dragger_95 = (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Dragger_95), (void*)(ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD*)NULL);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_4;
|
|
L_4 = VirtualFuncInvoker0< ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* >::Invoke(103 /* UnityEngine.UIElements.ListViewDragger UnityEngine.UIElements.BaseVerticalCollectionView::CreateDragger() */, __this);
|
|
__this->___m_Dragger_95 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Dragger_95), (void*)L_4);
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_5 = __this->___m_Dragger_95;
|
|
RuntimeObject* L_6;
|
|
L_6 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(104 /* UnityEngine.UIElements.ICollectionDragAndDropController UnityEngine.UIElements.BaseVerticalCollectionView::CreateDragAndDropController() */, __this);
|
|
NullCheck(L_5);
|
|
ListViewDragger_set_dragAndDropController_m8E8172E3015EE8DAD69597B8FADC95BE5D271943_inline(L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView__ctor_m68366A1336ADCD7DD94DC66206E82634C39F92DB (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnAttachToPanel_m57F8653A41F712277C502C83435F5B193041D055_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnCustomStyleResolved_m6BD78676C47925976E39B5AF0A7EEB5A8DE2D035_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnDetachFromPanel_m97D27B2D07F3F1D7D3E27AE23B69C16F4B5F6A26_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnItemIndexChanged_mD4FE2A6624A75359E00ED8BE8DD1817A8C3B5AD0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnItemsSourceChanged_mD1E9C9856DF2E37DF2A3936B92896C0EF3732A59_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnSizeChanged_m940C5F46FB9141AEA55B894893D80FC37560A88A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_U3C_ctorU3Eb__143_0_mAE52CEDE3272076A64F7F7C8C0343BF645511DBE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD31E93C25781F618E0FCBEEC839C108E350E227E);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
__this->___m_ShowAlternatingRowBackgrounds_80 = 0;
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_DefaultItemHeight_81;
|
|
__this->___m_FixedItemHeight_82 = ((float)L_0);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_1, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
__this->___m_SelectedIds_90 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedIds_90), (void*)L_1);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_2, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
__this->___m_SelectedIndices_91 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedIndices_91), (void*)L_2);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_3 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690(L_3, List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
|
|
__this->___m_SelectedItems_92 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedItems_92), (void*)L_3);
|
|
BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454(__this, NULL);
|
|
String_t* L_4 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(__this, L_4, NULL);
|
|
BaseVerticalCollectionView_set_selectionType_m92B637F0AA1583F7C1732CC936BB4553BAB13C13(__this, 1, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
__this->___m_ScrollOffset_89 = L_5;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_6 = (ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9*)il2cpp_codegen_object_new(ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
ScrollView__ctor_m24F4FFBEBBA20900EBDFD2F1481ACB133D896280(L_6, NULL);
|
|
__this->___m_ScrollView_85 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ScrollView_85), (void*)L_6);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_7 = __this->___m_ScrollView_85;
|
|
NullCheck(L_7);
|
|
VisualElement_set_viewDataKey_m6318C0A701350678B0DBF34939C3BC392134B092(L_7, _stringLiteralD31E93C25781F618E0FCBEEC839C108E350E227E, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_8 = __this->___m_ScrollView_85;
|
|
String_t* L_9 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___listScrollViewUssClassName_106;
|
|
NullCheck(L_8);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_8, L_9, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_10 = __this->___m_ScrollView_85;
|
|
NullCheck(L_10);
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* L_11;
|
|
L_11 = ScrollView_get_verticalScroller_mDCBC1E09B2754C31BF917818CB07E5F36EC0D13A_inline(L_10, NULL);
|
|
Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* L_12 = (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A*)il2cpp_codegen_object_new(Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
Action_1__ctor_m770CD2F8BB65F2EDA5128CA2F96D71C35B23E859(L_12, __this, (intptr_t)((void*)BaseVerticalCollectionView_U3C_ctorU3Eb__143_0_mAE52CEDE3272076A64F7F7C8C0343BF645511DBE_RuntimeMethod_var), NULL);
|
|
NullCheck(L_11);
|
|
Scroller_add_valueChanged_mEBE3F410DB7D57597D8A7748805CB4CE4371D42B(L_11, L_12, NULL);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_13 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_13, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnSizeChanged_m940C5F46FB9141AEA55B894893D80FC37560A88A_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F(__this, L_13, 0, CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F* L_14 = (EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F*)il2cpp_codegen_object_new(EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
EventCallback_1__ctor_mA03324C646FE93909402ABA6C660D14D22ACE4F8(L_14, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnCustomStyleResolved_m6BD78676C47925976E39B5AF0A7EEB5A8DE2D035_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401(__this, L_14, 0, CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_15 = __this->___m_ScrollView_85;
|
|
NullCheck(L_15);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_15);
|
|
EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* L_17 = (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*)il2cpp_codegen_object_new(EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_m929B5D5292DB931820A52428141FECB39016A6B7(L_17, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnAttachToPanel_m57F8653A41F712277C502C83435F5B193041D055_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF(L_16, L_17, 0, CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_18 = __this->___m_ScrollView_85;
|
|
NullCheck(L_18);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19;
|
|
L_19 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_18);
|
|
EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* L_20 = (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*)il2cpp_codegen_object_new(EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_20);
|
|
EventCallback_1__ctor_m0407B736C264F06C81E5CBB70EF40FBB975AC634(L_20, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnDetachFromPanel_m97D27B2D07F3F1D7D3E27AE23B69C16F4B5F6A26_RuntimeMethod_var), NULL);
|
|
NullCheck(L_19);
|
|
CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C(L_19, L_20, 0, CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_21;
|
|
L_21 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(__this, NULL);
|
|
V_0 = L_21;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_22 = __this->___m_ScrollView_85;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_0), L_22, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_23 = __this->___m_ScrollView_85;
|
|
NullCheck(L_23);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24;
|
|
L_24 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_23);
|
|
NullCheck(L_24);
|
|
Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline(L_24, (bool)1, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_25 = __this->___m_ScrollView_85;
|
|
NullCheck(L_25);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26;
|
|
L_26 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_25);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = L_26;
|
|
NullCheck(L_27);
|
|
int32_t L_28;
|
|
L_28 = VisualElement_get_usageHints_mA29803CA9342027B81EBC54C1CB6B92D635153BF(L_27, NULL);
|
|
NullCheck(L_27);
|
|
VisualElement_set_usageHints_mD317223075C8C708C1DB66CF90E81C5F9DE4C5B0(L_27, ((int32_t)((int32_t)L_28&((int32_t)-3))), NULL);
|
|
Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline(__this, (bool)1, NULL);
|
|
VisualElement_set_isCompositeRoot_m9D76CE169E211EBD63CFA23C85271BB3BA971D65(__this, (bool)1, NULL);
|
|
Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F(__this, (bool)1, NULL);
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_29 = (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)il2cpp_codegen_object_new(Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
Action_2__ctor_m83CEE170A5B9427B596A04F9F50676B044223927(L_29, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnItemIndexChanged_mD4FE2A6624A75359E00ED8BE8DD1817A8C3B5AD0_RuntimeMethod_var), NULL);
|
|
__this->___m_ItemIndexChangedCallback_97 = L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemIndexChangedCallback_97), (void*)L_29);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_30 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
NullCheck(L_30);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_30, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnItemsSourceChanged_mD1E9C9856DF2E37DF2A3936B92896C0EF3732A59_RuntimeMethod_var), NULL);
|
|
__this->___m_ItemsSourceChangedCallback_98 = L_30;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemsSourceChangedCallback_98), (void*)L_30);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::HasValidDataAndBindings()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_itemsSource_mE1E01CC16339B3B28C6E1198A74AB8DE8E31A496(__this, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline(__this, NULL);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_3;
|
|
L_3 = BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline(__this, NULL);
|
|
G_B4_0 = ((((int32_t)((!(((RuntimeObject*)(Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)((!(((RuntimeObject*)(Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)))? 1 : 0);
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnItemIndexChanged(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnItemIndexChanged_mD4FE2A6624A75359E00ED8BE8DD1817A8C3B5AD0 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_srcIndex, int32_t ___1_dstIndex, 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*)&BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInternalListViewBinding_t0BC88F906ADE3181091F011DA0AD868C3EF89D1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* G_B2_0 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* G_B1_0 = NULL;
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_0 = __this->___itemIndexChanged_70;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
int32_t L_2 = ___0_srcIndex;
|
|
int32_t L_3 = ___1_dstIndex;
|
|
NullCheck(G_B2_0);
|
|
Action_2_Invoke_m728A2437F181FBC56F4D617249B47F513AC9FC43_inline(G_B2_0, L_2, L_3, NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = BindableElement_get_binding_m6175B80F3A495FAE7155D19DB30D155B583B9302_inline(__this, NULL);
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_4, IInternalListViewBinding_t0BC88F906ADE3181091F011DA0AD868C3EF89D1D_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76(__this, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_7, __this, (intptr_t)((void*)BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6_RuntimeMethod_var), NULL);
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_8;
|
|
L_8 = InterfaceFuncInvoker1< RuntimeObject*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* >::Invoke(1 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduler::Execute(System.Action) */, IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var, L_6, L_7);
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker1< int64_t >::Invoke(2 /* System.Void UnityEngine.UIElements.IVisualElementScheduledItem::ExecuteLater(System.Int64) */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, L_8, ((int64_t)((int32_t)100)));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnItemsSourceChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnItemsSourceChanged_mD1E9C9856DF2E37DF2A3936B92896C0EF3732A59 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInternalListViewBinding_t0BC88F906ADE3181091F011DA0AD868C3EF89D1D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceChanged_71;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = BindableElement_get_binding_m6175B80F3A495FAE7155D19DB30D155B583B9302_inline(__this, NULL);
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IInternalListViewBinding_t0BC88F906ADE3181091F011DA0AD868C3EF89D1D_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RefreshItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
V_0 = (bool)((((RuntimeObject*)(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
BaseVerticalCollectionView_RefreshSelection_m38E94A768745936EB551A2D896ED8D92080AB244(__this, NULL);
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< bool >::Invoke(6 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::Refresh(System.Boolean) */, L_2, (bool)0);
|
|
VirtualActionInvoker0::Invoke(105 /* System.Void UnityEngine.UIElements.BaseVerticalCollectionView::PostRefresh() */, __this);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::Rebuild()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
V_0 = (bool)((((RuntimeObject*)(CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
BaseVerticalCollectionView_RefreshSelection_m38E94A768745936EB551A2D896ED8D92080AB244(__this, NULL);
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< bool >::Invoke(6 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::Refresh(System.Boolean) */, L_2, (bool)1);
|
|
VirtualActionInvoker0::Invoke(105 /* System.Void UnityEngine.UIElements.BaseVerticalCollectionView::PostRefresh() */, __this);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RefreshSelection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RefreshSelection_m38E94A768745936EB551A2D896ED8D92080AB244 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* G_B2_0 = NULL;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* G_B1_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_0);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_0, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_1 = __this->___m_SelectedItems_92;
|
|
NullCheck(L_1);
|
|
List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_inline(L_1, List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_RuntimeMethod_var);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_3 = L_2;
|
|
G_B1_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_3;
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_4;
|
|
L_4 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(G_B2_0, NULL);
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)G_B3_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = __this->___m_SelectedIds_90;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_6, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)L_7) > ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_9;
|
|
L_9 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10;
|
|
L_10 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_9, NULL);
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_10);
|
|
V_2 = L_11;
|
|
V_3 = 0;
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_12 = __this->___m_SelectedIds_90;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_13;
|
|
L_13 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_14 = V_3;
|
|
NullCheck(L_13);
|
|
int32_t L_15;
|
|
L_15 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, L_13, L_14);
|
|
NullCheck(L_12);
|
|
bool L_16;
|
|
L_16 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_12, L_15, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_4 = (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_18 = __this->___m_SelectedIndices_91;
|
|
int32_t L_19 = V_3;
|
|
NullCheck(L_18);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_18, L_19, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_20 = __this->___m_SelectedItems_92;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_21;
|
|
L_21 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_22 = V_3;
|
|
NullCheck(L_21);
|
|
RuntimeObject* L_23;
|
|
L_23 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(6 /* System.Object UnityEngine.UIElements.CollectionViewController::GetItemForIndex(System.Int32) */, L_21, L_22);
|
|
NullCheck(L_20);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_20, L_23, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
int32_t L_24 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
int32_t L_25 = V_3;
|
|
int32_t L_26 = V_2;
|
|
V_5 = (bool)((((int32_t)L_25) < ((int32_t)L_26))? 1 : 0);
|
|
bool L_27 = V_5;
|
|
if (L_27)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::PostRefresh()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_PostRefresh_m5ACF8394158F017787592DCE461C557DF7821222 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_2 = __this->___m_ScrollView_85;
|
|
NullCheck(L_2);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_3;
|
|
L_3 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_2, NULL);
|
|
V_1 = L_3;
|
|
float L_4;
|
|
L_4 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_1), NULL);
|
|
__this->___m_LastHeight_93 = L_4;
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_5 = __this->___m_ScrollView_85;
|
|
NullCheck(L_5);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_6;
|
|
L_6 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_5, NULL);
|
|
V_1 = L_6;
|
|
float L_7;
|
|
L_7 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_1), NULL);
|
|
bool L_8;
|
|
L_8 = Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline(L_7, NULL);
|
|
V_2 = L_8;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_10 = __this->___m_ScrollView_85;
|
|
NullCheck(L_10);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_11;
|
|
L_11 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_10, NULL);
|
|
V_1 = L_11;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
|
|
L_12 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267((&V_1), NULL);
|
|
BaseVerticalCollectionView_Resize_m37EBBDA7D272B185B38F6B6DBA54527A8A52420A(__this, L_12, (-1), NULL);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ScrollToItem(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ScrollToItem_mA201CA77442DB59FDBAD1AEE7F61FFFA626A8716 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::ScrollToItem(System.Int32) */, L_2, L_3);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnScroll(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnScroll_mECB206AEDD2D6BF4FA2E57283BABF6E2C62C48D7 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_offset, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_2;
|
|
L_2 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___0_offset;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(9 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::OnScroll(UnityEngine.Vector2) */, L_2, L_3);
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::Resize(UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_Resize_m37EBBDA7D272B185B38F6B6DBA54527A8A52420A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_size, int32_t ___1_layoutPass, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_0;
|
|
L_0 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___0_size;
|
|
int32_t L_2 = ___1_layoutPass;
|
|
NullCheck(L_0);
|
|
VirtualActionInvoker2< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(8 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::Resize(UnityEngine.Vector2,System.Int32) */, L_0, L_1, L_2);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___0_size;
|
|
float L_4 = L_3.___y_1;
|
|
__this->___m_LastHeight_93 = L_4;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_5;
|
|
L_5 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker0::Invoke(14 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::UpdateBackground() */, L_5);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnAttachToPanel(UnityEngine.UIElements.AttachToPanelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnAttachToPanel_m57F8653A41F712277C502C83435F5B193041D055 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_Apply_m5CB486171885004B1AFCE5A64A6F7EA85359C3AA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_mE83DFDC25FA4E7E3A266F03E681EA0012BF8F2B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelChangedEventBase_1_get_destinationPanel_m8AE1564C5D0CADA5428BFC43C5111C6227ED65C0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* V_1 = NULL;
|
|
{
|
|
AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = PanelChangedEventBase_1_get_destinationPanel_m8AE1564C5D0CADA5428BFC43C5111C6227ED65C0_inline(L_0, PanelChangedEventBase_1_get_destinationPanel_m8AE1564C5D0CADA5428BFC43C5111C6227ED65C0_RuntimeMethod_var);
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_3 = __this->___m_ScrollView_85;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_3);
|
|
Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A* L_5 = (Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A*)il2cpp_codegen_object_new(Action_2_t4FD84D64C1341169AC2F73750A356411BCEAF88A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Action_2__ctor_m56478DC9F2C2C7B89B665FC269F757E9891ADA72(L_5, __this, (intptr_t)((void*)BaseVerticalCollectionView_Apply_m5CB486171885004B1AFCE5A64A6F7EA85359C3AA_RuntimeMethod_var), NULL);
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* L_6 = (KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3*)il2cpp_codegen_object_new(KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
KeyboardNavigationManipulator__ctor_m7098F151C16E426B7E4272AB0D5ECDB0B45BA7D1(L_6, L_5, NULL);
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* L_7 = L_6;
|
|
V_1 = L_7;
|
|
__this->___m_NavigationManipulator_88 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_NavigationManipulator_88), (void*)L_7);
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* L_8 = V_1;
|
|
VisualElementExtensions_AddManipulator_m3579CA75D8F76245DC3B7C9F5FCB9B769D69E27D(L_4, L_8, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_9 = __this->___m_ScrollView_85;
|
|
NullCheck(L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_9);
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* L_11 = (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*)il2cpp_codegen_object_new(EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596(L_11, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E_RuntimeMethod_var), NULL);
|
|
NullCheck(L_10);
|
|
CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B(L_10, L_11, 0, CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mA3E722BB63A92FD6550289D5155483E408E4795B_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_12 = __this->___m_ScrollView_85;
|
|
NullCheck(L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_12);
|
|
EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* L_14 = (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*)il2cpp_codegen_object_new(EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398(L_14, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB_RuntimeMethod_var), NULL);
|
|
NullCheck(L_13);
|
|
CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820(L_13, L_14, 0, CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_mB50EABDE414D7C266411468DE2497738C902B820_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_15 = __this->___m_ScrollView_85;
|
|
NullCheck(L_15);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_15);
|
|
EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* L_17 = (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*)il2cpp_codegen_object_new(EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C(L_17, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_mE83DFDC25FA4E7E3A266F03E681EA0012BF8F2B4(L_16, L_17, 0, CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_mE83DFDC25FA4E7E3A266F03E681EA0012BF8F2B4_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_18 = __this->___m_ScrollView_85;
|
|
NullCheck(L_18);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19;
|
|
L_19 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_18);
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* L_20 = (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*)il2cpp_codegen_object_new(EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
NullCheck(L_20);
|
|
EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5(L_20, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA_RuntimeMethod_var), NULL);
|
|
NullCheck(L_19);
|
|
CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866(L_19, L_20, 0, CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m3CB1C8964D34063EC97466FD36BAF24692213866_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnDetachFromPanel(UnityEngine.UIElements.DetachFromPanelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnDetachFromPanel_m97D27B2D07F3F1D7D3E27AE23B69C16F4B5F6A26 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelChangedEventBase_1_get_originPanel_mB78D4DFA7608CBBC25903E7944DF9CB36D57A3A3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = PanelChangedEventBase_1_get_originPanel_mB78D4DFA7608CBBC25903E7944DF9CB36D57A3A3_inline(L_0, PanelChangedEventBase_1_get_originPanel_mB78D4DFA7608CBBC25903E7944DF9CB36D57A3A3_RuntimeMethod_var);
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_3 = __this->___m_ScrollView_85;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_3);
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* L_5 = __this->___m_NavigationManipulator_88;
|
|
VisualElementExtensions_RemoveManipulator_m7FF368767CDA311BA47F56729AA68B173F1BED35(L_4, L_5, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_6 = __this->___m_ScrollView_85;
|
|
NullCheck(L_6);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_6);
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* L_8 = (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*)il2cpp_codegen_object_new(EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596(L_8, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E_RuntimeMethod_var), NULL);
|
|
NullCheck(L_7);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1(L_7, L_8, 0, CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_9 = __this->___m_ScrollView_85;
|
|
NullCheck(L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_9);
|
|
EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* L_11 = (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*)il2cpp_codegen_object_new(EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398(L_11, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB_RuntimeMethod_var), NULL);
|
|
NullCheck(L_10);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509(L_10, L_11, 0, CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_12 = __this->___m_ScrollView_85;
|
|
NullCheck(L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_12);
|
|
EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* L_14 = (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*)il2cpp_codegen_object_new(EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C(L_14, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7_RuntimeMethod_var), NULL);
|
|
NullCheck(L_13);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18(L_13, L_14, 0, CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_15 = __this->___m_ScrollView_85;
|
|
NullCheck(L_15);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_15);
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* L_17 = (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*)il2cpp_codegen_object_new(EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5(L_17, __this, (intptr_t)((void*)BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A(L_16, L_17, 0, CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::Apply(UnityEngine.UIElements.KeyboardNavigationOperation,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_Apply_m0F0D53D497B3A1A6A36B67154D3EF0EDD20933DA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_op, bool ___1_shiftKey, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass164_0_tC8D9A08D511DD33A5B1192813EF9635A87268747 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
int32_t V_10 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B11_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B10_0 = NULL;
|
|
int32_t G_B25_0 = 0;
|
|
int32_t G_B31_0 = 0;
|
|
{
|
|
(&V_0)->___U3CU3E4__this_0 = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___U3CU3E4__this_0), (void*)__this);
|
|
bool L_0 = ___1_shiftKey;
|
|
(&V_0)->___shiftKey_1 = L_0;
|
|
int32_t L_1;
|
|
L_1 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0025;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_4 = ___0_op;
|
|
V_4 = L_4;
|
|
int32_t L_5 = V_4;
|
|
V_3 = L_5;
|
|
int32_t L_6 = V_3;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01bb;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_012d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0216;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
BaseVerticalCollectionView_SelectAll_mD43E7E6E6C13B1BE444A67210114CB5B4D52715B(__this, NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0(__this, NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_7 = __this->___onItemsChosen_67;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_8 = L_7;
|
|
G_B10_0 = L_8;
|
|
if (L_8)
|
|
{
|
|
G_B11_0 = L_8;
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_9 = __this->___m_SelectedItems_92;
|
|
NullCheck(G_B11_0);
|
|
Action_1_Invoke_m0D54E898904F46A8FA1CF6B984B5C62DA52AD771_inline(G_B11_0, L_9, NULL);
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
int32_t L_10;
|
|
L_10 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(__this, NULL);
|
|
BaseVerticalCollectionView_ScrollToItem_mA201CA77442DB59FDBAD1AEE7F61FFFA626A8716(__this, L_10, NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
int32_t L_11;
|
|
L_11 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(__this, NULL);
|
|
V_5 = (bool)((((int32_t)L_11) > ((int32_t)0))? 1 : 0);
|
|
bool L_12 = V_5;
|
|
if (!L_12)
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13;
|
|
L_13 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(__this, NULL);
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, ((int32_t)il2cpp_codegen_subtract(L_13, 1)), (&V_0), NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
goto IL_0216;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
int32_t L_14;
|
|
L_14 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(__this, NULL);
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_15 = __this->___m_ViewController_86;
|
|
NullCheck(L_15);
|
|
RuntimeObject* L_16;
|
|
L_16 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_15, NULL);
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_16);
|
|
V_6 = (bool)((((int32_t)((int32_t)il2cpp_codegen_add(L_14, 1))) < ((int32_t)L_17))? 1 : 0);
|
|
bool L_18 = V_6;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19;
|
|
L_19 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(__this, NULL);
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, ((int32_t)il2cpp_codegen_add(L_19, 1)), (&V_0), NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
goto IL_0216;
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, 0, (&V_0), NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_20 = __this->___m_ViewController_86;
|
|
NullCheck(L_20);
|
|
RuntimeObject* L_21;
|
|
L_21 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_20, NULL);
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_21);
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, ((int32_t)il2cpp_codegen_subtract(L_22, 1)), (&V_0), NULL);
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_23 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_23, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_7 = (bool)((((int32_t)L_24) > ((int32_t)0))? 1 : 0);
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_01b7;
|
|
}
|
|
}
|
|
{
|
|
bool L_26 = __this->___m_IsRangeSelectionDirectionUp_94;
|
|
if (L_26)
|
|
{
|
|
goto IL_0179;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_27 = __this->___m_SelectedIndices_91;
|
|
int32_t L_28;
|
|
L_28 = Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704(L_27, NULL);
|
|
G_B25_0 = L_28;
|
|
goto IL_0184;
|
|
}
|
|
|
|
IL_0179:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_29 = __this->___m_SelectedIndices_91;
|
|
int32_t L_30;
|
|
L_30 = Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443(L_29, NULL);
|
|
G_B25_0 = L_30;
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
V_8 = G_B25_0;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_31;
|
|
L_31 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_32;
|
|
L_32 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_31, NULL);
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_32);
|
|
int32_t L_34 = V_8;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_35;
|
|
L_35 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
NullCheck(L_35);
|
|
int32_t L_36;
|
|
L_36 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionVirtualizationController::get_visibleItemCount() */, L_35);
|
|
int32_t L_37;
|
|
L_37 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(((int32_t)il2cpp_codegen_subtract(L_33, 1)), ((int32_t)il2cpp_codegen_add(L_34, ((int32_t)il2cpp_codegen_subtract(L_36, 1)))), NULL);
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, L_37, (&V_0), NULL);
|
|
}
|
|
|
|
IL_01b7:
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_38 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_38, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_9 = (bool)((((int32_t)L_39) > ((int32_t)0))? 1 : 0);
|
|
bool L_40 = V_9;
|
|
if (!L_40)
|
|
{
|
|
goto IL_0212;
|
|
}
|
|
}
|
|
{
|
|
bool L_41 = __this->___m_IsRangeSelectionDirectionUp_94;
|
|
if (L_41)
|
|
{
|
|
goto IL_01e5;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_42 = __this->___m_SelectedIndices_91;
|
|
int32_t L_43;
|
|
L_43 = Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704(L_42, NULL);
|
|
G_B31_0 = L_43;
|
|
goto IL_01f0;
|
|
}
|
|
|
|
IL_01e5:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_44 = __this->___m_SelectedIndices_91;
|
|
int32_t L_45;
|
|
L_45 = Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443(L_44, NULL);
|
|
G_B31_0 = L_45;
|
|
}
|
|
|
|
IL_01f0:
|
|
{
|
|
V_10 = G_B31_0;
|
|
int32_t L_46 = V_10;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_47;
|
|
L_47 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
NullCheck(L_47);
|
|
int32_t L_48;
|
|
L_48 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionVirtualizationController::get_visibleItemCount() */, L_47);
|
|
int32_t L_49;
|
|
L_49 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(0, ((int32_t)il2cpp_codegen_subtract(L_46, ((int32_t)il2cpp_codegen_subtract(L_48, 1)))), NULL);
|
|
BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372(__this, L_49, (&V_0), NULL);
|
|
}
|
|
|
|
IL_0212:
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0216:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_021a:
|
|
{
|
|
bool L_50 = V_2;
|
|
return L_50;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::Apply(UnityEngine.UIElements.KeyboardNavigationOperation,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_Apply_m5CB486171885004B1AFCE5A64A6F7EA85359C3AA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_op, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_sourceEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_shiftKey_m6F17812A43DB9076880B0ACA64DD5675FA30E418_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* G_B2_0 = NULL;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___1_sourceEvent;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_1 = ((KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C*)IsInstClass((RuntimeObject*)L_0, KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
bool L_2;
|
|
L_2 = KeyboardEventBase_1_get_shiftKey_m6F17812A43DB9076880B0ACA64DD5675FA30E418(G_B2_0, KeyboardEventBase_1_get_shiftKey_m6F17812A43DB9076880B0ACA64DD5675FA30E418_RuntimeMethod_var);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
int32_t L_3 = ___0_op;
|
|
bool L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = BaseVerticalCollectionView_Apply_m0F0D53D497B3A1A6A36B67154D3EF0EDD20933DA(__this, L_3, L_4, NULL);
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___1_sourceEvent;
|
|
NullCheck(L_7);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_7, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___1_sourceEvent;
|
|
NullCheck(L_8);
|
|
EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296(L_8, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnPointerMove(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnPointerMove_mD952477FA90503D123A4D7ABEFC857A4B8A1181E (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_button_m2C8D3EC8071AFDA85E4B71093A129E0E0A7FD25D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pressedButtons_m5A50ECC9E90E177443813450F81D5F283C48BD4A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = PointerEventBase_1_get_button_m2C8D3EC8071AFDA85E4B71093A129E0E0A7FD25D_inline(L_0, PointerEventBase_1_get_button_m2C8D3EC8071AFDA85E4B71093A129E0E0A7FD25D_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = PointerEventBase_1_get_pressedButtons_m5A50ECC9E90E177443813450F81D5F283C48BD4A_inline(L_3, PointerEventBase_1_get_pressedButtons_m5A50ECC9E90E177443813450F81D5F283C48BD4A_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)((int32_t)(L_4&1))) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_6 = ___0_evt;
|
|
BaseVerticalCollectionView_ProcessPointerUp_m40882665BD89D99515ADC8BD6CD763CFAAE8AA2A(__this, L_6, NULL);
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_7 = ___0_evt;
|
|
BaseVerticalCollectionView_ProcessPointerDown_m9A422F962E4EC91264B0897A93E3DEEAC09AE251(__this, L_7, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnPointerDown(UnityEngine.UIElements.PointerDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnPointerDown_m5D93CAB5EA0C6A689E2DAEC3CC51B91DA982C7FB (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerType_m1724EBAD6D0313ABE5739C89FC27EBFAF86D1926_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = PointerEventBase_1_get_pointerType_m1724EBAD6D0313ABE5739C89FC27EBFAF86D1926_inline(L_0, PointerEventBase_1_get_pointerType_m1724EBAD6D0313ABE5739C89FC27EBFAF86D1926_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_2 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0;
|
|
bool L_3;
|
|
L_3 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_5 = ___0_evt;
|
|
BaseVerticalCollectionView_ProcessPointerDown_m9A422F962E4EC91264B0897A93E3DEEAC09AE251(__this, L_5, NULL);
|
|
RuntimeObject* L_6;
|
|
L_6 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_7, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_6, L_8, NULL);
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
RuntimeObject* L_9;
|
|
L_9 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_10, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_9, L_11, NULL);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnPointerCancel(UnityEngine.UIElements.PointerCancelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnPointerCancel_mC3C9DDB12C7EC1141235ED55B2A1E60E78E147D7 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_isPrimary_mE2A52BF852EE9E4E8D7C83599B93CE9E7A2664E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = PointerEventBase_1_get_isPrimary_mE2A52BF852EE9E4E8D7C83599B93CE9E7A2664E2_inline(L_2, PointerEventBase_1_get_isPrimary_mE2A52BF852EE9E4E8D7C83599B93CE9E7A2664E2_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0(__this, NULL);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnPointerUp(UnityEngine.UIElements.PointerUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnPointerUp_m1E19E869421960F75C4CC0E32CD56FB88CC3A6FA (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_inline(L_0, PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_2 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0;
|
|
bool L_3;
|
|
L_3 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_5 = ___0_evt;
|
|
BaseVerticalCollectionView_ProcessPointerUp_m40882665BD89D99515ADC8BD6CD763CFAAE8AA2A(__this, L_5, NULL);
|
|
RuntimeObject* L_6;
|
|
L_6 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_7, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_6, L_8, NULL);
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
RuntimeObject* L_9;
|
|
L_9 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_10, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_9, L_11, NULL);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessPointerDown(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessPointerDown_m9A422F962E4EC91264B0897A93E3DEEAC09AE251 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_isPrimary() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_2);
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
RuntimeObject* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_5);
|
|
V_2 = (bool)((!(((uint32_t)L_6) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String UnityEngine.UIElements.IPointerEvent::get_pointerType() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_10 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0;
|
|
bool L_11;
|
|
L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_9, L_10, NULL);
|
|
V_3 = L_11;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
|
|
L_14 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_13);
|
|
__this->___m_TouchDownPosition_108 = L_14;
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RuntimeObject* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
|
|
L_16 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(6 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_localPosition() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_15);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17;
|
|
L_17 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_16, NULL);
|
|
RuntimeObject* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_clickCount() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_18);
|
|
RuntimeObject* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = InterfaceFuncInvoker0< bool >::Invoke(22 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_actionKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_20);
|
|
RuntimeObject* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = InterfaceFuncInvoker0< bool >::Invoke(18 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_shiftKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_22);
|
|
BaseVerticalCollectionView_DoSelect_mA8AF25B49A02621CEEE811D18A5B0B8449F06FEC(__this, L_17, L_19, L_21, L_23, NULL);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessPointerUp(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessPointerUp_m40882665BD89D99515ADC8BD6CD763CFAAE8AA2A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
int32_t V_6 = 0;
|
|
bool V_7 = false;
|
|
int32_t G_B16_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_isPrimary() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_2);
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_5);
|
|
V_2 = (bool)((!(((uint32_t)L_6) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
RuntimeObject* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
String_t* L_9;
|
|
L_9 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String UnityEngine.UIElements.IPointerEvent::get_pointerType() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_10 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0;
|
|
bool L_11;
|
|
L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_9, L_10, NULL);
|
|
V_3 = L_11;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
|
|
L_14 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_13);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_15 = __this->___m_TouchDownPosition_108;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16;
|
|
L_16 = Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline(L_14, L_15, NULL);
|
|
V_4 = L_16;
|
|
float L_17;
|
|
L_17 = Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline((&V_4), NULL);
|
|
V_5 = (bool)((((int32_t)((!(((float)L_17) <= ((float)(100.0f))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_18 = V_5;
|
|
if (!L_18)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_20;
|
|
L_20 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(6 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_localPosition() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_19);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
L_21 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_20, NULL);
|
|
RuntimeObject* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = InterfaceFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_clickCount() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_22);
|
|
RuntimeObject* L_24 = ___0_evt;
|
|
NullCheck(L_24);
|
|
bool L_25;
|
|
L_25 = InterfaceFuncInvoker0< bool >::Invoke(22 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_actionKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_24);
|
|
RuntimeObject* L_26 = ___0_evt;
|
|
NullCheck(L_26);
|
|
bool L_27;
|
|
L_27 = InterfaceFuncInvoker0< bool >::Invoke(18 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_shiftKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_26);
|
|
BaseVerticalCollectionView_DoSelect_mA8AF25B49A02621CEEE811D18A5B0B8449F06FEC(__this, L_21, L_23, L_25, L_27, NULL);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_28;
|
|
L_28 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
RuntimeObject* L_29 = ___0_evt;
|
|
NullCheck(L_29);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_30;
|
|
L_30 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(6 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_localPosition() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_29);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_31;
|
|
L_31 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_30, NULL);
|
|
NullCheck(L_28);
|
|
int32_t L_32;
|
|
L_32 = VirtualFuncInvoker1< int32_t, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(10 /* System.Int32 UnityEngine.UIElements.CollectionVirtualizationController::GetIndexFromPosition(UnityEngine.Vector2) */, L_28, L_31);
|
|
V_6 = L_32;
|
|
int32_t L_33;
|
|
L_33 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
if ((!(((uint32_t)L_33) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_34 = ___0_evt;
|
|
NullCheck(L_34);
|
|
bool L_35;
|
|
L_35 = InterfaceFuncInvoker0< bool >::Invoke(18 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_shiftKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_34);
|
|
if (L_35)
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_36 = ___0_evt;
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = InterfaceFuncInvoker0< bool >::Invoke(22 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_actionKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_36);
|
|
if (L_37)
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_38 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_38, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if ((((int32_t)L_39) <= ((int32_t)1)))
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_40 = __this->___m_SelectedIndices_91;
|
|
int32_t L_41 = V_6;
|
|
NullCheck(L_40);
|
|
bool L_42;
|
|
L_42 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_40, L_41, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
G_B16_0 = ((int32_t)(L_42));
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00ee:
|
|
{
|
|
G_B16_0 = 0;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
V_7 = (bool)G_B16_0;
|
|
bool L_43 = V_7;
|
|
if (!L_43)
|
|
{
|
|
goto IL_0100;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_44 = V_6;
|
|
BaseVerticalCollectionView_ProcessSingleClick_mE4FAC4CC7A03A314713B0361DBB1345EDCB7DE3C(__this, L_44, NULL);
|
|
}
|
|
|
|
IL_0100:
|
|
{
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::DoSelect(UnityEngine.Vector2,System.Int32,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_DoSelect_mA8AF25B49A02621CEEE811D18A5B0B8449F06FEC (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_localPosition, int32_t ___1_clickCount, bool ___2_actionKey, bool ___3_shiftKey, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
int32_t G_B21_0 = 0;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B29_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B28_0 = NULL;
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_0;
|
|
L_0 = BaseVerticalCollectionView_get_virtualizationController_m9F693DB4D2F1F22F4EA3389ACFAB6A7D9B3EDB81(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___0_localPosition;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker1< int32_t, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(10 /* System.Int32 UnityEngine.UIElements.CollectionVirtualizationController::GetIndexFromPosition(UnityEngine.Vector2) */, L_0, L_1);
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_4, NULL);
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_5);
|
|
V_2 = (bool)((((int32_t)L_3) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_6, 1))))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_8;
|
|
L_8 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_10;
|
|
L_10 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_11 = V_0;
|
|
NullCheck(L_10);
|
|
int32_t L_12;
|
|
L_12 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, L_10, L_11);
|
|
V_1 = L_12;
|
|
int32_t L_13 = ___1_clickCount;
|
|
V_5 = L_13;
|
|
int32_t L_14 = V_5;
|
|
V_4 = L_14;
|
|
int32_t L_15 = V_4;
|
|
if ((((int32_t)L_15) == ((int32_t)1)))
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
int32_t L_16 = V_4;
|
|
if ((((int32_t)L_16) == ((int32_t)2)))
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
int32_t L_17;
|
|
L_17 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
bool L_18 = ___2_actionKey;
|
|
V_6 = (bool)((int32_t)(((((int32_t)L_17) == ((int32_t)2))? 1 : 0)&(int32_t)L_18));
|
|
bool L_19 = V_6;
|
|
if (!L_19)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_20 = __this->___m_SelectedIds_90;
|
|
int32_t L_21 = V_1;
|
|
NullCheck(L_20);
|
|
bool L_22;
|
|
L_22 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_20, L_21, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_7 = L_22;
|
|
bool L_23 = V_7;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_24 = V_0;
|
|
BaseVerticalCollectionView_RemoveFromSelection_m5FBF5E2A9A48D3E1FB6F3571958761CDBD2C1C49(__this, L_24, NULL);
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
int32_t L_25 = V_0;
|
|
BaseVerticalCollectionView_AddToSelection_m6D702CBC773E7757EF54361C2612E82E6869838E(__this, L_25, NULL);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
int32_t L_26;
|
|
L_26 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
bool L_27 = ___3_shiftKey;
|
|
V_8 = (bool)((int32_t)(((((int32_t)L_26) == ((int32_t)2))? 1 : 0)&(int32_t)L_27));
|
|
bool L_28 = V_8;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_29 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_29, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_9 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
|
|
bool L_31 = V_9;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00d2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_32 = V_0;
|
|
BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482(__this, L_32, NULL);
|
|
goto IL_00dc;
|
|
}
|
|
|
|
IL_00d2:
|
|
{
|
|
int32_t L_33 = V_0;
|
|
BaseVerticalCollectionView_DoRangeSelection_m462F43AC5D59EEA06B6385AA5C27A9DCAF78F174(__this, L_33, NULL);
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
int32_t L_34;
|
|
L_34 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
if ((!(((uint32_t)L_34) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_35 = __this->___m_SelectedIndices_91;
|
|
int32_t L_36 = V_0;
|
|
NullCheck(L_35);
|
|
bool L_37;
|
|
L_37 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_35, L_36, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
G_B21_0 = ((int32_t)(L_37));
|
|
goto IL_00f7;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
G_B21_0 = 0;
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
V_10 = (bool)G_B21_0;
|
|
bool L_38 = V_10;
|
|
if (!L_38)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
int32_t L_39 = V_0;
|
|
BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482(__this, L_39, NULL);
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_40 = __this->___onItemsChosen_67;
|
|
V_11 = (bool)((!(((RuntimeObject*)(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)L_40) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_41 = V_11;
|
|
if (!L_41)
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_42 = V_0;
|
|
BaseVerticalCollectionView_ProcessSingleClick_mE4FAC4CC7A03A314713B0361DBB1345EDCB7DE3C(__this, L_42, NULL);
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_43 = __this->___onItemsChosen_67;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_44 = L_43;
|
|
G_B28_0 = L_44;
|
|
if (L_44)
|
|
{
|
|
G_B29_0 = L_44;
|
|
goto IL_0132;
|
|
}
|
|
}
|
|
{
|
|
goto IL_013e;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_45 = __this->___m_SelectedItems_92;
|
|
NullCheck(G_B29_0);
|
|
Action_1_Invoke_m0D54E898904F46A8FA1CF6B984B5C62DA52AD771_inline(G_B29_0, L_45, NULL);
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::DoRangeSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_DoRangeSelection_m462F43AC5D59EEA06B6385AA5C27A9DCAF78F174 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_rangeSelectionFinalIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0 = __this->___m_IsRangeSelectionDirectionUp_94;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = __this->___m_SelectedIndices_91;
|
|
int32_t L_2;
|
|
L_2 = Enumerable_Min_m3D3C3E5CE25D27D94448CA832FB5AB9F702D5443(L_1, NULL);
|
|
G_B3_0 = L_2;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = __this->___m_SelectedIndices_91;
|
|
int32_t L_4;
|
|
L_4 = Enumerable_Max_mF33848068459BE74BF534D16F6B678BB677EE704(L_3, NULL);
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B3_0;
|
|
BaseVerticalCollectionView_ClearSelectionWithoutValidation_m568C2DF260A0E61ECA6224861BF50BE6514F591D(__this, NULL);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_5, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_rangeSelectionFinalIndex;
|
|
int32_t L_7 = V_0;
|
|
__this->___m_IsRangeSelectionDirectionUp_94 = (bool)((((int32_t)L_6) < ((int32_t)L_7))? 1 : 0);
|
|
bool L_8 = __this->___m_IsRangeSelectionDirectionUp_94;
|
|
V_2 = L_8;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = ___0_rangeSelectionFinalIndex;
|
|
V_3 = L_10;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_11 = V_1;
|
|
int32_t L_12 = V_3;
|
|
NullCheck(L_11);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_11, L_12, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
int32_t L_13 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
int32_t L_14 = V_3;
|
|
int32_t L_15 = V_0;
|
|
V_4 = (bool)((((int32_t)((((int32_t)L_14) > ((int32_t)L_15))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_16 = V_4;
|
|
if (L_16)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
int32_t L_17 = ___0_rangeSelectionFinalIndex;
|
|
V_5 = L_17;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_18 = V_1;
|
|
int32_t L_19 = V_5;
|
|
NullCheck(L_18);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_18, L_19, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
int32_t L_20 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_20, 1));
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
int32_t L_21 = V_5;
|
|
int32_t L_22 = V_0;
|
|
V_6 = (bool)((((int32_t)((((int32_t)L_21) < ((int32_t)L_22))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_23 = V_6;
|
|
if (L_23)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_24 = V_1;
|
|
BaseVerticalCollectionView_AddToSelection_mD297CE592C4B3AA52EBD57E660D7AE39A96D77CE(__this, L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ProcessSingleClick(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ProcessSingleClick_mE4FAC4CC7A03A314713B0361DBB1345EDCB7DE3C (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_clickedIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_clickedIndex;
|
|
BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SelectAll()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SelectAll_mD43E7E6E6C13B1BE444A67210114CB5B4D52715B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_2 = 0;
|
|
goto IL_00da;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, L_4, L_5);
|
|
V_3 = L_6;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_7;
|
|
L_7 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_9;
|
|
L_9 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(6 /* System.Object UnityEngine.UIElements.CollectionViewController::GetItemForIndex(System.Int32) */, L_7, L_8);
|
|
V_4 = L_9;
|
|
RuntimeObject* L_10;
|
|
L_10 = BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF(__this, NULL);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem>::GetEnumerator() */, IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var, L_10);
|
|
V_5 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0089:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_12 = V_5;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0095;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_5;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_007e_1;
|
|
}
|
|
|
|
IL_005c_1:
|
|
{
|
|
RuntimeObject* L_14 = V_5;
|
|
NullCheck(L_14);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_15;
|
|
L_15 = InterfaceFuncInvoker0< ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ReusableCollectionItem>::get_Current() */, IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var, L_14);
|
|
V_6 = L_15;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_16 = V_6;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857_inline(L_16, NULL);
|
|
int32_t L_18 = V_3;
|
|
V_7 = (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_7;
|
|
if (!L_19)
|
|
{
|
|
goto IL_007e_1;
|
|
}
|
|
}
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_20 = V_6;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, L_20, (bool)1);
|
|
}
|
|
|
|
IL_007e_1:
|
|
{
|
|
RuntimeObject* L_21 = V_5;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_005c_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_23 = __this->___m_SelectedIds_90;
|
|
int32_t L_24 = V_3;
|
|
NullCheck(L_23);
|
|
bool L_25;
|
|
L_25 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_23, L_24, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_8 = (bool)((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
|
|
bool L_26 = V_8;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_27 = __this->___m_SelectedIds_90;
|
|
int32_t L_28 = V_3;
|
|
NullCheck(L_27);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_27, L_28, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_29 = __this->___m_SelectedIndices_91;
|
|
int32_t L_30 = V_2;
|
|
NullCheck(L_29);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_29, L_30, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_31 = __this->___m_SelectedItems_92;
|
|
RuntimeObject* L_32 = V_4;
|
|
NullCheck(L_31);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_31, L_32, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
int32_t L_33 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
int32_t L_34 = V_2;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_35 = __this->___m_ViewController_86;
|
|
NullCheck(L_35);
|
|
RuntimeObject* L_36;
|
|
L_36 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_35, NULL);
|
|
NullCheck(L_36);
|
|
int32_t L_37;
|
|
L_37 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_36);
|
|
V_9 = (bool)((((int32_t)L_34) < ((int32_t)L_37))? 1 : 0);
|
|
bool L_38 = V_9;
|
|
if (L_38)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726(__this, NULL);
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelection_m6D702CBC773E7757EF54361C2612E82E6869838E (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = L_0;
|
|
int32_t L_2 = ___0_index;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2);
|
|
BaseVerticalCollectionView_AddToSelection_mD297CE592C4B3AA52EBD57E660D7AE39A96D77CE(__this, (RuntimeObject*)L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelection(System.Collections.Generic.IList`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelection_mD297CE592C4B3AA52EBD57E660D7AE39A96D77CE (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indexes, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_indexes;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_indexes;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Int32>::get_Count() */, ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0_il2cpp_TypeInfo_var, L_2);
|
|
G_B4_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_5 = ___0_indexes;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6;
|
|
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32>::GetEnumerator() */, IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var, L_5);
|
|
V_1 = L_6;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0043:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
RuntimeObject* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_9);
|
|
V_2 = L_10;
|
|
int32_t L_11 = V_2;
|
|
BaseVerticalCollectionView_AddToSelectionWithoutValidation_mFE343B65971F600A4BE2720CD6DE9A55CE912A59(__this, L_11, NULL);
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12);
|
|
if (L_13)
|
|
{
|
|
goto IL_0028_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726(__this, NULL);
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::AddToSelectionWithoutValidation(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_AddToSelectionWithoutValidation_mFE343B65971F600A4BE2720CD6DE9A55CE912A59 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* V_4 = NULL;
|
|
bool V_5 = false;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_91;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_0, L_1, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_2 = L_2;
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_5 = ___0_index;
|
|
NullCheck(L_4);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, L_4, L_5);
|
|
V_0 = L_6;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_7;
|
|
L_7 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_8 = ___0_index;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_9;
|
|
L_9 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(6 /* System.Object UnityEngine.UIElements.CollectionViewController::GetItemForIndex(System.Int32) */, L_7, L_8);
|
|
V_1 = L_9;
|
|
RuntimeObject* L_10;
|
|
L_10 = BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF(__this, NULL);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem>::GetEnumerator() */, IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var, L_10);
|
|
V_3 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
|
|
IL_003f_1:
|
|
{
|
|
RuntimeObject* L_14 = V_3;
|
|
NullCheck(L_14);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_15;
|
|
L_15 = InterfaceFuncInvoker0< ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ReusableCollectionItem>::get_Current() */, IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var, L_14);
|
|
V_4 = L_15;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_16 = V_4;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857_inline(L_16, NULL);
|
|
int32_t L_18 = V_0;
|
|
V_5 = (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_5;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_20 = V_4;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, L_20, (bool)1);
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
RuntimeObject* L_21 = V_3;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_003f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_23 = __this->___m_SelectedIds_90;
|
|
int32_t L_24 = V_0;
|
|
NullCheck(L_23);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_23, L_24, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_25 = __this->___m_SelectedIndices_91;
|
|
int32_t L_26 = ___0_index;
|
|
NullCheck(L_25);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_25, L_26, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_27 = __this->___m_SelectedItems_92;
|
|
RuntimeObject* L_28 = V_1;
|
|
NullCheck(L_27);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_27, L_28, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RemoveFromSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RemoveFromSelection_m5FBF5E2A9A48D3E1FB6F3571958761CDBD2C1C49 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
BaseVerticalCollectionView_RemoveFromSelectionWithoutValidation_m69C20ECAC6DC5E982A38144581FAD48B373BECB3(__this, L_2, NULL);
|
|
BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726(__this, NULL);
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::RemoveFromSelectionWithoutValidation(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_RemoveFromSelectionWithoutValidation_m69C20ECAC6DC5E982A38144581FAD48B373BECB3 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* V_4 = NULL;
|
|
bool V_5 = false;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_91;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_0, L_1, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_2 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_5 = ___0_index;
|
|
NullCheck(L_4);
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, L_4, L_5);
|
|
V_0 = L_6;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_7;
|
|
L_7 = BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline(__this, NULL);
|
|
int32_t L_8 = ___0_index;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_9;
|
|
L_9 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(6 /* System.Object UnityEngine.UIElements.CollectionViewController::GetItemForIndex(System.Int32) */, L_7, L_8);
|
|
V_1 = L_9;
|
|
RuntimeObject* L_10;
|
|
L_10 = BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF(__this, NULL);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem>::GetEnumerator() */, IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var, L_10);
|
|
V_3 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006d:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0063_1;
|
|
}
|
|
|
|
IL_0042_1:
|
|
{
|
|
RuntimeObject* L_14 = V_3;
|
|
NullCheck(L_14);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_15;
|
|
L_15 = InterfaceFuncInvoker0< ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ReusableCollectionItem>::get_Current() */, IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var, L_14);
|
|
V_4 = L_15;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_16 = V_4;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857_inline(L_16, NULL);
|
|
int32_t L_18 = V_0;
|
|
V_5 = (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_5;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0063_1;
|
|
}
|
|
}
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_20 = V_4;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, L_20, (bool)0);
|
|
}
|
|
|
|
IL_0063_1:
|
|
{
|
|
RuntimeObject* L_21 = V_3;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0042_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_23 = __this->___m_SelectedIds_90;
|
|
int32_t L_24 = V_0;
|
|
NullCheck(L_23);
|
|
bool L_25;
|
|
L_25 = List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5(L_23, L_24, List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_26 = __this->___m_SelectedIndices_91;
|
|
int32_t L_27 = ___0_index;
|
|
NullCheck(L_26);
|
|
bool L_28;
|
|
L_28 = List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5(L_26, L_27, List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_29 = __this->___m_SelectedItems_92;
|
|
RuntimeObject* L_30 = V_1;
|
|
NullCheck(L_29);
|
|
bool L_31;
|
|
L_31 = List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7(L_29, L_30, List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelection_mF970F0DAF12C51E9C6B1AC4FD64DB035B3DCA482 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
V_0 = (bool)((((int32_t)L_0) < ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0(__this, NULL);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2;
|
|
int32_t L_4 = ___0_index;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_4);
|
|
BaseVerticalCollectionView_SetSelection_mF5EF86474640A9CA69982DBA2C7877F0E57F11DD(__this, (RuntimeObject*)L_3, NULL);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelection(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelection_mF5EF86474640A9CA69982DBA2C7877F0E57F11DD (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_indices;
|
|
BaseVerticalCollectionView_SetSelectionInternal_m3A7D9E2BE9310A1EF237B7FA53B8D08AF7CEBCDD(__this, L_0, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelectionWithoutNotify(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelectionWithoutNotify_m77438ECF0B9AAA507409655E5F5C0F57F005E18B (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_indices;
|
|
BaseVerticalCollectionView_SetSelectionInternal_m3A7D9E2BE9310A1EF237B7FA53B8D08AF7CEBCDD(__this, L_0, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::SetSelectionInternal(System.Collections.Generic.IEnumerable`1<System.Int32>,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_SetSelectionInternal_m3A7D9E2BE9310A1EF237B7FA53B8D08AF7CEBCDD (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, RuntimeObject* ___0_indices, bool ___1_sendNotification, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_indices;
|
|
G_B3_0 = ((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
BaseVerticalCollectionView_ClearSelectionWithoutValidation_m568C2DF260A0E61ECA6224861BF50BE6514F591D(__this, NULL);
|
|
RuntimeObject* L_3 = ___0_indices;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Int32>::GetEnumerator() */, IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var, L_3);
|
|
V_1 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0040:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
|
|
IL_0027_1:
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_7);
|
|
V_2 = L_8;
|
|
int32_t L_9 = V_2;
|
|
BaseVerticalCollectionView_AddToSelectionWithoutValidation_mFE343B65971F600A4BE2720CD6DE9A55CE912A59(__this, L_9, NULL);
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
RuntimeObject* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
|
|
if (L_11)
|
|
{
|
|
goto IL_0027_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
bool L_12 = ___1_sendNotification;
|
|
V_3 = L_12;
|
|
bool L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726(__this, NULL);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::NotifyOfSelectionChange()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B4_0 = NULL;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* G_B3_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B7_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B6_0 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_2 = __this->___onSelectionChange_68;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_4 = __this->___m_SelectedItems_92;
|
|
NullCheck(G_B4_0);
|
|
Action_1_Invoke_m0D54E898904F46A8FA1CF6B984B5C62DA52AD771_inline(G_B4_0, L_4, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_5 = __this->___onSelectedIndicesChange_69;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_6 = L_5;
|
|
G_B6_0 = L_6;
|
|
if (L_6)
|
|
{
|
|
G_B7_0 = L_6;
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = __this->___m_SelectedIndices_91;
|
|
NullCheck(G_B7_0);
|
|
Action_1_Invoke_m3599C55D4DA870CC0F313E761327FADAF574D881_inline(G_B7_0, L_7, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ClearSelection()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ClearSelection_m6ACB83A50DF4149F7F45A864DB29A00A6B3A78E0 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = __this->___m_SelectedIds_90;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_1, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
BaseVerticalCollectionView_ClearSelectionWithoutValidation_m568C2DF260A0E61ECA6224861BF50BE6514F591D(__this, NULL);
|
|
BaseVerticalCollectionView_NotifyOfSelectionChange_mD902B146D331F52143E29A8633F367C899270726(__this, NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ClearSelectionWithoutValidation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ClearSelectionWithoutValidation_m568C2DF260A0E61ECA6224861BF50BE6514F591D (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = BaseVerticalCollectionView_get_activeItems_m8CF0CFAB13F75511F5FB72FFBA60165B7DA2D6EF(__this, NULL);
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ReusableCollectionItem>::GetEnumerator() */, IEnumerable_1_tC8F648DAC54860B2E32294DCF939576E41EF594A_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_001f_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_5;
|
|
L_5 = InterfaceFuncInvoker0< ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ReusableCollectionItem>::get_Current() */, IEnumerator_1_t2A9C63083A2E1F3154B162888A0D4FD37ED0C247_il2cpp_TypeInfo_var, L_4);
|
|
V_1 = L_5;
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, L_6, (bool)0);
|
|
}
|
|
|
|
IL_001f_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_9 = __this->___m_SelectedIds_90;
|
|
NullCheck(L_9);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_9, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_10 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_10);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_10, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_11 = __this->___m_SelectedItems_92;
|
|
NullCheck(L_11);
|
|
List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_inline(L_11, List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnViewDataReady()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnViewDataReady_mA113CE5F379F092ECC39E692F930723767B7EAA6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
VisualElement_OnViewDataReady_mC163AC6CDC322CCB2941C1DEFC6EF3900C332C79(__this, NULL);
|
|
String_t* L_0;
|
|
L_0 = VisualElement_GetFullHierarchicalViewDataKey_m36E019EF47770CE6BC054BB606CD224517028A8F(__this, NULL);
|
|
V_0 = L_0;
|
|
String_t* L_1 = V_0;
|
|
VisualElement_OverwriteFromViewData_mF7BC9343789BED5307CCE900D7F05A62D6027AB3(__this, __this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::ExecuteDefaultAction(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_ExecuteDefaultAction_m468BB88A934A49E93F99BA8C7719E4E4553433A9 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mB1256CEDFAF9A31F2C3B18538E6162E8B74DB0D4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B3_0 = NULL;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* G_B2_0 = NULL;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* G_B10_0 = NULL;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* G_B9_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B11_0 = NULL;
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* G_B11_1 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
VisualElement_ExecuteDefaultAction_m69DB43D84DE4D338F213E0C4B64AD2055E5A63A9(__this, L_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
NullCheck(L_1);
|
|
int64_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_3;
|
|
L_3 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
V_0 = (bool)((((int64_t)L_2) == ((int64_t)L_3))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_5 = __this->___m_Dragger_95;
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* L_6 = L_5;
|
|
G_B2_0 = L_6;
|
|
if (L_6)
|
|
{
|
|
G_B3_0 = L_6;
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(G_B3_0);
|
|
DragEventsProcessor_OnPointerUpEvent_mC5C2AAFDA12640033F5FD9CE855DD84F390C7A81(G_B3_0, ((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)CastclassSealed((RuntimeObject*)L_7, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var)), NULL);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
int64_t L_9;
|
|
L_9 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var);
|
|
int64_t L_10;
|
|
L_10 = EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745(EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var);
|
|
V_1 = (bool)((((int64_t)L_9) == ((int64_t)L_10))? 1 : 0);
|
|
bool L_11 = V_1;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_12 = __this->___m_VirtualizationController_87;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14;
|
|
L_14 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(L_13, NULL);
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(12 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::OnFocus(UnityEngine.UIElements.VisualElement) */, L_12, ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_14, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
int64_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_15);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var);
|
|
int64_t L_17;
|
|
L_17 = EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938(EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var);
|
|
V_2 = (bool)((((int64_t)L_16) == ((int64_t)L_17))? 1 : 0);
|
|
bool L_18 = V_2;
|
|
if (!L_18)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
V_3 = ((BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302*)IsInstClass((RuntimeObject*)L_19, BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302_il2cpp_TypeInfo_var));
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* L_20 = __this->___m_VirtualizationController_87;
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_21 = V_3;
|
|
G_B9_0 = L_20;
|
|
if (L_21)
|
|
{
|
|
G_B10_0 = L_20;
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
G_B11_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(NULL));
|
|
G_B11_1 = G_B9_0;
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_22 = V_3;
|
|
NullCheck(L_22);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_23;
|
|
L_23 = FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_inline(L_22, FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_RuntimeMethod_var);
|
|
G_B11_0 = L_23;
|
|
G_B11_1 = G_B10_0;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
NullCheck(G_B11_1);
|
|
VirtualActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(13 /* System.Void UnityEngine.UIElements.CollectionVirtualizationController::OnBlur(UnityEngine.UIElements.VisualElement) */, G_B11_1, ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)G_B11_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = ___0_evt;
|
|
NullCheck(L_24);
|
|
int64_t L_25;
|
|
L_25 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_24);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tF3176CA51B64DBB3010435BA1986B05039647C37_il2cpp_TypeInfo_var);
|
|
int64_t L_26;
|
|
L_26 = EventBase_1_TypeId_mB1256CEDFAF9A31F2C3B18538E6162E8B74DB0D4(EventBase_1_TypeId_mB1256CEDFAF9A31F2C3B18538E6162E8B74DB0D4_RuntimeMethod_var);
|
|
V_4 = (bool)((((int64_t)L_25) == ((int64_t)L_26))? 1 : 0);
|
|
bool L_27 = V_4;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = ___0_evt;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29;
|
|
L_29 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_28, NULL);
|
|
V_5 = (bool)((((RuntimeObject*)(RuntimeObject*)L_29) == ((RuntimeObject*)(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*)__this))? 1 : 0);
|
|
bool L_30 = V_5;
|
|
if (!L_30)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_31 = __this->___m_ScrollView_85;
|
|
NullCheck(L_31);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32;
|
|
L_32 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(95 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_31);
|
|
NullCheck(L_32);
|
|
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.Focusable::Focus() */, L_32);
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnSizeChanged(UnityEngine.UIElements.GeometryChangedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnSizeChanged_m940C5F46FB9141AEA55B894893D80FC37560A88A (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = BaseVerticalCollectionView_HasValidDataAndBindings_mC01F3E931D8CD108ED1DD6CA81F524DA81CBD3BC(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_3;
|
|
L_3 = GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
float L_4;
|
|
L_4 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&V_2), NULL);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_6;
|
|
L_6 = GeometryChangedEvent_get_oldRect_m9961ACE622E851C4770B205C57664F90F3E0E9A7_inline(L_5, NULL);
|
|
V_2 = L_6;
|
|
float L_7;
|
|
L_7 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&V_2), NULL);
|
|
bool L_8;
|
|
L_8 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_4, L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_10;
|
|
L_10 = GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15_inline(L_9, NULL);
|
|
V_2 = L_10;
|
|
float L_11;
|
|
L_11 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_2), NULL);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_13;
|
|
L_13 = GeometryChangedEvent_get_oldRect_m9961ACE622E851C4770B205C57664F90F3E0E9A7_inline(L_12, NULL);
|
|
V_2 = L_13;
|
|
float L_14;
|
|
L_14 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_2), NULL);
|
|
bool L_15;
|
|
L_15 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_11, L_14, NULL);
|
|
G_B5_0 = ((int32_t)(L_15));
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
bool L_16 = V_1;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_17 = ___0_evt;
|
|
NullCheck(L_17);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_18;
|
|
L_18 = GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15_inline(L_17, NULL);
|
|
V_2 = L_18;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19;
|
|
L_19 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267((&V_2), NULL);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = GeometryChangedEvent_get_layoutPass_mF1D65C18E68AD76A3CECA65EF27FB466048F3F19_inline(L_20, NULL);
|
|
BaseVerticalCollectionView_Resize_m37EBBDA7D272B185B38F6B6DBA54527A8A52420A(__this, L_19, L_21, NULL);
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::OnCustomStyleResolved(UnityEngine.UIElements.CustomStyleResolvedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_OnCustomStyleResolved_m6BD78676C47925976E39B5AF0A7EEB5A8DE2D035 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICustomStyle_t4385916BE4168875B5CC8B442752D4A1A6A69026_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0 = __this->___m_ItemHeightIsInline_83;
|
|
if (L_0)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* L_1 = ___0_e;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = CustomStyleResolvedEvent_get_customStyle_m0F9CBEBB0EAF766F4A913974871BB5B4DCE1D3F4(L_1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F L_3 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_ItemHeightProperty_96;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker2< bool, CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F, int32_t* >::Invoke(1 /* System.Boolean UnityEngine.UIElements.ICustomStyle::TryGetValue(UnityEngine.UIElements.CustomStyleProperty`1<System.Int32>,System.Int32&) */, ICustomStyle_t4385916BE4168875B5CC8B442752D4A1A6A69026_il2cpp_TypeInfo_var, L_2, L_3, (&V_0));
|
|
G_B3_0 = ((int32_t)(L_4));
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
float L_6 = __this->___m_FixedItemHeight_82;
|
|
int32_t L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
float L_8;
|
|
L_8 = fabsf(((float)il2cpp_codegen_subtract(L_6, ((float)L_7))));
|
|
V_2 = (bool)((((float)L_8) > ((float)(1.40129846E-45f)))? 1 : 0);
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
__this->___m_FixedItemHeight_82 = ((float)L_10);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::UnityEngine.ISerializationCallbackReceiver.OnBeforeSerialize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_m86DABEF90297C7AA909C9C64D2CFB46E3CC41CA9 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::UnityEngine.ISerializationCallbackReceiver.OnAfterDeserialize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_mA44FE9AC0C080421D07D4D9D0916A7B812EE51B0 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView__cctor_mE04E5B58DAC297CA0E8CD42ACC25720A83565917 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3C332A204F7E245BC756631AB669E7518D14AEE1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral04CD7AF9A036E0043DA993F7272EF14CA84A2A80);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F8C0254FACC1239A4D11D071CA10DC23CE95363);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral449C8A34D68C78E02A683038E1EB263B6C784F5F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral466F88DACA4907F6B17D2F2DA645967462DB7166);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral54ADB9482FE5054F63B11E03134FA799012EA962);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E196F621D73DB41274AA4B71FB107E58AE2665F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F9D3584F7D0B6CC245A5748CB912CCB9B2F169D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral976786DDC8FB293730C144771624182C6C896F20);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2AD49AA57E8A76DE35DAF65939DD4C845BCF018);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralECEDF23804E8E7DD6854A62B05F29DB328995568);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7* L_0 = (List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7*)il2cpp_codegen_object_new(List_1_t42A86FE68C8321F340DE626A644141DAF4A411E7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m3C332A204F7E245BC756631AB669E7518D14AEE1(L_0, List_1__ctor_m3C332A204F7E245BC756631AB669E7518D14AEE1_RuntimeMethod_var);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___k_EmptyItems_78 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___k_EmptyItems_78), (void*)L_0);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_DefaultItemHeight_81 = ((int32_t)30);
|
|
CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126((&L_1), _stringLiteral54ADB9482FE5054F63B11E03134FA799012EA962, /*hidden argument*/CustomStyleProperty_1__ctor_m8937D5A8F5F6402CB74D27C77E80BD629E757126_RuntimeMethod_var);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_ItemHeightProperty_96 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_ItemHeightProperty_96))->___U3CnameU3Ek__BackingField_0), (void*)NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99 = _stringLiteral04CD7AF9A036E0043DA993F7272EF14CA84A2A80;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99), (void*)_stringLiteral04CD7AF9A036E0043DA993F7272EF14CA84A2A80);
|
|
String_t* L_2 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_2, _stringLiteral466F88DACA4907F6B17D2F2DA645967462DB7166, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___borderUssClassName_100 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___borderUssClassName_100), (void*)L_3);
|
|
String_t* L_4 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
String_t* L_5;
|
|
L_5 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_4, _stringLiteral449C8A34D68C78E02A683038E1EB263B6C784F5F, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemUssClassName_101 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemUssClassName_101), (void*)L_5);
|
|
String_t* L_6 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
String_t* L_7;
|
|
L_7 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_6, _stringLiteralECEDF23804E8E7DD6854A62B05F29DB328995568, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___dragHoverBarUssClassName_102 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___dragHoverBarUssClassName_102), (void*)L_7);
|
|
String_t* L_8 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemUssClassName_101;
|
|
String_t* L_9;
|
|
L_9 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_8, _stringLiteralD2AD49AA57E8A76DE35DAF65939DD4C845BCF018, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemDragHoverUssClassName_103 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemDragHoverUssClassName_103), (void*)L_9);
|
|
String_t* L_10 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemUssClassName_101;
|
|
String_t* L_11;
|
|
L_11 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_10, _stringLiteral8F9D3584F7D0B6CC245A5748CB912CCB9B2F169D, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemSelectedVariantUssClassName_104 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemSelectedVariantUssClassName_104), (void*)L_11);
|
|
String_t* L_12 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemUssClassName_101;
|
|
String_t* L_13;
|
|
L_13 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_12, _stringLiteral976786DDC8FB293730C144771624182C6C896F20, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemAlternativeBackgroundUssClassName_105 = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemAlternativeBackgroundUssClassName_105), (void*)L_13);
|
|
String_t* L_14 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_14, _stringLiteral3F8C0254FACC1239A4D11D071CA10DC23CE95363, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___listScrollViewUssClassName_106 = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___listScrollViewUssClassName_106), (void*)L_15);
|
|
String_t* L_16 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___ussClassName_99;
|
|
String_t* L_17;
|
|
L_17 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_16, _stringLiteral5E196F621D73DB41274AA4B71FB107E58AE2665F, NULL);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___backgroundFillUssClassName_107 = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___backgroundFillUssClassName_107), (void*)L_17);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::<.ctor>b__143_0(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_U3C_ctorU3Eb__143_0_mAE52CEDE3272076A64F7F7C8C0343BF645511DBE (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, float ___0_v, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_v;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_1), (0.0f), L_0, /*hidden argument*/NULL);
|
|
BaseVerticalCollectionView_OnScroll_mECB206AEDD2D6BF4FA2E57283BABF6E2C62C48D7(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::<Apply>g__HandleSelectionAndScroll|164_0(System.Int32,UnityEngine.UIElements.BaseVerticalCollectionView/<>c__DisplayClass164_0&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_U3CApplyU3Eg__HandleSelectionAndScrollU7C164_0_mE7D988DF535990E8F7292FBD6519AEF7C08BC372 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, int32_t ___0_index, U3CU3Ec__DisplayClass164_0_tC8D9A08D511DD33A5B1192813EF9635A87268747* ___1_p, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_2 = __this->___m_ViewController_86;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(L_2, NULL);
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_3);
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_1) < ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_6;
|
|
L_6 = BaseVerticalCollectionView_get_selectionType_m1AD4F8B21A6C1573F49C0CBB20C4A6EBCE78A047(__this, NULL);
|
|
U3CU3Ec__DisplayClass164_0_tC8D9A08D511DD33A5B1192813EF9635A87268747* L_7 = ___1_p;
|
|
bool L_8 = L_7->___shiftKey_1;
|
|
if (!((int32_t)(((((int32_t)L_6) == ((int32_t)2))? 1 : 0)&(int32_t)L_8)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_9 = __this->___m_SelectedIndices_91;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_9, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
G_B8_0 = ((!(((uint32_t)L_10) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
V_1 = (bool)G_B8_0;
|
|
bool L_11 = V_1;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___0_index;
|
|
BaseVerticalCollectionView_DoRangeSelection_m462F43AC5D59EEA06B6385AA5C27A9DCAF78F174(__this, L_12, NULL);
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_13 = ___0_index;
|
|
BaseVerticalCollectionView_set_selectedIndex_mFAC82D45A6517794F8A1E0C15AD488E63A231DDA(__this, L_13, NULL);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_14 = ___0_index;
|
|
BaseVerticalCollectionView_ScrollToItem_mA201CA77442DB59FDBAD1AEE7F61FFFA626A8716(__this, L_14, NULL);
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.TextCoreHandle
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_pinvoke(const TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5& unmarshaled, TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_CurrentGenerationSettings_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_CurrentGenerationSettings' of type 'TextCoreHandle': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_CurrentGenerationSettings_4Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_pinvoke_back(const TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_pinvoke& marshaled, TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5& unmarshaled)
|
|
{
|
|
Exception_t* ___m_CurrentGenerationSettings_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_CurrentGenerationSettings' of type 'TextCoreHandle': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_CurrentGenerationSettings_4Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TextCoreHandle
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_pinvoke_cleanup(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.TextCoreHandle
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_com(const TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5& unmarshaled, TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_CurrentGenerationSettings_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_CurrentGenerationSettings' of type 'TextCoreHandle': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_CurrentGenerationSettings_4Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_com_back(const TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_com& marshaled, TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5& unmarshaled)
|
|
{
|
|
Exception_t* ___m_CurrentGenerationSettings_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_CurrentGenerationSettings' of type 'TextCoreHandle': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_CurrentGenerationSettings_4Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TextCoreHandle
|
|
IL2CPP_EXTERN_C void TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshal_com_cleanup(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::get_MeasuredSizes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::set_MeasuredSizes(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CMeasuredSizesU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::get_RoundedSizes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CRoundedSizesU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::set_RoundedSizes(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CRoundedSizesU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextCoreHandle::New()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextCoreHandle_New_m6352FFD6411FDBCC061B47D293700E24B98F8C96 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5));
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_0 = (TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2*)il2cpp_codegen_object_new(TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
TextGenerationSettings__ctor_mA20608A16443434DAE9FEF0BF8BD076270FA660E(L_0, NULL);
|
|
(&V_0)->___m_CurrentGenerationSettings_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___m_CurrentGenerationSettings_4), (void*)L_0);
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5 L_1 = V_0;
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var, &L_2);
|
|
V_1 = (RuntimeObject*)L_3;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::get_textInfoMesh()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* V_1 = NULL;
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0 = __this->___m_TextInfoMesh_6;
|
|
V_0 = (bool)((((RuntimeObject*)(TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_2 = (TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)il2cpp_codegen_object_new(TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
TextInfo__ctor_m241E24715CC5F6293DC90A4D25884548BAD0D602(L_2, NULL);
|
|
__this->___m_TextInfoMesh_6 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TextInfoMesh_6), (void*)L_2);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_3 = __this->___m_TextInfoMesh_6;
|
|
V_1 = L_3;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* _returnValue;
|
|
_returnValue = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::get_textInfoLayout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_get_textInfoLayout_mF74EE30CC20AB4944F2507877FAD63DA047DB5F3 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0 = ((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_TextInfoLayout_7;
|
|
V_0 = (bool)((((RuntimeObject*)(TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_2 = (TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)il2cpp_codegen_object_new(TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
TextInfo__ctor_m241E24715CC5F6293DC90A4D25884548BAD0D602(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_TextInfoLayout_7 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_TextInfoLayout_7), (void*)L_2);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_3 = ((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_TextInfoLayout_7;
|
|
V_1 = L_3;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsLegacy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsLegacy_m95D41D511B3AE74C37693E6FA01814425B8BCAAF (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextCoreHandle_IsLegacy_m95D41D511B3AE74C37693E6FA01814425B8BCAAF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextCoreHandle_IsLegacy_m95D41D511B3AE74C37693E6FA01814425B8BCAAF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsDirty(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsDirty_m87C99719001F2778DA99423BCACE64C049D18340 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = TextParams_GetHashCode_mC8A715BCEEDF161F0CDF1510C352C3C72B30C4A6((&___0_parms), NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->___m_PreviousGenerationSettingsHash_3;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = __this->___isDirty_8;
|
|
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
__this->___m_PreviousGenerationSettingsHash_3 = L_5;
|
|
__this->___isDirty_8 = (bool)0;
|
|
V_2 = (bool)1;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
bool L_6 = V_2;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextCoreHandle_IsDirty_m87C99719001F2778DA99423BCACE64C049D18340_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextCoreHandle_IsDirty_m87C99719001F2778DA99423BCACE64C049D18340(_thisAdjusted, ___0_parms, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextCoreHandle::GetCursorPosition(UnityEngine.UIElements.CursorPositionStylePainterParameters,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_GetCursorPosition_m688A608C675E4A815935EB7ADCE2C649927B8FD5 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0;
|
|
L_0 = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(__this, NULL);
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_1 = ___0_parms;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2 = L_1.___rect_0;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_3 = ___0_parms;
|
|
int32_t L_4 = L_3.___cursorIndex_8;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = TextGenerator_GetCursorPosition_m9F767EE74114971780EF08619DEE0F5223FC5095(L_0, L_2, L_4, (bool)1, NULL);
|
|
V_0 = L_5;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_GetCursorPosition_m688A608C675E4A815935EB7ADCE2C649927B8FD5_AdjustorThunk (RuntimeObject* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextCoreHandle_GetCursorPosition_m688A608C675E4A815935EB7ADCE2C649927B8FD5(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::ComputeTextWidth(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_ComputeTextWidth_m19A12189B701300E3605E499CF0CF6CB4FA3A8E0 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_parms;
|
|
TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3(__this, L_0, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (&__this->___m_PreferredSize_2);
|
|
float L_2 = L_1->___x_0;
|
|
V_0 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
float L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextCoreHandle_ComputeTextWidth_m19A12189B701300E3605E499CF0CF6CB4FA3A8E0_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextCoreHandle_ComputeTextWidth_m19A12189B701300E3605E499CF0CF6CB4FA3A8E0(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::ComputeTextHeight(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_ComputeTextHeight_mACA9396D480B42C7ED37B3EA6CF0DA0F299D4AF0 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_parms;
|
|
TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3(__this, L_0, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (&__this->___m_PreferredSize_2);
|
|
float L_2 = L_1->___y_1;
|
|
V_0 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
float L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextCoreHandle_ComputeTextHeight_mACA9396D480B42C7ED37B3EA6CF0DA0F299D4AF0_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextCoreHandle_ComputeTextHeight_mACA9396D480B42C7ED37B3EA6CF0DA0F299D4AF0(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextCoreHandle::GetLineHeight(System.Int32,UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextCoreHandle_GetLineHeight_mBB168796142ACE1D35F8528B405C76D969C58787 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0 = __this->___m_TextInfoMesh_6;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_1 = __this->___m_TextInfoMesh_6;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___characterCount_2;
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_4 = ___1_textParams;
|
|
float L_5 = ___3_pixelPerPoint;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_6;
|
|
L_6 = TextCoreHandle_Update_mC3E3A597AC7276BBA05E70D154FA0637CFBD11EF(__this, L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_7 = __this->___m_TextInfoMesh_6;
|
|
NullCheck(L_7);
|
|
LineInfoU5BU5D_t37598F2175B291797270D1161DC29B6296FB169D* L_8 = L_7->___lineInfo_13;
|
|
NullCheck(L_8);
|
|
float L_9 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___lineHeight_11;
|
|
V_1 = L_9;
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
float L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextCoreHandle_GetLineHeight_mBB168796142ACE1D35F8528B405C76D969C58787_AdjustorThunk (RuntimeObject* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextCoreHandle_GetLineHeight_mBB168796142ACE1D35F8528B405C76D969C58787(_thisAdjusted, ___0_characterIndex, ___1_textParams, ___2_textScaling, ___3_pixelPerPoint, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextCoreHandle::Update(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_Update_mC3E3A597AC7276BBA05E70D154FA0637CFBD11EF (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* V_3 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_0 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_0, NULL);
|
|
V_0 = L_1;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_2 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_2, NULL);
|
|
float L_4 = L_3.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_inline(__this, NULL);
|
|
float L_6 = L_5.___x_0;
|
|
float L_7;
|
|
L_7 = fabsf(((float)il2cpp_codegen_subtract(L_4, L_6)));
|
|
if ((!(((float)L_7) < ((float)(0.00999999978f)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_8 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_8, NULL);
|
|
float L_10 = L_9.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_inline(__this, NULL);
|
|
float L_12 = L_11.___y_1;
|
|
float L_13;
|
|
L_13 = fabsf(((float)il2cpp_codegen_subtract(L_10, L_12)));
|
|
G_B3_0 = ((((float)L_13) < ((float)(0.00999999978f)))? 1 : 0);
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF_inline(__this, NULL);
|
|
V_0 = L_15;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_0;
|
|
float L_17 = L_16.___x_0;
|
|
(&___0_parms)->___wordWrapWidth_12 = L_17;
|
|
goto IL_0091;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_0;
|
|
TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1_inline(__this, L_18, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_0;
|
|
TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0_inline(__this, L_19, NULL);
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
|
|
L_20 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_22;
|
|
memset((&L_22), 0, sizeof(L_22));
|
|
Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675((&L_22), L_20, L_21, /*hidden argument*/NULL);
|
|
(&___0_parms)->___rect_0 = L_22;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_23 = ___0_parms;
|
|
bool L_24;
|
|
L_24 = TextCoreHandle_IsDirty_m87C99719001F2778DA99423BCACE64C049D18340(__this, L_23, NULL);
|
|
V_2 = (bool)((((int32_t)L_24) == ((int32_t)0))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (!L_25)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_26;
|
|
L_26 = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(__this, NULL);
|
|
V_3 = L_26;
|
|
goto IL_010c;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_27 = ___0_parms;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_28 = __this->___m_CurrentGenerationSettings_4;
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
TextCoreHandle_UpdateGenerationSettingsCommon_mBDBF001A8AFE3FE6D77B5141D070230BAE3D8E43(L_27, L_28, NULL);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_29 = __this->___m_CurrentGenerationSettings_4;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_30 = ___0_parms;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_31 = L_30.___fontColor_9;
|
|
NullCheck(L_29);
|
|
L_29->___color_14 = L_31;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_32 = __this->___m_CurrentGenerationSettings_4;
|
|
NullCheck(L_32);
|
|
L_32->___inverseYAxis_43 = (bool)1;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_33;
|
|
L_33 = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(__this, NULL);
|
|
NullCheck(L_33);
|
|
L_33->___isDirty_16 = (bool)1;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_34 = __this->___m_CurrentGenerationSettings_4;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_35;
|
|
L_35 = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(__this, NULL);
|
|
TextGenerator_GenerateText_m28C6EED85E5BB42AA40812F475D533AAF6694757(L_34, L_35, NULL);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_36;
|
|
L_36 = TextCoreHandle_get_textInfoMesh_m45D399BE1B914B8B85EC5C4879EA4FD9A6CF66A2(__this, NULL);
|
|
V_3 = L_36;
|
|
goto IL_010c;
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_37 = V_3;
|
|
return L_37;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextCoreHandle_Update_mC3E3A597AC7276BBA05E70D154FA0637CFBD11EF_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* _returnValue;
|
|
_returnValue = TextCoreHandle_Update_mC3E3A597AC7276BBA05E70D154FA0637CFBD11EF(_thisAdjusted, ___0_parms, ___1_pixelsPerPoint, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::UpdatePreferredValues(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_0 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_0, NULL);
|
|
V_0 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675((&L_4), L_2, L_3, /*hidden argument*/NULL);
|
|
(&___0_parms)->___rect_0 = L_4;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_5 = ___0_parms;
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_6 = ((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_LayoutSettings_5;
|
|
TextCoreHandle_UpdateGenerationSettingsCommon_mBDBF001A8AFE3FE6D77B5141D070230BAE3D8E43(L_5, L_6, NULL);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_7 = ((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_LayoutSettings_5;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_8;
|
|
L_8 = TextCoreHandle_get_textInfoLayout_mF74EE30CC20AB4944F2507877FAD63DA047DB5F3(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = TextGenerator_GetPreferredValues_m17A1C8F1AA7D260AB9167985429D6819D0E8D9CA(L_7, L_8, NULL);
|
|
__this->___m_PreferredSize_2 = L_9;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
TextCoreHandle_UpdatePreferredValues_mE757EB964EEB4BEE8B772610837A07EAF47661B3(_thisAdjusted, ___0_parms, method);
|
|
}
|
|
// UnityEngine.TextCore.Text.TextOverflowMode UnityEngine.UIElements.TextCoreHandle::GetTextOverflowMode(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextCoreHandle_GetTextOverflowMode_mA717EE24FFB54D9C97CEB618A83E2B4045AA9FB7 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParams, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_textParams;
|
|
int32_t L_1 = L_0.___textOverflow_15;
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 2;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_3 = ___0_textParams;
|
|
int32_t L_4 = L_3.___textOverflow_15;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_6 = ___0_textParams;
|
|
bool L_7 = L_6.___wordWrap_11;
|
|
if (L_7)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_8 = ___0_textParams;
|
|
int32_t L_9 = L_8.___overflow_17;
|
|
G_B7_0 = ((((int32_t)L_9) == ((int32_t)1))? 1 : 0);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
V_3 = (bool)G_B7_0;
|
|
bool L_10 = V_3;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 1;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::UpdateGenerationSettingsCommon(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,UnityEngine.TextCore.Text.TextGenerationSettings)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle_UpdateGenerationSettingsCommon_mBDBF001A8AFE3FE6D77B5141D070230BAE3D8E43 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_painterParams, TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* ___1_settings, 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*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextGeneratorUtilities_tAD0F329B1A5C7CC27CF63086C11FE092B43FED53_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22BE618ADF9DAFBF84F27DD4CA2D8D34F67B1103);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B6_0 = NULL;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B5_0 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B7_1 = NULL;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B9_0 = NULL;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B8_0 = NULL;
|
|
int32_t G_B10_0 = 0;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* G_B10_1 = NULL;
|
|
{
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_0 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_1 = ___0_painterParams;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_2;
|
|
L_2 = TextUtilities_GetTextSettingsFrom_mE0B53E9301202016E8086E990ADF3513D0EFC618(L_1, NULL);
|
|
NullCheck(L_0);
|
|
L_0->___textSettings_9 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_0->___textSettings_9), (void*)L_2);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_3 = ___1_settings;
|
|
NullCheck(L_3);
|
|
TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* L_4 = L_3->___textSettings_9;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_0 = L_5;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_7 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_8 = ___0_painterParams;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_9;
|
|
L_9 = TextUtilities_GetFontAsset_m0FEC35C27DDE9E9CB6C69C44A9ACF38AF78A48FF(L_8, NULL);
|
|
NullCheck(L_7);
|
|
L_7->___fontAsset_4 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_7->___fontAsset_4), (void*)L_9);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_10 = ___1_settings;
|
|
NullCheck(L_10);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_11 = L_10->___fontAsset_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_1 = L_12;
|
|
bool L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_14 = ___1_settings;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_15 = ___1_settings;
|
|
NullCheck(L_15);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_16 = L_15->___fontAsset_4;
|
|
NullCheck(L_16);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_17;
|
|
L_17 = TextAsset_get_material_m4B9C02D34426436FDB01F1963A9FDC11D75604EF_inline(L_16, NULL);
|
|
NullCheck(L_14);
|
|
L_14->___material_5 = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_14->___material_5), (void*)L_17);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_18 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_19 = ___0_painterParams;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_20 = L_19.___rect_0;
|
|
NullCheck(L_18);
|
|
L_18->___screenRect_1 = L_20;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_21 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_22 = ___0_painterParams;
|
|
String_t* L_23 = L_22.___text_1;
|
|
bool L_24;
|
|
L_24 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_23, NULL);
|
|
G_B5_0 = L_21;
|
|
if (L_24)
|
|
{
|
|
G_B6_0 = L_21;
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_25 = ___0_painterParams;
|
|
String_t* L_26 = L_25.___text_1;
|
|
String_t* L_27;
|
|
L_27 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_26, _stringLiteral22BE618ADF9DAFBF84F27DD4CA2D8D34F67B1103, NULL);
|
|
G_B7_0 = L_27;
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
G_B7_0 = _stringLiteral22BE618ADF9DAFBF84F27DD4CA2D8D34F67B1103;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
NullCheck(G_B7_1);
|
|
G_B7_1->___text_0 = G_B7_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B7_1->___text_0), (void*)G_B7_0);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_28 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_29 = ___0_painterParams;
|
|
int32_t L_30 = L_29.___fontSize_4;
|
|
G_B8_0 = L_28;
|
|
if ((((int32_t)L_30) > ((int32_t)0)))
|
|
{
|
|
G_B9_0 = L_28;
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_31 = ___1_settings;
|
|
NullCheck(L_31);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_32 = L_31->___fontAsset_4;
|
|
NullCheck(L_32);
|
|
FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 L_33;
|
|
L_33 = FontAsset_get_faceInfo_mF020EC579E3C18A6279D55D86AF1C585031B49A9(L_32, NULL);
|
|
V_2 = L_33;
|
|
int32_t L_34;
|
|
L_34 = FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB((&V_2), NULL);
|
|
G_B10_0 = L_34;
|
|
G_B10_1 = G_B8_0;
|
|
goto IL_00af;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_35 = ___0_painterParams;
|
|
int32_t L_36 = L_35.___fontSize_4;
|
|
G_B10_0 = L_36;
|
|
G_B10_1 = G_B9_0;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
NullCheck(G_B10_1);
|
|
G_B10_1->___fontSize_18 = ((float)G_B10_0);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_37 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_38 = ___0_painterParams;
|
|
int32_t L_39 = L_38.___fontStyle_8;
|
|
il2cpp_codegen_runtime_class_init_inline(TextGeneratorUtilities_tAD0F329B1A5C7CC27CF63086C11FE092B43FED53_il2cpp_TypeInfo_var);
|
|
int32_t L_40;
|
|
L_40 = TextGeneratorUtilities_LegacyStyleToNewStyle_m8E9C09A7BE7B27A4EC73ADD747BFD9A4DE7E656C(L_39, NULL);
|
|
NullCheck(L_37);
|
|
L_37->___fontStyle_8 = L_40;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_41 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_42 = ___0_painterParams;
|
|
int32_t L_43 = L_42.___anchor_10;
|
|
int32_t L_44;
|
|
L_44 = TextGeneratorUtilities_LegacyAlignmentToNewAlignment_mA16F5CB58D3C8F352CAACB8DACA5AFED59D3ED63(L_43, NULL);
|
|
NullCheck(L_41);
|
|
L_41->___textAlignment_10 = L_44;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_45 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_46 = ___0_painterParams;
|
|
bool L_47 = L_46.___wordWrap_11;
|
|
NullCheck(L_45);
|
|
L_45->___wordWrap_12 = L_47;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_48 = ___1_settings;
|
|
NullCheck(L_48);
|
|
L_48->___wordWrappingRatio_13 = (0.400000006f);
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_49 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_50 = ___0_painterParams;
|
|
bool L_51 = L_50.___richText_13;
|
|
NullCheck(L_49);
|
|
L_49->___richText_23 = L_51;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_52 = ___1_settings;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_53 = ___0_painterParams;
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
int32_t L_54;
|
|
L_54 = TextCoreHandle_GetTextOverflowMode_mA717EE24FFB54D9C97CEB618A83E2B4045AA9FB7(L_53, NULL);
|
|
NullCheck(L_52);
|
|
L_52->___overflowMode_11 = L_54;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_55 = ___1_settings;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_56 = (&(&___0_painterParams)->___letterSpacing_5);
|
|
float L_57;
|
|
L_57 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline(L_56, NULL);
|
|
NullCheck(L_55);
|
|
L_55->___characterSpacing_27 = L_57;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_58 = ___1_settings;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_59 = (&(&___0_painterParams)->___wordSpacing_6);
|
|
float L_60;
|
|
L_60 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline(L_59, NULL);
|
|
NullCheck(L_58);
|
|
L_58->___wordSpacing_28 = L_60;
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_61 = ___1_settings;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_62 = (&(&___0_painterParams)->___paragraphSpacing_7);
|
|
float L_63;
|
|
L_63 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline(L_62, NULL);
|
|
NullCheck(L_61);
|
|
L_61->___paragraphSpacing_30 = L_63;
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextCoreHandle::IsElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextCoreHandle_IsElided_mDFF269AA42996A09927C01E83091F068A9BFEB79 (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0 = __this->___m_TextInfoMesh_6;
|
|
V_0 = (bool)((((RuntimeObject*)(TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_2 = __this->___m_TextInfoMesh_6;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___characterCount_2;
|
|
V_2 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_5 = __this->___m_TextInfoMesh_6;
|
|
NullCheck(L_5);
|
|
TextElementInfoU5BU5D_tEC28C9B72883EE21AA798913497C69E179A15C4E* L_6 = L_5->___textElementInfo_10;
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_7 = __this->___m_TextInfoMesh_6;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___characterCount_2;
|
|
NullCheck(L_6);
|
|
Il2CppChar L_9 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract(L_8, 1)))))->___character_0;
|
|
V_1 = (bool)((((int32_t)L_9) == ((int32_t)((int32_t)8230)))? 1 : 0);
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
bool L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextCoreHandle_IsElided_mDFF269AA42996A09927C01E83091F068A9BFEB79_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextCoreHandle_IsElided_mDFF269AA42996A09927C01E83091F068A9BFEB79(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextCoreHandle::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextCoreHandle__cctor_mE7D47D6DF451BA7E8E92143123FDB14050B289E9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2* L_0 = (TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2*)il2cpp_codegen_object_new(TextGenerationSettings_t3E75DB1D14DF53934AF76C9ACB1CD94A344A92A2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
TextGenerationSettings__ctor_mA20608A16443434DAE9FEF0BF8BD076270FA660E(L_0, NULL);
|
|
((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_LayoutSettings_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_StaticFields*)il2cpp_codegen_static_fields_for(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var))->___s_LayoutSettings_5), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::get_MeasuredSizes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextNativeHandle::set_MeasuredSizes(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CMeasuredSizesU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::get_RoundedSizes()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CRoundedSizesU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextNativeHandle::set_RoundedSizes(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CRoundedSizesU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextNativeHandle::New()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextNativeHandle_New_m72C0860D772FB592A1998C71A79D81F779ECD474 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2));
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656* L_0 = (&(&V_0)->___textVertices_2);
|
|
il2cpp_codegen_initobj(L_0, sizeof(NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656));
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2 L_1 = V_0;
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2_il2cpp_TypeInfo_var, &L_2);
|
|
V_1 = (RuntimeObject*)L_3;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextNativeHandle::IsLegacy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextNativeHandle_IsLegacy_mE090DB23298B9A19896E64E7D25A8345CBCC5D62 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)1;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextNativeHandle_IsLegacy_mE090DB23298B9A19896E64E7D25A8345CBCC5D62_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextNativeHandle_IsLegacy_mE090DB23298B9A19896E64E7D25A8345CBCC5D62(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::GetLineHeight(System.Int32,UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_GetLineHeight_mCB567B4A0CE467F0F755E574285DB89C05957200 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
(&___1_textParams)->___wordWrapWidth_12 = (0.0f);
|
|
(&___1_textParams)->___wordWrap_11 = (bool)0;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___1_textParams;
|
|
float L_1 = ___2_textScaling;
|
|
float L_2;
|
|
L_2 = TextNativeHandle_ComputeTextHeight_mC34FDC68F1CF13407B7CE9AAD3EE2F05355BAB7F(__this, L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
float L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextNativeHandle_GetLineHeight_mCB567B4A0CE467F0F755E574285DB89C05957200_AdjustorThunk (RuntimeObject* __this, int32_t ___0_characterIndex, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, float ___2_textScaling, float ___3_pixelPerPoint, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextNativeHandle_GetLineHeight_mCB567B4A0CE467F0F755E574285DB89C05957200(_thisAdjusted, ___0_characterIndex, ___1_textParams, ___2_textScaling, ___3_pixelPerPoint, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.TextCore.Text.TextInfo UnityEngine.UIElements.TextNativeHandle::Update(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextNativeHandle_Update_m0248BEBF8EE7B9970F0108C8EF390D50F3E4EFCF (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB7D3AC16B76BA409DDD86D8333087AA56BED0F5);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* V_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(_stringLiteralCB7D3AC16B76BA409DDD86D8333087AA56BED0F5, NULL);
|
|
V_0 = (TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09*)NULL;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* TextNativeHandle_Update_m0248BEBF8EE7B9970F0108C8EF390D50F3E4EFCF_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_pixelsPerPoint, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
TextInfo_t27E58E62A7552C66D38C175AF9D22622365F5D09* _returnValue;
|
|
_returnValue = TextNativeHandle_Update_m0248BEBF8EE7B9970F0108C8EF390D50F3E4EFCF(_thisAdjusted, ___0_parms, ___1_pixelsPerPoint, method);
|
|
return _returnValue;
|
|
}
|
|
// Unity.Collections.NativeArray`1<UnityEngine.UIElements.TextVertex> UnityEngine.UIElements.TextNativeHandle::GetVertices(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 TextNativeHandle_GetVertices_m8AE5CB4E80201525F5E36B3648FE1B8670D0652A (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_IsNotNull_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m23D40EA79151C942667AB85F5F1D441CF9D4896C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_0 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1;
|
|
L_1 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_0, NULL);
|
|
V_0 = L_1;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_2 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_2, NULL);
|
|
float L_4 = L_3.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_inline(__this, NULL);
|
|
float L_6 = L_5.___x_0;
|
|
float L_7;
|
|
L_7 = fabsf(((float)il2cpp_codegen_subtract(L_4, L_6)));
|
|
if ((!(((float)L_7) < ((float)(0.00999999978f)))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_8 = (&(&___0_parms)->___rect_0);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267(L_8, NULL);
|
|
float L_10 = L_9.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_inline(__this, NULL);
|
|
float L_12 = L_11.___y_1;
|
|
float L_13;
|
|
L_13 = fabsf(((float)il2cpp_codegen_subtract(L_10, L_12)));
|
|
G_B3_0 = ((((float)L_13) < ((float)(0.00999999978f)))? 1 : 0);
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
V_3 = (bool)G_B3_0;
|
|
bool L_14 = V_3;
|
|
if (!L_14)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
L_15 = TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275_inline(__this, NULL);
|
|
V_0 = L_15;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_0;
|
|
float L_17 = L_16.___x_0;
|
|
(&___0_parms)->___wordWrapWidth_12 = L_17;
|
|
goto IL_0091;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_0;
|
|
TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720_inline(__this, L_18, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_19 = V_0;
|
|
TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF_inline(__this, L_19, NULL);
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
|
|
L_20 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_22;
|
|
memset((&L_22), 0, sizeof(L_22));
|
|
Rect__ctor_m503705FE0E4E413041E3CE7F09270489F401C675((&L_22), L_20, L_21, /*hidden argument*/NULL);
|
|
(&___0_parms)->___rect_0 = L_22;
|
|
int32_t L_23;
|
|
L_23 = TextParams_GetHashCode_mC8A715BCEEDF161F0CDF1510C352C3C72B30C4A6((&___0_parms), NULL);
|
|
V_1 = L_23;
|
|
int32_t L_24 = __this->___m_PreviousTextParamsHash_3;
|
|
int32_t L_25 = V_1;
|
|
V_4 = (bool)((((int32_t)L_24) == ((int32_t)L_25))? 1 : 0);
|
|
bool L_26 = V_4;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 L_27 = __this->___textVertices_2;
|
|
V_5 = L_27;
|
|
goto IL_00fb;
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
__this->___m_PreviousTextParamsHash_3 = L_28;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_29 = ___0_parms;
|
|
float L_30 = ___1_scaling;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_31;
|
|
L_31 = TextParams_GetTextNativeSettings_m9DB7A56B76F6076566ED602969C517C7A4CB6DC0(L_29, L_30, NULL);
|
|
V_2 = L_31;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_32 = V_2;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_33 = L_32.___font_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
Assert_IsNotNull_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m23D40EA79151C942667AB85F5F1D441CF9D4896C(L_33, Assert_IsNotNull_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m23D40EA79151C942667AB85F5F1D441CF9D4896C_RuntimeMethod_var);
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_34 = V_2;
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 L_35;
|
|
L_35 = TextNative_GetVertices_m877716FCDD7F1D2C5849487C88691A5BA2441088(L_34, NULL);
|
|
__this->___textVertices_2 = L_35;
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 L_36 = __this->___textVertices_2;
|
|
V_5 = L_36;
|
|
goto IL_00fb;
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 L_37 = V_5;
|
|
return L_37;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 TextNativeHandle_GetVertices_m8AE5CB4E80201525F5E36B3648FE1B8670D0652A_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
NativeArray_1_t8B2EB0176812FFDC7FF26382470CBFDCA595A656 _returnValue;
|
|
_returnValue = TextNativeHandle_GetVertices_m8AE5CB4E80201525F5E36B3648FE1B8670D0652A(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextNativeHandle::GetCursorPosition(UnityEngine.UIElements.CursorPositionStylePainterParameters,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_GetCursorPosition_m5630AF5161016756153882341F84325C69DD0326 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
float L_0 = ___1_scaling;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_1;
|
|
L_1 = CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049((&___0_parms), L_0, NULL);
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_2 = ___0_parms;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_3 = L_2.___rect_0;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_4 = ___0_parms;
|
|
int32_t L_5 = L_4.___cursorIndex_8;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = TextNative_GetCursorPosition_mF7B2D51841761A24623EE9DCAA354F30CB9523F4(L_1, L_3, L_5, NULL);
|
|
V_0 = L_6;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_GetCursorPosition_m5630AF5161016756153882341F84325C69DD0326_AdjustorThunk (RuntimeObject* __this, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = TextNativeHandle_GetCursorPosition_m5630AF5161016756153882341F84325C69DD0326(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::ComputeTextWidth(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_ComputeTextWidth_m2D4531ECFFE5C4EF978C446F4DC5E28BE29E9AD6 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
bool V_1 = false;
|
|
float V_2 = 0.0f;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_parms;
|
|
float L_1 = ___1_scaling;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_2;
|
|
L_2 = TextParams_GetTextNativeSettings_m9DB7A56B76F6076566ED602969C517C7A4CB6DC0(L_0, L_1, NULL);
|
|
float L_3;
|
|
L_3 = TextNative_ComputeTextWidth_mE3A73219F780DB79A4BFCEA91CA1C4DB9AF7F00F(L_2, NULL);
|
|
V_0 = L_3;
|
|
float L_4 = ___1_scaling;
|
|
if ((((float)L_4) == ((float)(1.0f))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
float L_5 = V_0;
|
|
G_B3_0 = ((((int32_t)((((float)L_5) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = V_0;
|
|
V_2 = ((float)il2cpp_codegen_add(L_7, (9.99999975E-05f)));
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
float L_8 = V_0;
|
|
V_2 = L_8;
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
float L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextNativeHandle_ComputeTextWidth_m2D4531ECFFE5C4EF978C446F4DC5E28BE29E9AD6_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextNativeHandle_ComputeTextWidth_m2D4531ECFFE5C4EF978C446F4DC5E28BE29E9AD6(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.TextNativeHandle::ComputeTextHeight(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextNativeHandle_ComputeTextHeight_mC34FDC68F1CF13407B7CE9AAD3EE2F05355BAB7F (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_parms;
|
|
float L_1 = ___1_scaling;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_2;
|
|
L_2 = TextParams_GetTextNativeSettings_m9DB7A56B76F6076566ED602969C517C7A4CB6DC0(L_0, L_1, NULL);
|
|
float L_3;
|
|
L_3 = TextNative_ComputeTextHeight_m2DB34E72014B203E83A17A7321793ED979D36AD8(L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float TextNativeHandle_ComputeTextHeight_mC34FDC68F1CF13407B7CE9AAD3EE2F05355BAB7F_AdjustorThunk (RuntimeObject* __this, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_parms, float ___1_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = TextNativeHandle_ComputeTextHeight_mC34FDC68F1CF13407B7CE9AAD3EE2F05355BAB7F(_thisAdjusted, ___0_parms, ___1_scaling, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextNativeHandle::IsElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextNativeHandle_IsElided_mE761E0BF287AA7217FE8A87F514674E1D126CA92 (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
V_0 = (bool)0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
bool L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextNativeHandle_IsElided_mE761E0BF287AA7217FE8A87F514674E1D126CA92_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextNativeHandle_IsElided_mE761E0BF287AA7217FE8A87F514674E1D126CA92(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Single UnityEngine.UIElements.TextUtilities::ComputeTextScaling(UnityEngine.Matrix4x4,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TextUtilities_ComputeTextScaling_m94A19D2387829B6A4970FDCA72D4BE08EAD8F136 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_worldMatrix, float ___1_pixelsPerPoint, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_0 = ___0_worldMatrix;
|
|
float L_1 = L_0.___m00_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_2 = ___0_worldMatrix;
|
|
float L_3 = L_2.___m10_1;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_4 = ___0_worldMatrix;
|
|
float L_5 = L_4.___m20_2;
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_0), L_1, L_3, L_5, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_6 = ___0_worldMatrix;
|
|
float L_7 = L_6.___m01_4;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_8 = ___0_worldMatrix;
|
|
float L_9 = L_8.___m11_5;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_10 = ___0_worldMatrix;
|
|
float L_11 = L_10.___m21_6;
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&V_1), L_7, L_9, L_11, NULL);
|
|
float L_12;
|
|
L_12 = Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline((&V_0), NULL);
|
|
float L_13;
|
|
L_13 = Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline((&V_1), NULL);
|
|
V_2 = ((float)(((float)il2cpp_codegen_add(L_12, L_13))/(2.0f)));
|
|
float L_14 = V_2;
|
|
float L_15 = ___1_pixelsPerPoint;
|
|
V_3 = ((float)il2cpp_codegen_multiply(L_14, L_15));
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
float L_16 = V_3;
|
|
return L_16;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextUtilities::MeasureVisualElementTextSize(UnityEngine.UIElements.VisualElement,System.String,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,UnityEngine.UIElements.ITextHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextUtilities_MeasureVisualElementTextSize_mDFC56166DDEA46A5C23F8CC55986E05FA0220A1A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, String_t* ___1_textToMeasure, float ___2_width, int32_t ___3_widthMode, float ___4_height, int32_t ___5_heightMode, RuntimeObject* ___6_textHandle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
bool V_6 = false;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
bool V_8 = false;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
bool V_13 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
V_0 = (std::numeric_limits<float>::quiet_NaN());
|
|
V_1 = (std::numeric_limits<float>::quiet_NaN());
|
|
String_t* L_0 = ___1_textToMeasure;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_ve;
|
|
bool L_2;
|
|
L_2 = TextUtilities_IsFontAssigned_mF8C7AB1EA0F4C0611A680D48F4FD7F2053FE39DB(L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_6 = (bool)G_B3_0;
|
|
bool L_3 = V_6;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
float L_4 = V_0;
|
|
float L_5 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), L_4, L_5, /*hidden argument*/NULL);
|
|
V_7 = L_6;
|
|
goto IL_0151;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = ___0_ve;
|
|
NullCheck(L_7);
|
|
float L_8;
|
|
L_8 = VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD(L_7, NULL);
|
|
V_2 = L_8;
|
|
int32_t L_9 = ___3_widthMode;
|
|
V_8 = (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0);
|
|
bool L_10 = V_8;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
float L_11 = ___2_width;
|
|
V_0 = L_11;
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = ___0_ve;
|
|
String_t* L_13 = ___1_textToMeasure;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_14;
|
|
L_14 = TextParams_MakeStyleBased_mDF20795C3A27408BAD96FB1FCF077694FFB05124(L_12, L_13, NULL);
|
|
V_9 = L_14;
|
|
(&V_9)->___wordWrap_11 = (bool)0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_15 = (&(&V_9)->___rect_0);
|
|
float L_16;
|
|
L_16 = Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB(L_15, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_17 = (&(&V_9)->___rect_0);
|
|
float L_18;
|
|
L_18 = Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49(L_17, NULL);
|
|
float L_19 = ___2_width;
|
|
float L_20 = ___4_height;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23((&L_21), L_16, L_18, L_19, L_20, /*hidden argument*/NULL);
|
|
(&V_9)->___rect_0 = L_21;
|
|
RuntimeObject* L_22 = ___6_textHandle;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_23 = V_9;
|
|
float L_24 = V_2;
|
|
NullCheck(L_22);
|
|
float L_25;
|
|
L_25 = InterfaceFuncInvoker2< float, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F, float >::Invoke(1 /* System.Single UnityEngine.UIElements.ITextHandle::ComputeTextWidth(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single) */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_22, L_23, L_24);
|
|
V_0 = L_25;
|
|
int32_t L_26 = ___3_widthMode;
|
|
V_10 = (bool)((((int32_t)L_26) == ((int32_t)2))? 1 : 0);
|
|
bool L_27 = V_10;
|
|
if (!L_27)
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
float L_28 = V_0;
|
|
float L_29 = ___2_width;
|
|
float L_30;
|
|
L_30 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_28, L_29, NULL);
|
|
V_0 = L_30;
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_31 = ___5_heightMode;
|
|
V_11 = (bool)((((int32_t)L_31) == ((int32_t)1))? 1 : 0);
|
|
bool L_32 = V_11;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
}
|
|
{
|
|
float L_33 = ___4_height;
|
|
V_1 = L_33;
|
|
goto IL_010d;
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = ___0_ve;
|
|
String_t* L_35 = ___1_textToMeasure;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_36;
|
|
L_36 = TextParams_MakeStyleBased_mDF20795C3A27408BAD96FB1FCF077694FFB05124(L_34, L_35, NULL);
|
|
V_12 = L_36;
|
|
float L_37 = V_0;
|
|
(&V_12)->___wordWrapWidth_12 = L_37;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_38 = (&(&V_12)->___rect_0);
|
|
float L_39;
|
|
L_39 = Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB(L_38, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_40 = (&(&V_12)->___rect_0);
|
|
float L_41;
|
|
L_41 = Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49(L_40, NULL);
|
|
float L_42 = ___2_width;
|
|
float L_43 = ___4_height;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_44;
|
|
memset((&L_44), 0, sizeof(L_44));
|
|
Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23((&L_44), L_39, L_41, L_42, L_43, /*hidden argument*/NULL);
|
|
(&V_12)->___rect_0 = L_44;
|
|
RuntimeObject* L_45 = ___6_textHandle;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_46 = V_12;
|
|
float L_47 = V_2;
|
|
NullCheck(L_45);
|
|
float L_48;
|
|
L_48 = InterfaceFuncInvoker2< float, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F, float >::Invoke(2 /* System.Single UnityEngine.UIElements.ITextHandle::ComputeTextHeight(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,System.Single) */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_45, L_46, L_47);
|
|
V_1 = L_48;
|
|
int32_t L_49 = ___5_heightMode;
|
|
V_13 = (bool)((((int32_t)L_49) == ((int32_t)2))? 1 : 0);
|
|
bool L_50 = V_13;
|
|
if (!L_50)
|
|
{
|
|
goto IL_010c;
|
|
}
|
|
}
|
|
{
|
|
float L_51 = V_1;
|
|
float L_52 = ___4_height;
|
|
float L_53;
|
|
L_53 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_51, L_52, NULL);
|
|
V_1 = L_53;
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
float L_54 = V_0;
|
|
float L_55 = V_2;
|
|
float L_56;
|
|
L_56 = AlignmentUtils_CeilToPixelGrid_m4A98E79C0F6956E4D814A27197271F6A281624AE(L_54, L_55, (0.0f), NULL);
|
|
V_3 = L_56;
|
|
float L_57 = V_1;
|
|
float L_58 = V_2;
|
|
float L_59;
|
|
L_59 = AlignmentUtils_CeilToPixelGrid_m4A98E79C0F6956E4D814A27197271F6A281624AE(L_57, L_58, (0.0f), NULL);
|
|
V_4 = L_59;
|
|
float L_60 = V_3;
|
|
float L_61 = V_4;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_5), L_60, L_61, NULL);
|
|
RuntimeObject* L_62 = ___6_textHandle;
|
|
float L_63 = V_0;
|
|
float L_64 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_65;
|
|
memset((&L_65), 0, sizeof(L_65));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_65), L_63, L_64, /*hidden argument*/NULL);
|
|
NullCheck(L_62);
|
|
InterfaceActionInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(7 /* System.Void UnityEngine.UIElements.ITextHandle::set_MeasuredSizes(UnityEngine.Vector2) */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_62, L_65);
|
|
RuntimeObject* L_66 = ___6_textHandle;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_67 = V_5;
|
|
NullCheck(L_66);
|
|
InterfaceActionInvoker1< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(8 /* System.Void UnityEngine.UIElements.ITextHandle::set_RoundedSizes(UnityEngine.Vector2) */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_66, L_67);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_68 = V_5;
|
|
V_7 = L_68;
|
|
goto IL_0151;
|
|
}
|
|
|
|
IL_0151:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_69 = V_7;
|
|
return L_69;
|
|
}
|
|
}
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.TextUtilities::GetFontAsset(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* TextUtilities_GetFontAsset_m0FEC35C27DDE9E9CB6C69C44A9ACF38AF78A48FF (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParam, 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;
|
|
}
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* V_0 = NULL;
|
|
bool V_1 = false;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_2 = NULL;
|
|
bool V_3 = false;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_textParam;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_1;
|
|
L_1 = TextUtilities_GetTextSettingsFrom_mE0B53E9301202016E8086E990ADF3513D0EFC618(L_0, NULL);
|
|
V_0 = L_1;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_2 = (&(&___0_textParam)->___fontDefinition_3);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_3;
|
|
L_3 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_6 = (&(&___0_textParam)->___fontDefinition_3);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_7;
|
|
L_7 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0(L_6, NULL);
|
|
V_2 = L_7;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_8 = (&(&___0_textParam)->___fontDefinition_3);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_9;
|
|
L_9 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107(L_8, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_9, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_3 = L_10;
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_12 = V_0;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_13 = (&(&___0_textParam)->___fontDefinition_3);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_14;
|
|
L_14 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107(L_13, NULL);
|
|
NullCheck(L_12);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_15;
|
|
L_15 = PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357(L_12, L_14, NULL);
|
|
V_2 = L_15;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_16 = V_0;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_17 = ___0_textParam;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_18 = L_17.___font_2;
|
|
NullCheck(L_16);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_19;
|
|
L_19 = PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357(L_16, L_18, NULL);
|
|
V_2 = L_19;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_20 = V_2;
|
|
return L_20;
|
|
}
|
|
}
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.TextUtilities::GetFontAsset(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* TextUtilities_GetFontAsset_m9FFADED783DEA40EA39D4EB833A8E4ABCC4EBE89 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, 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;
|
|
}
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* V_0 = NULL;
|
|
bool V_1 = false;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_1;
|
|
L_1 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_0, NULL);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_2;
|
|
L_2 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D(L_1, NULL);
|
|
V_2 = L_2;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_3;
|
|
L_3 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_ve;
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_8;
|
|
L_8 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D(L_7, NULL);
|
|
V_2 = L_8;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_9;
|
|
L_9 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0((&V_2), NULL);
|
|
V_3 = L_9;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_ve;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_11;
|
|
L_11 = TextUtilities_GetTextSettingsFrom_m3885FFB03C6D9DA29A08045DF3692617FC54218D(L_10, NULL);
|
|
V_0 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = ___0_ve;
|
|
NullCheck(L_12);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_13;
|
|
L_13 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_12, NULL);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_14;
|
|
L_14 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D(L_13, NULL);
|
|
V_2 = L_14;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_15;
|
|
L_15 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_16;
|
|
L_16 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_15, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_18 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = ___0_ve;
|
|
NullCheck(L_19);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_20;
|
|
L_20 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_19, NULL);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_21;
|
|
L_21 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D(L_20, NULL);
|
|
V_2 = L_21;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_22;
|
|
L_22 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107((&V_2), NULL);
|
|
NullCheck(L_18);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_23;
|
|
L_23 = PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357(L_18, L_22, NULL);
|
|
V_3 = L_23;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_24 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = ___0_ve;
|
|
NullCheck(L_25);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_26;
|
|
L_26 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_25, NULL);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_27;
|
|
L_27 = ComputedStyle_get_unityFont_m54E6172041232D304DA1B2716FEAB128830B9406(L_26, NULL);
|
|
NullCheck(L_24);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_28;
|
|
L_28 = PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357(L_24, L_27, NULL);
|
|
V_3 = L_28;
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_29 = V_3;
|
|
return L_29;
|
|
}
|
|
}
|
|
// UnityEngine.Font UnityEngine.UIElements.TextUtilities::GetFont(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* TextUtilities_GetFont_m21A5EC974BA144FB68A98629640746F09E4CD478 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParam, 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;
|
|
}
|
|
bool V_0 = false;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* V_1 = NULL;
|
|
bool V_2 = false;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* G_B6_0 = NULL;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* G_B5_0 = NULL;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* G_B7_0 = NULL;
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_0 = (&(&___0_textParam)->___fontDefinition_3);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_1;
|
|
L_1 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107(L_0, 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);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_4 = (&(&___0_textParam)->___fontDefinition_3);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_5;
|
|
L_5 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107(L_4, NULL);
|
|
V_1 = L_5;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_6 = ___0_textParam;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_7 = L_6.___font_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_7, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_2 = L_8;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_10 = ___0_textParam;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_11 = L_10.___font_2;
|
|
V_1 = L_11;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_12 = (&(&___0_textParam)->___fontDefinition_3);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_13;
|
|
L_13 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0(L_12, NULL);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_14 = L_13;
|
|
G_B5_0 = L_14;
|
|
if (L_14)
|
|
{
|
|
G_B6_0 = L_14;
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((Font_tC95270EA3198038970422D78B74A7F2E218A96B6*)(NULL));
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_15;
|
|
L_15 = FontAsset_get_sourceFontFile_m6B0E805BD1B7712F0B5135D157E96F3F40314830(G_B6_0, NULL);
|
|
G_B7_0 = L_15;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
V_1 = G_B7_0;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_16 = V_1;
|
|
return L_16;
|
|
}
|
|
}
|
|
// UnityEngine.Font UnityEngine.UIElements.TextUtilities::GetFont(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* TextUtilities_GetFont_mE61706BE8FCD6358404E7251B48FD2E46F13F1DF (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, 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;
|
|
}
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* V_3 = NULL;
|
|
bool V_4 = false;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* G_B6_0 = NULL;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* G_B5_0 = NULL;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* G_B7_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_1;
|
|
L_1 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_0, NULL);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C L_2 = (*(ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C*)L_1);
|
|
V_0 = L_2;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_3;
|
|
L_3 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D((&V_0), NULL);
|
|
V_2 = L_3;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_4;
|
|
L_4 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107((&V_2), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_7;
|
|
L_7 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D((&V_0), NULL);
|
|
V_2 = L_7;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_8;
|
|
L_8 = FontDefinition_get_font_mFD2206D2A904040F2E279365ACBEE4FC4FAE4107((&V_2), NULL);
|
|
V_3 = L_8;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_9;
|
|
L_9 = ComputedStyle_get_unityFont_m54E6172041232D304DA1B2716FEAB128830B9406((&V_0), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_10;
|
|
L_10 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_9, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_4 = L_10;
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_12;
|
|
L_12 = ComputedStyle_get_unityFont_m54E6172041232D304DA1B2716FEAB128830B9406((&V_0), NULL);
|
|
V_3 = L_12;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_13;
|
|
L_13 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D((&V_0), NULL);
|
|
V_2 = L_13;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_14;
|
|
L_14 = FontDefinition_get_fontAsset_m4CF3D4E54557EDF6B688CF40307689F748386EA0((&V_2), NULL);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_15 = L_14;
|
|
G_B5_0 = L_15;
|
|
if (L_15)
|
|
{
|
|
G_B6_0 = L_15;
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((Font_tC95270EA3198038970422D78B74A7F2E218A96B6*)(NULL));
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_16;
|
|
L_16 = FontAsset_get_sourceFontFile_m6B0E805BD1B7712F0B5135D157E96F3F40314830(G_B6_0, NULL);
|
|
G_B7_0 = L_16;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_3 = G_B7_0;
|
|
goto IL_0073;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_17 = V_3;
|
|
return L_17;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextUtilities::IsFontAssigned(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextUtilities_IsFontAssigned_mF8C7AB1EA0F4C0611A680D48F4FD7F2053FE39DB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, 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;
|
|
}
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_1;
|
|
L_1 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_0, NULL);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_2;
|
|
L_2 = ComputedStyle_get_unityFont_m54E6172041232D304DA1B2716FEAB128830B9406(L_1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_ve;
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_6;
|
|
L_6 = ComputedStyle_get_unityFontDefinition_mBD060AAC591243B959A2F0E323138C3D6B573A8D(L_5, NULL);
|
|
V_0 = L_6;
|
|
bool L_7;
|
|
L_7 = FontDefinition_IsEmpty_m0AC5C77086840D6B175110062E3F23E8698C80BD((&V_0), NULL);
|
|
G_B3_0 = ((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
bool L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextUtilities::IsFontAssigned(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextUtilities_IsFontAssigned_m0C55FE336283BAE17544C4028FD4E00CF29A9375 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParams, 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;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_textParams;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_1 = L_0.___font_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_3 = (&(&___0_textParams)->___fontDefinition_3);
|
|
bool L_4;
|
|
L_4 = FontDefinition_IsEmpty_m0AC5C77086840D6B175110062E3F23E8698C80BD(L_3, NULL);
|
|
G_B3_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.TextUtilities::GetTextSettingsFrom(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* TextUtilities_GetTextSettingsFrom_m3885FFB03C6D9DA29A08045DF3692617FC54218D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_0 = NULL;
|
|
bool V_1 = false;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* V_2 = NULL;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* G_B3_0 = NULL;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* G_B2_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_0, NULL);
|
|
V_0 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_1, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* L_5;
|
|
L_5 = RuntimePanel_get_panelSettings_mB9679B0ECC5D26BF090043809C8099F561325C8C_inline(L_4, NULL);
|
|
NullCheck(L_5);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_6 = L_5->___textSettings_28;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_7 = L_6;
|
|
G_B2_0 = L_7;
|
|
if (L_7)
|
|
{
|
|
G_B3_0 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_8;
|
|
L_8 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
G_B3_0 = L_8;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_2 = G_B3_0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_9;
|
|
L_9 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
V_2 = L_9;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.TextUtilities::GetTextSettingsFrom(UnityEngine.UIElements.MeshGenerationContextUtils/TextParams)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* TextUtilities_GetTextSettingsFrom_mE0B53E9301202016E8086E990ADF3513D0EFC618 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___0_textParam, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* V_0 = NULL;
|
|
bool V_1 = false;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* V_2 = NULL;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* G_B3_0 = NULL;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* G_B2_0 = NULL;
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_0 = ___0_textParam;
|
|
RuntimeObject* L_1 = L_0.___panel_18;
|
|
V_0 = ((RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)IsInstClass((RuntimeObject*)L_1, RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346_il2cpp_TypeInfo_var));
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_2 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* L_5;
|
|
L_5 = RuntimePanel_get_panelSettings_mB9679B0ECC5D26BF090043809C8099F561325C8C_inline(L_4, NULL);
|
|
NullCheck(L_5);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_6 = L_5->___textSettings_28;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_7 = L_6;
|
|
G_B2_0 = L_7;
|
|
if (L_7)
|
|
{
|
|
G_B3_0 = L_7;
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_8;
|
|
L_8 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
G_B3_0 = L_8;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_2 = G_B3_0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_9;
|
|
L_9 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
V_2 = L_9;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.UIR.TextCoreSettings UnityEngine.UIElements.TextUtilities::GetTextCoreSettingsForElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 TextUtilities_GetTextCoreSettingsForElement_mC7C0F92E72317F5F875F8A77E746D4FF8E146943 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
float V_5 = 0.0f;
|
|
float V_6 = 0.0f;
|
|
float V_7 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
bool V_11 = false;
|
|
TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
bool V_16 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_1;
|
|
L_1 = TextUtilities_GetFontAsset_m9FFADED783DEA40EA39D4EB833A8E4ABCC4EBE89(L_0, NULL);
|
|
V_0 = L_1;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_2, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_11 = L_3;
|
|
bool L_4 = V_11;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_12), sizeof(TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115));
|
|
TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 L_5 = V_12;
|
|
V_13 = L_5;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_ve;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(L_6, NULL);
|
|
V_1 = L_7;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_ve;
|
|
NullCheck(L_8);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_9;
|
|
L_9 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_8, NULL);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C L_10 = (*(ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C*)L_9);
|
|
V_2 = L_10;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = FontAsset_get_atlasPadding_m251A35FB5F499EE66CC2E2150CBEDB2C8C5D5581(L_11, NULL);
|
|
V_3 = ((float)((1.0f)/((float)L_12)));
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
FaceInfo_t12F0319E555A62CBA1D9E51A16C7963393932756 L_14;
|
|
L_14 = FontAsset_get_faceInfo_mF020EC579E3C18A6279D55D86AF1C585031B49A9(L_13, NULL);
|
|
V_14 = L_14;
|
|
int32_t L_15;
|
|
L_15 = FaceInfo_get_pointSize_m7EF7429A4725AB715931A220F6BB498C3D6BF7CB((&V_14), NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = ___0_ve;
|
|
NullCheck(L_16);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_17;
|
|
L_17 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_16, NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_18;
|
|
L_18 = ComputedStyle_get_fontSize_m8EC7665FA467E17E3FF44A3A3AA61B1BB1D79272(L_17, NULL);
|
|
V_15 = L_18;
|
|
float L_19;
|
|
L_19 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&V_15), NULL);
|
|
V_4 = ((float)(((float)L_15)/L_19));
|
|
float L_20 = V_3;
|
|
float L_21 = V_4;
|
|
V_5 = ((float)il2cpp_codegen_multiply(L_20, L_21));
|
|
RuntimeObject* L_22 = V_1;
|
|
NullCheck(L_22);
|
|
float L_23;
|
|
L_23 = InterfaceFuncInvoker0< float >::Invoke(40 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_unityTextOutlineWidth() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_22);
|
|
float L_24 = V_5;
|
|
float L_25;
|
|
L_25 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_multiply(L_23, L_24)), NULL);
|
|
V_6 = L_25;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_26;
|
|
L_26 = ComputedStyle_get_textShadow_m74DC8025A89CDA100956D9B97FDC67BCDAC0192C((&V_2), NULL);
|
|
float L_27 = L_26.___blurRadius_1;
|
|
float L_28 = V_5;
|
|
float L_29;
|
|
L_29 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_multiply(L_27, L_28)), NULL);
|
|
V_7 = L_29;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_30;
|
|
L_30 = ComputedStyle_get_textShadow_m74DC8025A89CDA100956D9B97FDC67BCDAC0192C((&V_2), NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_31 = L_30.___offset_0;
|
|
float L_32 = V_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_33;
|
|
L_33 = Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline(L_31, L_32, NULL);
|
|
V_8 = L_33;
|
|
RuntimeObject* L_34 = V_1;
|
|
NullCheck(L_34);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_35;
|
|
L_35 = InterfaceFuncInvoker0< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(14 /* UnityEngine.Color UnityEngine.UIElements.IResolvedStyle::get_color() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_34);
|
|
V_9 = L_35;
|
|
RuntimeObject* L_36 = V_1;
|
|
NullCheck(L_36);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_37;
|
|
L_37 = InterfaceFuncInvoker0< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(39 /* UnityEngine.Color UnityEngine.UIElements.IResolvedStyle::get_unityTextOutlineColor() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_36);
|
|
V_10 = L_37;
|
|
float L_38 = V_6;
|
|
V_16 = (bool)((((float)L_38) < ((float)(1.0E-30f)))? 1 : 0);
|
|
bool L_39 = V_16;
|
|
if (!L_39)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
(&V_10)->___a_3 = (0.0f);
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
il2cpp_codegen_initobj((&V_12), sizeof(TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115));
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_40 = V_9;
|
|
(&V_12)->___faceColor_0 = L_40;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_41 = V_10;
|
|
(&V_12)->___outlineColor_1 = L_41;
|
|
float L_42 = V_6;
|
|
(&V_12)->___outlineWidth_2 = L_42;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_43;
|
|
L_43 = ComputedStyle_get_textShadow_m74DC8025A89CDA100956D9B97FDC67BCDAC0192C((&V_2), NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_44 = L_43.___color_2;
|
|
(&V_12)->___underlayColor_3 = L_44;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_45 = V_8;
|
|
(&V_12)->___underlayOffset_4 = L_45;
|
|
float L_46 = V_7;
|
|
(&V_12)->___underlaySoftness_5 = L_46;
|
|
TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 L_47 = V_12;
|
|
V_13 = L_47;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
TextCoreSettings_t3D724CD0811298B5AB1EA2041CE799CC25CDD115 L_48 = V_13;
|
|
return L_48;
|
|
}
|
|
}
|
|
#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
|
|
// UnityEngine.UIElements.PanelTextSettings UnityEngine.UIElements.PanelTextSettings::get_defaultPanelTextSettings()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917 (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*)&PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScriptableObject_CreateInstance_TisPanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_mB0E638882BD4ADB8F3290D76B9667580ADB49C8D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* V_2 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_0 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultPanelTextSettings_22;
|
|
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);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_3 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultPanelTextSettings_22;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_3, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_6;
|
|
L_6 = ScriptableObject_CreateInstance_TisPanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_mB0E638882BD4ADB8F3290D76B9667580ADB49C8D(ScriptableObject_CreateInstance_TisPanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_mB0E638882BD4ADB8F3290D76B9667580ADB49C8D_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultPanelTextSettings_22 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultPanelTextSettings_22), (void*)L_6);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_7 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultPanelTextSettings_22;
|
|
V_2 = L_7;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PanelTextSettings::UpdateLocalizationFontAsset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelTextSettings_UpdateLocalizationFontAsset_mF4938F936219E496AB4D693AFF2B0E7AB511B95C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mDF841125BC4100E914A28DF14F2A99A5777E2491_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mF10E35CFD3C75490710E375C2C75DB11438963D5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FontAsset_t61A6446D934E582651044E33D250EA8D306AB958_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m654F4B0CF3BAA9A130BC72017949E6B5DA07AD86_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15A223FD401F3CCCB22ED9FFAD0869EB521EC568);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral276B1523C79013387CC8601AAF5DC4C728DEF934);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68044815AF18A23457D0D723903A851D41533C5A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral744A0300EE7C0B6AA25DD9A668BD72E72B038C8B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral856C4A4F4F146CBF3551317F2B39798566DADDEF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A9F79F0235C4E620FEDB9E09420146084B1D60F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB3DE6D007DE8D68C2DB80856E4240EECF2AB7DA6);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* V_1 = NULL;
|
|
String_t* V_2 = NULL;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_3 = NULL;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_4 = NULL;
|
|
{
|
|
V_0 = _stringLiteral15A223FD401F3CCCB22ED9FFAD0869EB521EC568;
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_0 = (Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3*)il2cpp_codegen_object_new(Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Dictionary_2__ctor_mDF841125BC4100E914A28DF14F2A99A5777E2491(L_0, Dictionary_2__ctor_mDF841125BC4100E914A28DF14F2A99A5777E2491_RuntimeMethod_var);
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_1 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var);
|
|
String_t* L_2 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_3 = V_0;
|
|
String_t* L_4;
|
|
L_4 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral9A9F79F0235C4E620FEDB9E09420146084B1D60F, L_3, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
|
|
String_t* L_5;
|
|
L_5 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_2, L_4, NULL);
|
|
NullCheck(L_1);
|
|
Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488(L_1, ((int32_t)10), L_5, Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_6 = L_1;
|
|
String_t* L_7 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_8 = V_0;
|
|
String_t* L_9;
|
|
L_9 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral744A0300EE7C0B6AA25DD9A668BD72E72B038C8B, L_8, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
String_t* L_10;
|
|
L_10 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_7, L_9, NULL);
|
|
NullCheck(L_6);
|
|
Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488(L_6, ((int32_t)22), L_10, Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_11 = L_6;
|
|
String_t* L_12 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_13 = V_0;
|
|
String_t* L_14;
|
|
L_14 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral276B1523C79013387CC8601AAF5DC4C728DEF934, L_13, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
String_t* L_15;
|
|
L_15 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_12, L_14, NULL);
|
|
NullCheck(L_11);
|
|
Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488(L_11, ((int32_t)40), L_15, Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_16 = L_11;
|
|
String_t* L_17 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_18 = V_0;
|
|
String_t* L_19;
|
|
L_19 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral856C4A4F4F146CBF3551317F2B39798566DADDEF, L_18, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
String_t* L_20;
|
|
L_20 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_17, L_19, NULL);
|
|
NullCheck(L_16);
|
|
Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488(L_16, ((int32_t)41), L_20, Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_21 = L_16;
|
|
String_t* L_22 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_23 = V_0;
|
|
String_t* L_24;
|
|
L_24 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral68044815AF18A23457D0D723903A851D41533C5A, L_23, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
String_t* L_25;
|
|
L_25 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_22, L_24, NULL);
|
|
NullCheck(L_21);
|
|
Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488(L_21, ((int32_t)23), L_25, Dictionary_2_Add_mA0377D6C184256EB1E81773FA901F280599B0488_RuntimeMethod_var);
|
|
V_1 = L_21;
|
|
String_t* L_26 = ((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0;
|
|
String_t* L_27 = V_0;
|
|
String_t* L_28;
|
|
L_28 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralB3DE6D007DE8D68C2DB80856E4240EECF2AB7DA6, L_27, _stringLiteral361CFFFF73F96846F09A31772D20559EA15E4135, NULL);
|
|
String_t* L_29;
|
|
L_29 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_26, L_28, NULL);
|
|
V_2 = L_29;
|
|
il2cpp_codegen_runtime_class_init_inline(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24* L_30 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___EditorGUIUtilityLoad_23;
|
|
Dictionary_2_t6C6EC215760B1C042E8B9DB7E01E35016E524ED3* L_31 = V_1;
|
|
Func_1_t802694F4E6C73B59DA47B1BD837ED5704CA76FAE* L_32 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___GetCurrentLanguage_24;
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = Func_1_Invoke_mB8D6AF9F4703A3D9F6B0292E7BB846B4F111B105_inline(L_32, NULL);
|
|
NullCheck(L_31);
|
|
String_t* L_34;
|
|
L_34 = Dictionary_2_get_Item_mF10E35CFD3C75490710E375C2C75DB11438963D5(L_31, L_33, Dictionary_2_get_Item_mF10E35CFD3C75490710E375C2C75DB11438963D5_RuntimeMethod_var);
|
|
NullCheck(L_30);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_35;
|
|
L_35 = Func_2_Invoke_mDC09341455141484548A3FBCA37973E85AC23EB5_inline(L_30, L_34, NULL);
|
|
V_3 = ((FontAsset_t61A6446D934E582651044E33D250EA8D306AB958*)IsInstClass((RuntimeObject*)L_35, FontAsset_t61A6446D934E582651044E33D250EA8D306AB958_il2cpp_TypeInfo_var));
|
|
Func_2_tC8EC955FF0F5EC208D934D59B296F28BC8B07D24* L_36 = ((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___EditorGUIUtilityLoad_23;
|
|
String_t* L_37 = V_2;
|
|
NullCheck(L_36);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_38;
|
|
L_38 = Func_2_Invoke_mDC09341455141484548A3FBCA37973E85AC23EB5_inline(L_36, L_37, NULL);
|
|
V_4 = ((FontAsset_t61A6446D934E582651044E33D250EA8D306AB958*)IsInstClass((RuntimeObject*)L_38, FontAsset_t61A6446D934E582651044E33D250EA8D306AB958_il2cpp_TypeInfo_var));
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_39;
|
|
L_39 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
NullCheck(L_39);
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* L_40;
|
|
L_40 = TextSettings_get_fallbackFontAssets_m332526E834C994425141A58C968FD40320573F98_inline(L_39, NULL);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_41 = V_3;
|
|
NullCheck(L_40);
|
|
List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9(L_40, 0, L_41, List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9_RuntimeMethod_var);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_42;
|
|
L_42 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
NullCheck(L_42);
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* L_43;
|
|
L_43 = TextSettings_get_fallbackFontAssets_m332526E834C994425141A58C968FD40320573F98_inline(L_42, NULL);
|
|
PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* L_44;
|
|
L_44 = PanelTextSettings_get_defaultPanelTextSettings_mD2F61A75913B2AC81C274DDF300EF6EF36BA8917(NULL);
|
|
NullCheck(L_44);
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* L_45;
|
|
L_45 = TextSettings_get_fallbackFontAssets_m332526E834C994425141A58C968FD40320573F98_inline(L_44, NULL);
|
|
NullCheck(L_45);
|
|
int32_t L_46;
|
|
L_46 = List_1_get_Count_m654F4B0CF3BAA9A130BC72017949E6B5DA07AD86_inline(L_45, List_1_get_Count_m654F4B0CF3BAA9A130BC72017949E6B5DA07AD86_RuntimeMethod_var);
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_47 = V_4;
|
|
NullCheck(L_43);
|
|
List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9(L_43, ((int32_t)il2cpp_codegen_subtract(L_46, 1)), L_47, List_1_set_Item_m2E091B927CB54B2AF7D38354749A9615FEDB20A9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.TextCore.Text.FontAsset UnityEngine.UIElements.PanelTextSettings::GetCachedFontAsset(UnityEngine.Font)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* PanelTextSettings_GetCachedFontAsset_m670BF041E517A0B004E4745FBF1482AFEC55F357 (PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* __this, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___0_font, const RuntimeMethod* method)
|
|
{
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* V_0 = NULL;
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_0 = ___0_font;
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_1;
|
|
L_1 = TextSettings_GetCachedFontAssetInternal_m9308E0DDEF8F6D8ACA17DAADB43745C860788202(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
FontAsset_t61A6446D934E582651044E33D250EA8D306AB958* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PanelTextSettings::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelTextSettings__ctor_m9A5B7C60628A7406C51875BA109DD48B8ECC5B60 (PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextSettings__ctor_m860D28B10258792A195E1C6391479E16D04CA8BF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PanelTextSettings::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PanelTextSettings__cctor_m0CA354D178FED0D51D0E65C3BCE59984BAFA3B28 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B5DC9B62D761FE402C4CC89CA920F871B7941FF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultEditorPanelTextSettingPath_25 = _stringLiteral2B5DC9B62D761FE402C4CC89CA920F871B7941FF;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_StaticFields*)il2cpp_codegen_static_fields_for(PanelTextSettings_tB4960351E6865BC34421430949C4CA68E7425F25_il2cpp_TypeInfo_var))->___s_DefaultEditorPanelTextSettingPath_25), (void*)_stringLiteral2B5DC9B62D761FE402C4CC89CA920F871B7941FF);
|
|
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
|
|
// System.Void UnityEngine.UIElements.PointerCaptureOutEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureOutEvent__ctor_mC79EDEB45F123A653F15B8FEC0B1912D76E7E6FC (PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1__ctor_m9DEF773868286ECFB7BA390DB5DC6136639BC5ED_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerCaptureEventBase_1__ctor_m9DEF773868286ECFB7BA390DB5DC6136639BC5ED(__this, PointerCaptureEventBase_1__ctor_m9DEF773868286ECFB7BA390DB5DC6136639BC5ED_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
|
|
// System.Void UnityEngine.UIElements.PointerCaptureEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureEvent__ctor_mBAA959C48B62363DB6A3927D6512E00ED0C7BC81 (PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1__ctor_m919C773A68103FCC4A812EB1295FE2D7C235B82B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerCaptureEventBase_1__ctor_m919C773A68103FCC4A812EB1295FE2D7C235B82B(__this, PointerCaptureEventBase_1__ctor_m919C773A68103FCC4A812EB1295FE2D7C235B82B_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
|
|
// System.Void UnityEngine.UIElements.MouseCaptureOutEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureOutEvent__ctor_m9457FBC71E65D1AEDAB17D94A555D4E06BEAC92A (MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseCaptureEventBase_1__ctor_m964B5FA5C550017E062DE854397DDC526287CFE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseCaptureEventBase_1__ctor_m964B5FA5C550017E062DE854397DDC526287CFE8(__this, MouseCaptureEventBase_1__ctor_m964B5FA5C550017E062DE854397DDC526287CFE8_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
|
|
// System.Void UnityEngine.UIElements.MouseCaptureEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureEvent__ctor_m52F428A57D8C099E50A22C128C2565B219CDBCF4 (MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseCaptureEventBase_1__ctor_m1E467FAE9ABD4656623BECDC96A8341F02C0D768_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseCaptureEventBase_1__ctor_m1E467FAE9ABD4656623BECDC96A8341F02C0D768(__this, MouseCaptureEventBase_1__ctor_m1E467FAE9ABD4656623BECDC96A8341F02C0D768_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
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ElementUnderPointer::GetTopElementUnderPointer(System.Int32,UnityEngine.Vector2&,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ElementUnderPointer_GetTopElementUnderPointer_mF41A7062945C3EC0DCDE56BA518E7F37130F0932 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, int32_t ___0_pointerId, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* ___1_pickPosition, bool* ___2_isTemporary, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_0 = ___1_pickPosition;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_1 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_2 = ___0_pointerId;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)L_0 = L_4;
|
|
bool* L_5 = ___2_isTemporary;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = __this->___m_IsPickingPointerTemporaries_5;
|
|
int32_t L_7 = ___0_pointerId;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
uint8_t L_9 = (uint8_t)(L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
*((int8_t*)L_5) = (int8_t)L_9;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_10 = __this->___m_PendingTopElementUnderPointer_0;
|
|
int32_t L_11 = ___0_pointerId;
|
|
NullCheck(L_10);
|
|
int32_t L_12 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
V_0 = L_13;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_0;
|
|
return L_14;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ElementUnderPointer::GetTopElementUnderPointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ElementUnderPointer_GetTopElementUnderPointer_mA613149843E39437AC5B65B65BD969CECC6BEFDD (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
{
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_0 = __this->___m_PendingTopElementUnderPointer_0;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::SetElementUnderPointer(UnityEngine.UIElements.VisualElement,System.Int32,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_SetElementUnderPointer_mB98D02429317EDFDC06390700EFA5B68BBF4375D (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_newElementUnderPointer, int32_t ___1_pointerId, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_pointerPos, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
int32_t L_0 = ___1_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0), NULL);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = __this->___m_TopElementUnderPointer_1;
|
|
int32_t L_2 = ___1_pointerId;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
V_0 = L_4;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___m_IsPickingPointerTemporaries_5;
|
|
int32_t L_6 = ___1_pointerId;
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (bool)0);
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_7 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_8 = ___1_pointerId;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = ___2_pointerPos;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_newElementUnderPointer;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_10) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_11))? 1 : 0);
|
|
bool L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_13 = __this->___m_PendingTopElementUnderPointer_0;
|
|
int32_t L_14 = ___1_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = ___0_newElementUnderPointer;
|
|
NullCheck(L_13);
|
|
ArrayElementTypeCheck (L_13, L_15);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_15);
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_16 = __this->___m_TriggerPointerEvent_2;
|
|
int32_t L_17 = ___1_pointerId;
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, NULL);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject*)NULL);
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_18 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_19 = ___1_pointerId;
|
|
NullCheck(L_18);
|
|
ArrayElementTypeCheck (L_18, NULL);
|
|
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ElementUnderPointer::GetEventPointerPosition(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ElementUnderPointer_GetEventPointerPosition_m5C142E8672A230E5325DAB8FC24D4001BDD00C48 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_triggerEvent;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_1 = V_0;
|
|
V_2 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
|
|
L_4 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_3);
|
|
float L_5 = L_4.___x_2;
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7;
|
|
L_7 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_6);
|
|
float L_8 = L_7.___y_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_9), L_5, L_8, /*hidden argument*/NULL);
|
|
V_3 = L_9;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_triggerEvent;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_11 = V_1;
|
|
V_4 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = InterfaceFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(1 /* UnityEngine.Vector2 UnityEngine.UIElements.IMouseEvent::get_mousePosition() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_13);
|
|
V_3 = L_14;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
memset((&L_15), 0, sizeof(L_15));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_15), (-(std::numeric_limits<float>::max)()), (-(std::numeric_limits<float>::max)()), /*hidden argument*/NULL);
|
|
V_3 = L_15;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_3;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::SetTemporaryElementUnderPointer(UnityEngine.UIElements.VisualElement,System.Int32,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_SetTemporaryElementUnderPointer_m49382F583477DEA8EF21E9309E9CBA95B8D0E393 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_newElementUnderPointer, int32_t ___1_pointerId, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_newElementUnderPointer;
|
|
int32_t L_1 = ___1_pointerId;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___2_triggerEvent;
|
|
ElementUnderPointer_SetElementUnderPointer_m13D842D6ED9BE1595D40EFA0B043C13A8D36BF21(__this, L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::SetElementUnderPointer(UnityEngine.UIElements.VisualElement,System.Int32,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_SetElementUnderPointer_mB4BC9ED0BA9B2E0E5F2617179942C645A50802A3 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_newElementUnderPointer, int32_t ___1_pointerId, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_newElementUnderPointer;
|
|
int32_t L_1 = ___1_pointerId;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___2_triggerEvent;
|
|
ElementUnderPointer_SetElementUnderPointer_m13D842D6ED9BE1595D40EFA0B043C13A8D36BF21(__this, L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::SetElementUnderPointer(UnityEngine.UIElements.VisualElement,System.Int32,UnityEngine.UIElements.EventBase,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_SetElementUnderPointer_m13D842D6ED9BE1595D40EFA0B043C13A8D36BF21 (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_newElementUnderPointer, int32_t ___1_pointerId, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___2_triggerEvent, bool ___3_temporary, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
int32_t L_0 = ___1_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0), NULL);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___m_IsPickingPointerTemporaries_5;
|
|
int32_t L_2 = ___1_pointerId;
|
|
bool L_3 = ___3_temporary;
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_2), (bool)L_3);
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_4 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_5 = ___1_pointerId;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___2_triggerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = ElementUnderPointer_GetEventPointerPosition_m5C142E8672A230E5325DAB8FC24D4001BDD00C48(__this, L_6, NULL);
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_7);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_8 = __this->___m_TopElementUnderPointer_1;
|
|
int32_t L_9 = ___1_pointerId;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_0 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = ___0_newElementUnderPointer;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_12) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13))? 1 : 0);
|
|
bool L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_15 = __this->___m_PendingTopElementUnderPointer_0;
|
|
int32_t L_16 = ___1_pointerId;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = ___0_newElementUnderPointer;
|
|
NullCheck(L_15);
|
|
ArrayElementTypeCheck (L_15, L_17);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_17);
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_18 = __this->___m_TriggerPointerEvent_2;
|
|
int32_t L_19 = ___1_pointerId;
|
|
NullCheck(L_18);
|
|
int32_t L_20 = L_19;
|
|
RuntimeObject* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
if (L_21)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___2_triggerEvent;
|
|
G_B5_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_22, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
V_2 = (bool)G_B5_0;
|
|
bool L_23 = V_2;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_24 = __this->___m_TriggerPointerEvent_2;
|
|
int32_t L_25 = ___1_pointerId;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26 = ___2_triggerEvent;
|
|
NullCheck(L_24);
|
|
ArrayElementTypeCheck (L_24, ((RuntimeObject*)IsInst((RuntimeObject*)L_26, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var)));
|
|
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_26, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_27 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_28 = ___1_pointerId;
|
|
NullCheck(L_27);
|
|
int32_t L_29 = L_28;
|
|
RuntimeObject* L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
if (L_30)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = ___2_triggerEvent;
|
|
G_B10_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_31, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_3 = (bool)G_B10_0;
|
|
bool L_32 = V_3;
|
|
if (!L_32)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_33 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_34 = ___1_pointerId;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = ___2_triggerEvent;
|
|
NullCheck(L_33);
|
|
ArrayElementTypeCheck (L_33, ((RuntimeObject*)IsInst((RuntimeObject*)L_35, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var)));
|
|
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_35, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var)));
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::CommitElementUnderPointers(UnityEngine.UIElements.EventDispatcher,UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer_CommitElementUnderPointers_mE705AEAC499950F20990D8415745AB90DF9231CA (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___0_dispatcher, int32_t ___1_contextType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m1A2720F11AB0D624809678ADE4E6D8C250E43741_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_15 = NULL;
|
|
bool V_16 = false;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 V_17;
|
|
memset((&V_17), 0, sizeof(V_17));
|
|
bool V_18 = false;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_20 = NULL;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 V_23;
|
|
memset((&V_23), 0, sizeof(V_23));
|
|
bool V_24 = false;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 V_25;
|
|
memset((&V_25), 0, sizeof(V_25));
|
|
bool V_26 = false;
|
|
bool V_27 = false;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B24_0 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B39_0 = 0;
|
|
int32_t G_B47_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_034a;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_0 = __this->___m_TriggerPointerEvent_2;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_1 = L_3;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_4 = __this->___m_TopElementUnderPointer_1;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_2 = L_7;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_8 = __this->___m_PendingTopElementUnderPointer_0;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_3 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_2;
|
|
V_5 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_12) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13))? 1 : 0);
|
|
bool L_14 = V_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0095;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_1;
|
|
V_6 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_16 = V_6;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_1;
|
|
NullCheck(L_17);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18;
|
|
L_18 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_17);
|
|
V_7 = L_18;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_19 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_20 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21 = V_7;
|
|
float L_22 = L_21.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_23 = V_7;
|
|
float L_24 = L_23.___y_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25;
|
|
memset((&L_25), 0, sizeof(L_25));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_25), L_22, L_24, /*hidden argument*/NULL);
|
|
NullCheck(L_19);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_25);
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_26 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_27 = V_0;
|
|
NullCheck(L_26);
|
|
int32_t L_28 = L_27;
|
|
RuntimeObject* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
|
|
V_8 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_29) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_30 = V_8;
|
|
if (!L_30)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_31 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_32 = V_0;
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_33 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_34 = V_0;
|
|
NullCheck(L_33);
|
|
int32_t L_35 = L_34;
|
|
RuntimeObject* L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
|
|
NullCheck(L_36);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_37;
|
|
L_37 = InterfaceFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(1 /* UnityEngine.Vector2 UnityEngine.UIElements.IMouseEvent::get_mousePosition() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_36);
|
|
NullCheck(L_31);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_37);
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
goto IL_0346;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_38 = __this->___m_TopElementUnderPointer_1;
|
|
int32_t L_39 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_40 = V_3;
|
|
NullCheck(L_38);
|
|
ArrayElementTypeCheck (L_38, L_40);
|
|
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_40);
|
|
RuntimeObject* L_41 = V_1;
|
|
if (L_41)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_42 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_43 = V_0;
|
|
NullCheck(L_42);
|
|
int32_t L_44 = L_43;
|
|
RuntimeObject* L_45 = (L_42)->GetAt(static_cast<il2cpp_array_size_t>(L_44));
|
|
G_B10_0 = ((((RuntimeObject*)(RuntimeObject*)L_45) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_00af;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
V_9 = (bool)G_B10_0;
|
|
bool L_46 = V_9;
|
|
if (!L_46)
|
|
{
|
|
goto IL_0127;
|
|
}
|
|
}
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_47 = ___0_dispatcher;
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9((&V_10), L_47, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0117:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5((&V_10), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
int32_t L_48 = V_0;
|
|
int32_t L_49 = ___1_contextType;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_50;
|
|
L_50 = PointerDeviceState_GetPointerPosition_m4F2F8719AB146901C9C64730F74B9EEF916E8A77(L_48, L_49, NULL);
|
|
V_11 = L_50;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_52 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_53 = V_11;
|
|
int32_t L_54 = V_0;
|
|
PointerEventsHelper_SendOverOut_m8EF7035D3995A3342E93DBFCFEB53159D2E05FF9(L_51, L_52, (RuntimeObject*)NULL, L_53, L_54, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_55 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_56 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_57 = V_11;
|
|
int32_t L_58 = V_0;
|
|
PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B(L_55, L_56, (RuntimeObject*)NULL, L_57, L_58, PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B_RuntimeMethod_var);
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_59 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_60 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_61 = V_11;
|
|
NullCheck(L_59);
|
|
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(L_60), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_61);
|
|
int32_t L_62 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_63 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_12 = (bool)((((int32_t)L_62) == ((int32_t)L_63))? 1 : 0);
|
|
bool L_64 = V_12;
|
|
if (!L_64)
|
|
{
|
|
goto IL_0114_1;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_65 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_66 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_67 = V_11;
|
|
MouseEventsHelper_SendMouseOverMouseOut_mC53497D84135203791027DAD5CFB68F7D994E3F0(L_65, L_66, (RuntimeObject*)NULL, L_67, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_68 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_69 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_70 = V_11;
|
|
MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6(L_68, L_69, (RuntimeObject*)NULL, L_70, MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0114_1:
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
}
|
|
|
|
IL_0127:
|
|
{
|
|
RuntimeObject* L_71 = V_1;
|
|
V_13 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_71) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_72 = V_13;
|
|
if (!L_72)
|
|
{
|
|
goto IL_01ec;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_73 = V_1;
|
|
NullCheck(L_73);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_74;
|
|
L_74 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_73);
|
|
V_14 = L_74;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_75 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_76 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_77 = V_14;
|
|
float L_78 = L_77.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_79 = V_14;
|
|
float L_80 = L_79.___y_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_81;
|
|
memset((&L_81), 0, sizeof(L_81));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_81), L_78, L_80, /*hidden argument*/NULL);
|
|
NullCheck(L_75);
|
|
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(L_76), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_81);
|
|
RuntimeObject* L_82 = V_1;
|
|
V_15 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)IsInstClass((RuntimeObject*)L_82, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_83 = V_15;
|
|
if (!L_83)
|
|
{
|
|
goto IL_01a5;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_84 = V_15;
|
|
NullCheck(L_84);
|
|
int64_t L_85;
|
|
L_85 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_84);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var);
|
|
int64_t L_86;
|
|
L_86 = EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6(EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var);
|
|
if ((((int64_t)L_85) == ((int64_t)L_86)))
|
|
{
|
|
goto IL_01a2;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_87 = V_15;
|
|
NullCheck(L_87);
|
|
int64_t L_88;
|
|
L_88 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_87);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_89;
|
|
L_89 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
if ((((int64_t)L_88) == ((int64_t)L_89)))
|
|
{
|
|
goto IL_01a2;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_90 = V_15;
|
|
NullCheck(L_90);
|
|
int64_t L_91;
|
|
L_91 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_90);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_92;
|
|
L_92 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((((int64_t)L_91) == ((int64_t)L_92)))
|
|
{
|
|
goto IL_01a2;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_93 = V_15;
|
|
NullCheck(L_93);
|
|
int64_t L_94;
|
|
L_94 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_93);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tB8AF17419B0E6B39E32F8925FCA535F5CF5C79D2_il2cpp_TypeInfo_var);
|
|
int64_t L_95;
|
|
L_95 = EventBase_1_TypeId_m1A2720F11AB0D624809678ADE4E6D8C250E43741(EventBase_1_TypeId_m1A2720F11AB0D624809678ADE4E6D8C250E43741_RuntimeMethod_var);
|
|
G_B24_0 = ((((int64_t)L_94) == ((int64_t)L_95))? 1 : 0);
|
|
goto IL_01a3;
|
|
}
|
|
|
|
IL_01a2:
|
|
{
|
|
G_B24_0 = 1;
|
|
}
|
|
|
|
IL_01a3:
|
|
{
|
|
G_B26_0 = G_B24_0;
|
|
goto IL_01a6;
|
|
}
|
|
|
|
IL_01a5:
|
|
{
|
|
G_B26_0 = 0;
|
|
}
|
|
|
|
IL_01a6:
|
|
{
|
|
V_16 = (bool)G_B26_0;
|
|
bool L_96 = V_16;
|
|
if (!L_96)
|
|
{
|
|
goto IL_01eb;
|
|
}
|
|
}
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_97 = ___0_dispatcher;
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9((&V_17), L_97, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01db:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5((&V_17), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_98 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_99 = V_3;
|
|
RuntimeObject* L_100 = V_1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_101 = V_14;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_102;
|
|
L_102 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_101, NULL);
|
|
int32_t L_103 = V_0;
|
|
PointerEventsHelper_SendOverOut_m8EF7035D3995A3342E93DBFCFEB53159D2E05FF9(L_98, L_99, L_100, L_102, L_103, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_104 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_105 = V_3;
|
|
RuntimeObject* L_106 = V_1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_107 = V_14;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_108;
|
|
L_108 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_107, NULL);
|
|
int32_t L_109 = V_0;
|
|
PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B(L_104, L_105, L_106, L_108, L_109, PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B_RuntimeMethod_var);
|
|
goto IL_01ea;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01ea:
|
|
{
|
|
}
|
|
|
|
IL_01eb:
|
|
{
|
|
}
|
|
|
|
IL_01ec:
|
|
{
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_110 = __this->___m_TriggerPointerEvent_2;
|
|
int32_t L_111 = V_0;
|
|
NullCheck(L_110);
|
|
ArrayElementTypeCheck (L_110, NULL);
|
|
(L_110)->SetAt(static_cast<il2cpp_array_size_t>(L_111), (RuntimeObject*)NULL);
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_112 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_113 = V_0;
|
|
NullCheck(L_112);
|
|
int32_t L_114 = L_113;
|
|
RuntimeObject* L_115 = (L_112)->GetAt(static_cast<il2cpp_array_size_t>(L_114));
|
|
V_4 = L_115;
|
|
RuntimeObject* L_116 = V_4;
|
|
V_18 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_116) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_117 = V_18;
|
|
if (!L_117)
|
|
{
|
|
goto IL_0345;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_118 = V_4;
|
|
NullCheck(L_118);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_119;
|
|
L_119 = InterfaceFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(1 /* UnityEngine.Vector2 UnityEngine.UIElements.IMouseEvent::get_mousePosition() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_118);
|
|
V_19 = L_119;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_120 = __this->___m_PickingPointerPositions_4;
|
|
int32_t L_121 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_122 = V_19;
|
|
NullCheck(L_120);
|
|
(L_120)->SetAt(static_cast<il2cpp_array_size_t>(L_121), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_122);
|
|
RuntimeObject* L_123 = V_4;
|
|
V_20 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)IsInstClass((RuntimeObject*)L_123, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_124 = V_20;
|
|
V_21 = (bool)((!(((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_124) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_125 = V_21;
|
|
if (!L_125)
|
|
{
|
|
goto IL_033b;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_126 = V_20;
|
|
NullCheck(L_126);
|
|
int64_t L_127;
|
|
L_127 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_126);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var);
|
|
int64_t L_128;
|
|
L_128 = EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35(EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var);
|
|
if ((((int64_t)L_127) == ((int64_t)L_128)))
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_129 = V_20;
|
|
NullCheck(L_129);
|
|
int64_t L_130;
|
|
L_130 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_129);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var);
|
|
int64_t L_131;
|
|
L_131 = EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87(EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var);
|
|
if ((((int64_t)L_130) == ((int64_t)L_131)))
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_132 = V_20;
|
|
NullCheck(L_132);
|
|
int64_t L_133;
|
|
L_133 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_132);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
int64_t L_134;
|
|
L_134 = EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15(EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
if ((((int64_t)L_133) == ((int64_t)L_134)))
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_135 = V_20;
|
|
NullCheck(L_135);
|
|
int64_t L_136;
|
|
L_136 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_135);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9_il2cpp_TypeInfo_var);
|
|
int64_t L_137;
|
|
L_137 = EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB(EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB_RuntimeMethod_var);
|
|
G_B39_0 = ((((int64_t)L_136) == ((int64_t)L_137))? 1 : 0);
|
|
goto IL_0278;
|
|
}
|
|
|
|
IL_0277:
|
|
{
|
|
G_B39_0 = 1;
|
|
}
|
|
|
|
IL_0278:
|
|
{
|
|
V_22 = (bool)G_B39_0;
|
|
bool L_138 = V_22;
|
|
if (!L_138)
|
|
{
|
|
goto IL_02b8;
|
|
}
|
|
}
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_139 = ___0_dispatcher;
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9((&V_23), L_139, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_02a3:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5((&V_23), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_140 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_141 = V_3;
|
|
RuntimeObject* L_142 = V_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_143 = V_19;
|
|
MouseEventsHelper_SendMouseOverMouseOut_mC53497D84135203791027DAD5CFB68F7D994E3F0(L_140, L_141, L_142, L_143, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_144 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_145 = V_3;
|
|
RuntimeObject* L_146 = V_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_147 = V_19;
|
|
MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6(L_144, L_145, L_146, L_147, MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6_RuntimeMethod_var);
|
|
goto IL_02b2;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_02b2:
|
|
{
|
|
goto IL_033a;
|
|
}
|
|
|
|
IL_02b8:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_148 = V_20;
|
|
NullCheck(L_148);
|
|
int64_t L_149;
|
|
L_149 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_148);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
int64_t L_150;
|
|
L_150 = EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991(EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
if ((((int64_t)L_149) == ((int64_t)L_150)))
|
|
{
|
|
goto IL_02d6;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_151 = V_20;
|
|
NullCheck(L_151);
|
|
int64_t L_152;
|
|
L_152 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_151);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
int64_t L_153;
|
|
L_153 = EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B(EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
G_B47_0 = ((((int64_t)L_152) == ((int64_t)L_153))? 1 : 0);
|
|
goto IL_02d7;
|
|
}
|
|
|
|
IL_02d6:
|
|
{
|
|
G_B47_0 = 1;
|
|
}
|
|
|
|
IL_02d7:
|
|
{
|
|
V_24 = (bool)G_B47_0;
|
|
bool L_154 = V_24;
|
|
if (!L_154)
|
|
{
|
|
goto IL_033a;
|
|
}
|
|
}
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_155 = ___0_dispatcher;
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9((&V_25), L_155, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_032a:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5((&V_25), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_156 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_157 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_158 = V_19;
|
|
int32_t L_159 = V_0;
|
|
PointerEventsHelper_SendOverOut_m8EF7035D3995A3342E93DBFCFEB53159D2E05FF9(L_156, L_157, (RuntimeObject*)NULL, L_158, L_159, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_160 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_161 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_162 = V_19;
|
|
int32_t L_163 = V_0;
|
|
PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B(L_160, L_161, (RuntimeObject*)NULL, L_162, L_163, PointerEventsHelper_SendEnterLeave_TisPointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_TisPointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_mCE7FF43DBF80F27AD573BBB24475D31EBB1B198B_RuntimeMethod_var);
|
|
int32_t L_164 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_165 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_26 = (bool)((((int32_t)L_164) == ((int32_t)L_165))? 1 : 0);
|
|
bool L_166 = V_26;
|
|
if (!L_166)
|
|
{
|
|
goto IL_0327_1;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_167 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_168 = V_3;
|
|
RuntimeObject* L_169 = V_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_170 = V_19;
|
|
MouseEventsHelper_SendMouseOverMouseOut_mC53497D84135203791027DAD5CFB68F7D994E3F0(L_167, L_168, L_169, L_170, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_171 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_172 = V_3;
|
|
RuntimeObject* L_173 = V_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_174 = V_19;
|
|
MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6(L_171, L_172, L_173, L_174, MouseEventsHelper_SendEnterLeave_TisMouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9_TisMouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E_m5CFC84460397CEF245A336B2B3485A8B74F218D6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0327_1:
|
|
{
|
|
goto IL_0339;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0339:
|
|
{
|
|
}
|
|
|
|
IL_033a:
|
|
{
|
|
}
|
|
|
|
IL_033b:
|
|
{
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_175 = __this->___m_TriggerMouseEvent_3;
|
|
int32_t L_176 = V_0;
|
|
NullCheck(L_175);
|
|
ArrayElementTypeCheck (L_175, NULL);
|
|
(L_175)->SetAt(static_cast<il2cpp_array_size_t>(L_176), (RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_0345:
|
|
{
|
|
}
|
|
|
|
IL_0346:
|
|
{
|
|
int32_t L_177 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_177, 1));
|
|
}
|
|
|
|
IL_034a:
|
|
{
|
|
int32_t L_178 = V_0;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_179 = __this->___m_TopElementUnderPointer_1;
|
|
NullCheck(L_179);
|
|
V_27 = (bool)((((int32_t)L_178) < ((int32_t)((int32_t)(((RuntimeArray*)L_179)->max_length))))? 1 : 0);
|
|
bool L_180 = V_27;
|
|
if (L_180)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ElementUnderPointer::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementUnderPointer__ctor_m5210655B0C7115657A1A504181246E8354EF169A (ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = (VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF*)(VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF*)SZArrayNew(VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF_il2cpp_TypeInfo_var, (uint32_t)L_0);
|
|
__this->___m_PendingTopElementUnderPointer_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PendingTopElementUnderPointer_0), (void*)L_1);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = (VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF*)(VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF*)SZArrayNew(VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
__this->___m_TopElementUnderPointer_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TopElementUnderPointer_1), (void*)L_3);
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22* L_5 = (IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22*)(IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22*)SZArrayNew(IPointerEventU5BU5D_t89E0FE44D1C5384112824379812966DFD7F02D22_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
__this->___m_TriggerPointerEvent_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TriggerPointerEvent_2), (void*)L_5);
|
|
int32_t L_6 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8* L_7 = (IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8*)(IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8*)SZArrayNew(IMouseEventU5BU5D_t418EF80C033DAB9F8703CD44FF55CA05F95627E8_il2cpp_TypeInfo_var, (uint32_t)L_6);
|
|
__this->___m_TriggerMouseEvent_3 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TriggerMouseEvent_3), (void*)L_7);
|
|
int32_t L_8 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_9 = (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA*)(Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA*)SZArrayNew(Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA_il2cpp_TypeInfo_var, (uint32_t)L_8);
|
|
__this->___m_PickingPointerPositions_4 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PickingPointerPositions_4), (void*)L_9);
|
|
int32_t L_10 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_11 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_10);
|
|
__this->___m_IsPickingPointerTemporaries_5 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_IsPickingPointerTemporaries_5), (void*)L_11);
|
|
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
|
|
// UnityEngine.UIElements.IMGUIEvent UnityEngine.UIElements.IMGUIEvent::GetPooled(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* IMGUIEvent_GetPooled_mD4A91D92BFC07DE1B217E8C26A7CFBBD7B4D4A14 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_GetPooled_m5C349B73E157553B73F21F11591CEB7266273A95_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* V_0 = NULL;
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* L_0;
|
|
L_0 = EventBase_1_GetPooled_m5C349B73E157553B73F21F11591CEB7266273A95(EventBase_1_GetPooled_m5C349B73E157553B73F21F11591CEB7266273A95_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* L_1 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = ___0_systemEvent;
|
|
NullCheck(L_1);
|
|
EventBase_set_imguiEvent_m72FEAD8F7611927C077B45BAA719C15D39E9F4F4(L_1, L_2, NULL);
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* L_3 = V_0;
|
|
V_1 = L_3;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEvent_Init_m3CC8FFA0B9F31C1F1C357E5AC15AD0DFA800F5A1 (IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_Init_m624713075B5108D1488D68D488679EF6665E6671_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_1_Init_m624713075B5108D1488D68D488679EF6665E6671(__this, EventBase_1_Init_m624713075B5108D1488D68D488679EF6665E6671_RuntimeMethod_var);
|
|
IMGUIEvent_LocalInit_mBA8C889C09A964E1C640D5694AF36348C83D0D96(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEvent_LocalInit_mBA8C889C09A964E1C640D5694AF36348C83D0D96 (IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 7, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEvent__ctor_m692A9D375875902DD821AF0352FDEB4624831662 (IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1__ctor_m6CD1821AACDF831718F32FEF562AD964019E8499_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
EventBase_1__ctor_m6CD1821AACDF831718F32FEF562AD964019E8499(__this, EventBase_1__ctor_m6CD1821AACDF831718F32FEF562AD964019E8499_RuntimeMethod_var);
|
|
IMGUIEvent_LocalInit_mBA8C889C09A964E1C640D5694AF36348C83D0D96(__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
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::RemovePanelData(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_RemovePanelData_m220B069A08506218DD0A5D9A878034BF2B066DC3 (RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_inline(((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), NULL);
|
|
RuntimeObject* L_3 = ___0_panel;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)L_3))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_5 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D(((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))), L_7, (RuntimeObject*)NULL, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* L_8 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
RuntimeObject* L_12 = ___0_panel;
|
|
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_11) == ((RuntimeObject*)(RuntimeObject*)L_12))? 1 : 0);
|
|
bool L_13 = V_2;
|
|
if (!L_13)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* L_14 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2;
|
|
int32_t L_15 = V_0;
|
|
NullCheck(L_14);
|
|
ArrayElementTypeCheck (L_14, NULL);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_16 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_18 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
V_3 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_3;
|
|
if (L_19)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::SavePointerPosition(System.Int32,UnityEngine.Vector2,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_SavePointerPosition_mC6DDDD9EA7308C5AB8E1CA78FBFF045629B1A6F0 (int32_t ___0_pointerId, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_position, RuntimeObject* ___2_panel, int32_t ___3_contextType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___3_contextType;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)1))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_3 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_4 = ___0_pointerId;
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___1_position;
|
|
RuntimeObject* L_6 = ___2_panel;
|
|
PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D(((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))), L_5, L_6, NULL);
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::PressButton(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_PressButton_mBB102F81A0E72F8A7685E31979C1069FAB22C05F (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_buttonId;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0), NULL);
|
|
int32_t L_1 = ___1_buttonId;
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)L_1) < ((int32_t)((int32_t)32)))? 1 : 0), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1;
|
|
int32_t L_3 = ___0_pointerId;
|
|
NullCheck(L_2);
|
|
int32_t* L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)));
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t L_6 = ___1_buttonId;
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)(L_5|((int32_t)(1<<((int32_t)(L_6&((int32_t)31)))))));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::ReleaseButton(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_ReleaseButton_m37AD62F48C80F0087158DA241DC055703268D494 (int32_t ___0_pointerId, int32_t ___1_buttonId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___1_buttonId;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0), NULL);
|
|
int32_t L_1 = ___1_buttonId;
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)L_1) < ((int32_t)((int32_t)32)))? 1 : 0), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1;
|
|
int32_t L_3 = ___0_pointerId;
|
|
NullCheck(L_2);
|
|
int32_t* L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)));
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t L_6 = ___1_buttonId;
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)(L_5&((~((int32_t)(1<<((int32_t)(L_6&((int32_t)31)))))))));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::ReleaseAllButtons(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_ReleaseAllButtons_mCB608A120B1851402C0300EF8AA95620A1AF86AA (int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (int32_t)0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerDeviceState::GetPointerPosition(System.Int32,UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerDeviceState_GetPointerPosition_m4F2F8719AB146901C9C64730F74B9EEF916E8A77 (int32_t ___0_pointerId, int32_t ___1_contextType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
int32_t L_0 = ___1_contextType;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)1))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_3 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_4 = ___0_pointerId;
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10_inline(((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))), NULL);
|
|
V_2 = L_5;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_2;
|
|
return L_6;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PointerDeviceState::GetPanel(System.Int32,UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDeviceState_GetPanel_mF1ABAF676F34A5F603E66044D2F5BAB057AC140E (int32_t ___0_pointerId, int32_t ___1_contextType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___1_contextType;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)1))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_3 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_4 = ___0_pointerId;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_5;
|
|
L_5 = PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_inline(((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))), NULL);
|
|
V_2 = L_5;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_6 = V_2;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerDeviceState::HasFlagFast(UnityEngine.UIElements.PointerDeviceState/LocationFlag,UnityEngine.UIElements.PointerDeviceState/LocationFlag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDeviceState_HasFlagFast_m71479211D7AB83D1295671261F439210D06646D3 (int32_t ___0_flagSet, int32_t ___1_flag, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = ___0_flagSet;
|
|
int32_t L_1 = ___1_flag;
|
|
int32_t L_2 = ___1_flag;
|
|
V_0 = (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) == ((int32_t)L_2))? 1 : 0);
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerDeviceState::HasLocationFlag(System.Int32,UnityEngine.UIElements.ContextType,UnityEngine.UIElements.PointerDeviceState/LocationFlag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDeviceState_HasLocationFlag_m03AB88B43BF037247C7E2C49739CCCEC2E60769E (int32_t ___0_pointerId, int32_t ___1_contextType, int32_t ___2_flag, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = ___1_contextType;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) > ((uint32_t)1))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_3 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0;
|
|
int32_t L_4 = ___0_pointerId;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_inline(((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))), NULL);
|
|
int32_t L_6 = ___2_flag;
|
|
bool L_7;
|
|
L_7 = PointerDeviceState_HasFlagFast_m71479211D7AB83D1295671261F439210D06646D3(L_5, L_6, NULL);
|
|
V_2 = L_7;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
bool L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.PointerDeviceState::GetPressedButtons(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerDeviceState_GetPressedButtons_m4967FF91F44AE300DCDB3F5136823221134666BC (int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerDeviceState::HasAdditionalPressedButtons(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDeviceState_HasAdditionalPressedButtons_m368C6C47A0DC9727321AF038E8AB13FA2AE54B3E (int32_t ___0_pointerId, int32_t ___1_exceptButtonId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
int32_t L_4 = ___1_exceptButtonId;
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)(L_3&((~((int32_t)(1<<((int32_t)(L_4&((int32_t)31)))))))))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::SetPlayerPanelWithSoftPointerCapture(System.Int32,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState_SetPlayerPanelWithSoftPointerCapture_mC198DEB84AC0A97B1754EC66048AFEE33D3E53CA (int32_t ___0_pointerId, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2;
|
|
int32_t L_1 = ___0_pointerId;
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_2);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (RuntimeObject*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PointerDeviceState::GetPlayerPanelWithSoftPointerCapture(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDeviceState_GetPlayerPanelWithSoftPointerCapture_m3CB06E8131526B784CCFACBB01DD4E4CE2317BFC (int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* L_0 = ((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDeviceState__cctor_m3FFA73A302936814C945B21ECA9C156633753A90 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4* L_1 = (PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4*)(PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4*)SZArrayNew(PointerLocationU5BU5D_t431E8046CB55B8A220C0447DDB6CF6A20DE8A1A4_il2cpp_TypeInfo_var, (uint32_t)L_0);
|
|
((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPointerLocations_0), (void*)L_1);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PressedButtons_1), (void*)L_3);
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933* L_5 = (IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933*)(IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933*)SZArrayNew(IPanelU5BU5D_tD30F2BC67981C0E88C866DB9A3ED728400B7A933_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_StaticFields*)il2cpp_codegen_static_fields_for(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var))->___s_PlayerPanelWithSoftPointerCapture_2), (void*)L_5);
|
|
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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_pinvoke(const PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6& unmarshaled, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___U3CPanelU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Panel>k__BackingField' of type 'PointerLocation': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CPanelU3Ek__BackingField_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_pinvoke_back(const PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_pinvoke& marshaled, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6& unmarshaled)
|
|
{
|
|
Exception_t* ___U3CPanelU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Panel>k__BackingField' of type 'PointerLocation': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CPanelU3Ek__BackingField_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_pinvoke_cleanup(PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_com(const PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6& unmarshaled, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___U3CPanelU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Panel>k__BackingField' of type 'PointerLocation': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CPanelU3Ek__BackingField_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_com_back(const PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_com& marshaled, PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6& unmarshaled)
|
|
{
|
|
Exception_t* ___U3CPanelU3Ek__BackingField_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<Panel>k__BackingField' of type 'PointerLocation': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CPanelU3Ek__BackingField_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.PointerDeviceState/PointerLocation
|
|
IL2CPP_EXTERN_C void PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshal_com_cleanup(PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Position()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10 (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CPositionU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Position(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CPositionU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Panel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CPanelU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Panel(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403 (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CPanelU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPanelU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.UIElements.PointerDeviceState/LocationFlag UnityEngine.UIElements.PointerDeviceState/PointerLocation::get_Flags()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7 (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CFlagsU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::set_Flags(UnityEngine.UIElements.PointerDeviceState/LocationFlag)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CFlagsU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDeviceState/PointerLocation::SetLocation(UnityEngine.Vector2,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_position;
|
|
PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA_inline(__this, L_0, NULL);
|
|
RuntimeObject* L_1 = ___1_panel;
|
|
PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403_inline(__this, L_1, NULL);
|
|
PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_inline(__this, 0, NULL);
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___1_panel;
|
|
NullCheck(L_3);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_3);
|
|
NullCheck(L_4);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_5;
|
|
L_5 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_4, NULL);
|
|
V_1 = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___0_position;
|
|
bool L_7;
|
|
L_7 = Rect_Contains_mAB270D6B7E3B0009A50D142C569D63E8FE59F48B((&V_1), L_6, NULL);
|
|
G_B3_0 = ((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9;
|
|
L_9 = PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_inline(__this, NULL);
|
|
PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_inline(__this, ((int32_t)((int32_t)L_9|1)), NULL);
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D_AdjustorThunk (RuntimeObject* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6*>(__this + _offset);
|
|
PointerLocation_SetLocation_m2C6222EAE1EE08CA8924AEB5ABB7FED38E3DB36D(_thisAdjusted, ___0_position, ___1_panel, method);
|
|
}
|
|
#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
|
|
// System.Boolean UnityEngine.UIElements.PointerCaptureDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerCaptureDispatchingStrategy_CanDispatchEvent_m6C2EB0C3F16EDECCD7AA0148B5AA96617CF2806D (PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureDispatchingStrategy_DispatchEvent_m26632E7E4527CCCF030F8062C1CE45C38E838AAE (PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mECB64534E7784E4F149108516B906000134DA10E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
int32_t G_B24_0 = 0;
|
|
RuntimeObject* G_B29_0 = NULL;
|
|
RuntimeObject* G_B28_0 = NULL;
|
|
int32_t G_B30_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_1 = V_0;
|
|
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_4;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject* L_3 = ___1_panel;
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_4);
|
|
RuntimeObject* L_6;
|
|
L_6 = PointerCaptureHelper_GetCapturingElement_m30DED02760CA5544CF35162656E2E3959DC8103E(L_3, L_5, NULL);
|
|
V_1 = L_6;
|
|
RuntimeObject* L_7 = V_1;
|
|
V_5 = (bool)((((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_8 = V_5;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
RuntimeObject* L_9 = V_1;
|
|
V_2 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_9, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
int64_t L_11;
|
|
L_11 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_10);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493_il2cpp_TypeInfo_var);
|
|
int64_t L_12;
|
|
L_12 = EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1(EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1_RuntimeMethod_var);
|
|
if ((((int64_t)L_11) == ((int64_t)L_12)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_2;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_14, NULL);
|
|
G_B8_0 = ((((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
V_6 = (bool)G_B8_0;
|
|
bool L_16 = V_6;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = ___1_panel;
|
|
RuntimeObject* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_18);
|
|
PointerCaptureHelper_ReleasePointer_mE9ABEA39360504C8B5A9CF1C067A63F7535CDECB(L_17, L_19, NULL);
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
RuntimeObject* L_21;
|
|
L_21 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
RuntimeObject* L_23;
|
|
L_23 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_22, NULL);
|
|
RuntimeObject* L_24 = V_1;
|
|
G_B13_0 = ((((int32_t)((((RuntimeObject*)(RuntimeObject*)L_23) == ((RuntimeObject*)(RuntimeObject*)L_24))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B13_0 = 0;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_7 = (bool)G_B13_0;
|
|
bool L_25 = V_7;
|
|
if (!L_25)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
RuntimeObject* L_26 = ___1_panel;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = V_2;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28 = V_2;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29;
|
|
L_29 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_28, NULL);
|
|
RuntimeObject* L_30 = ___1_panel;
|
|
G_B19_0 = ((((int32_t)((((RuntimeObject*)(RuntimeObject*)L_29) == ((RuntimeObject*)(RuntimeObject*)L_30))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00a9;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
V_8 = (bool)G_B19_0;
|
|
bool L_31 = V_8;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = ___0_evt;
|
|
NullCheck(L_32);
|
|
int64_t L_33;
|
|
L_33 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_32);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034_il2cpp_TypeInfo_var);
|
|
int64_t L_34;
|
|
L_34 = EventBase_1_TypeId_mECB64534E7784E4F149108516B906000134DA10E(EventBase_1_TypeId_mECB64534E7784E4F149108516B906000134DA10E_RuntimeMethod_var);
|
|
if ((((int64_t)L_33) == ((int64_t)L_34)))
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = ___0_evt;
|
|
NullCheck(L_35);
|
|
int64_t L_36;
|
|
L_36 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_35);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tBD3A3272CA5474A0EF4F4EFF8E1751F89428D493_il2cpp_TypeInfo_var);
|
|
int64_t L_37;
|
|
L_37 = EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1(EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1_RuntimeMethod_var);
|
|
G_B24_0 = ((((int32_t)((((int64_t)L_36) == ((int64_t)L_37))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
G_B24_0 = 0;
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
V_9 = (bool)G_B24_0;
|
|
bool L_38 = V_9;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ea;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_39 = ___1_panel;
|
|
RuntimeObject* L_40 = V_0;
|
|
NullCheck(L_40);
|
|
int32_t L_41;
|
|
L_41 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_40);
|
|
PointerCaptureHelper_ProcessPointerCapture_mD1AE918F21A8FA12782FDDB44BC51B4449F0B160(L_39, L_41, NULL);
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
RuntimeObject* L_42 = ___1_panel;
|
|
V_3 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_42, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_43 = V_3;
|
|
V_10 = (bool)((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_43) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_44 = V_10;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0132;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_45 = V_0;
|
|
RuntimeObject* L_46 = ((RuntimeObject*)IsInst((RuntimeObject*)L_45, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var));
|
|
G_B28_0 = L_46;
|
|
if (L_46)
|
|
{
|
|
G_B29_0 = L_46;
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
G_B30_0 = 1;
|
|
goto IL_010e;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
NullCheck(G_B29_0);
|
|
bool L_47;
|
|
L_47 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IPointerEventInternal::get_recomputeTopElementUnderPointer() */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, G_B29_0);
|
|
G_B30_0 = ((int32_t)(L_47));
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
V_11 = (bool)G_B30_0;
|
|
bool L_48 = V_11;
|
|
V_12 = L_48;
|
|
bool L_49 = V_12;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_50 = V_3;
|
|
RuntimeObject* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
int32_t L_52;
|
|
L_52 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_51);
|
|
RuntimeObject* L_53 = V_0;
|
|
NullCheck(L_53);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_54;
|
|
L_54 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_53);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_55;
|
|
L_55 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_54, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_56 = ___0_evt;
|
|
NullCheck(L_50);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_57;
|
|
L_57 = BaseVisualElementPanel_RecomputeTopElementUnderPointer_mF3D6110A28FCCF72408FE62A21A4F57E4AC717AF(L_50, L_52, L_55, L_56, NULL);
|
|
}
|
|
|
|
IL_0131:
|
|
{
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = ___0_evt;
|
|
NullCheck(L_58);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_58, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_59 = ___0_evt;
|
|
RuntimeObject* L_60 = V_1;
|
|
NullCheck(L_59);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_59, L_60, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_61 = ___0_evt;
|
|
RuntimeObject* L_62 = V_1;
|
|
NullCheck(L_61);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_61, L_62);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_63 = ___0_evt;
|
|
NullCheck(L_63);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_63, 2, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_64 = ___0_evt;
|
|
NullCheck(L_64);
|
|
EventBase_set_skipDisabledElements_mCD199A8D744CA42DC9A331A2795DAEB2CCA9243D(L_64, (bool)0, NULL);
|
|
RuntimeObject* L_65 = V_1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_66 = ___0_evt;
|
|
NullCheck(L_65);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_65, L_66);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_67 = ___0_evt;
|
|
NullCheck(L_67);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_67, (RuntimeObject*)NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_68 = ___0_evt;
|
|
NullCheck(L_68);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_68, 0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_69 = ___0_evt;
|
|
NullCheck(L_69);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_69, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_70 = ___0_evt;
|
|
NullCheck(L_70);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_70, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_71 = ___0_evt;
|
|
NullCheck(L_71);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_71, (bool)0, NULL);
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureDispatchingStrategy__ctor_m2A38585BC0D3626E41D701C40F2C438F4DFFD31C (PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE* __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
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackListPool::Get(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackListPool_Get_m51BDCFE0D4D4F00F53234F4EE239E133F1671817 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_initializer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m27EF77ADD65A56CD95F3EAFA786C44BC7271CC29_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_4 = NULL;
|
|
{
|
|
Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* L_0 = __this->___m_Stack_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Stack_1_get_Count_m27EF77ADD65A56CD95F3EAFA786C44BC7271CC29_inline(L_0, Stack_1_get_Count_m27EF77ADD65A56CD95F3EAFA786C44BC7271CC29_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_3 = ___0_initializer;
|
|
V_2 = (bool)((!(((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_5 = ___0_initializer;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_6 = (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)il2cpp_codegen_object_new(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
EventCallbackList__ctor_m68637C48463F4F73C89DF6CA73A1E6B3CB5FD7D2(L_6, L_5, NULL);
|
|
V_0 = L_6;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_7 = (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)il2cpp_codegen_object_new(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
EventCallbackList__ctor_m63560530AAC328229B8EEFC303AAE2B28504E12B(L_7, NULL);
|
|
V_0 = L_7;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* L_8 = __this->___m_Stack_0;
|
|
NullCheck(L_8);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_9;
|
|
L_9 = Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133(L_8, Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_10 = ___0_initializer;
|
|
V_3 = (bool)((!(((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_12 = V_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_13 = ___0_initializer;
|
|
NullCheck(L_12);
|
|
EventCallbackList_AddRange_m4ED6546AA29BB00231BDD0E41D7E64912A26C90D(L_12, L_13, NULL);
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_14 = V_0;
|
|
V_4 = L_14;
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_15 = V_4;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackListPool::Release(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackListPool_Release_m022D1A233864CAC88AC6EDB37B77F70B60032A89 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = ___0_element;
|
|
NullCheck(L_0);
|
|
EventCallbackList_Clear_mC911EA6B9D7DB6C81076D3E7A218F9E392A72DEC(L_0, NULL);
|
|
Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* L_1 = __this->___m_Stack_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_2 = ___0_element;
|
|
NullCheck(L_1);
|
|
Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B(L_1, L_2, Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackListPool::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackListPool__ctor_m48C8D9BAF4A5A345FF23C7068F2FBE8768D8D138 (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_mE21E089AF2AB9703038F2EABB99638C8946E1C10_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F* L_0 = (Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F*)il2cpp_codegen_object_new(Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Stack_1__ctor_mE21E089AF2AB9703038F2EABB99638C8946E1C10(L_0, Stack_1__ctor_mE21E089AF2AB9703038F2EABB99638C8946E1C10_RuntimeMethod_var);
|
|
__this->___m_Stack_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Stack_0), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_trickleDownCallbackCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CtrickleDownCallbackCountU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::set_trickleDownCallbackCount(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtrickleDownCallbackCountU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_bubbleUpCallbackCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CbubbleUpCallbackCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::set_bubbleUpCallbackCount(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbubbleUpCallbackCountU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList__ctor_m63560530AAC328229B8EEFC303AAE2B28504E12B (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*)il2cpp_codegen_object_new(List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC(L_0, List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC_RuntimeMethod_var);
|
|
__this->___m_List_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_List_0), (void*)L_0);
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, 0, NULL);
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::.ctor(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList__ctor_m68637C48463F4F73C89DF6CA73A1E6B3CB5FD7D2 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = ___0_source;
|
|
NullCheck(L_0);
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_1 = L_0->___m_List_0;
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_2 = (List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C*)il2cpp_codegen_object_new(List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45(L_2, L_1, List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45_RuntimeMethod_var);
|
|
__this->___m_List_0 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_List_0), (void*)L_2);
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, 0, NULL);
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackList::Contains(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackList_Contains_m3CECFC64D95D6202C46E2E4542CFBEBC2E545682 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_phase, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int64_t L_0 = ___0_eventTypeId;
|
|
Delegate_t* L_1 = ___1_callback;
|
|
int32_t L_2 = ___2_phase;
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_3;
|
|
L_3 = EventCallbackList_Find_mCD242212B4EE860D14E3113C97B296A7DFBB7000(__this, L_0, L_1, L_2, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase UnityEngine.UIElements.EventCallbackList::Find(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* EventCallbackList_Find_mCD242212B4EE860D14E3113C97B296A7DFBB7000 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_phase, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* V_2 = NULL;
|
|
bool V_3 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_2;
|
|
L_2 = List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A(L_0, L_1, List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
int64_t L_3 = ___0_eventTypeId;
|
|
Delegate_t* L_4 = ___1_callback;
|
|
int32_t L_5 = ___2_phase;
|
|
NullCheck(L_2);
|
|
bool L_6;
|
|
L_6 = VirtualFuncInvoker3< bool, int64_t, Delegate_t*, int32_t >::Invoke(5 /* System.Boolean UnityEngine.UIElements.EventCallbackFunctorBase::IsEquivalentTo(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase) */, L_2, L_3, L_4, L_5);
|
|
V_1 = L_6;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_8 = __this->___m_List_0;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_10;
|
|
L_10 = List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A(L_8, L_9, List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
V_2 = L_10;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_12 = V_0;
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_13 = __this->___m_List_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_inline(L_13, List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
V_3 = (bool)((((int32_t)L_12) < ((int32_t)L_14))? 1 : 0);
|
|
bool L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568*)NULL;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_16 = V_2;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackList::Remove(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackList_Remove_mE19FE07B736B43811C2A5C91EB4FFE79FA427A28 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_phase, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_2;
|
|
L_2 = List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A(L_0, L_1, List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
int64_t L_3 = ___0_eventTypeId;
|
|
Delegate_t* L_4 = ___1_callback;
|
|
int32_t L_5 = ___2_phase;
|
|
NullCheck(L_2);
|
|
bool L_6;
|
|
L_6 = VirtualFuncInvoker3< bool, int64_t, Delegate_t*, int32_t >::Invoke(5 /* System.Boolean UnityEngine.UIElements.EventCallbackFunctorBase::IsEquivalentTo(System.Int64,System.Delegate,UnityEngine.UIElements.CallbackPhase) */, L_2, L_3, L_4, L_5);
|
|
V_1 = L_6;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_8 = __this->___m_List_0;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(L_8);
|
|
List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8(L_8, L_9, List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8_RuntimeMethod_var);
|
|
int32_t L_10 = ___2_phase;
|
|
V_2 = (bool)((((int32_t)L_10) == ((int32_t)2))? 1 : 0);
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12;
|
|
L_12 = EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline(__this, NULL);
|
|
V_3 = L_12;
|
|
int32_t L_13 = V_3;
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_13, 1)), NULL);
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_14 = ___2_phase;
|
|
V_4 = (bool)((((int32_t)L_14) == ((int32_t)1))? 1 : 0);
|
|
bool L_15 = V_4;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16;
|
|
L_16 = EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline(__this, NULL);
|
|
V_3 = L_16;
|
|
int32_t L_17 = V_3;
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, ((int32_t)il2cpp_codegen_subtract(L_17, 1)), NULL);
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
V_5 = (bool)1;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_18 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_19 = V_0;
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_20 = __this->___m_List_0;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_inline(L_20, List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
V_6 = (bool)((((int32_t)L_19) < ((int32_t)L_21))? 1 : 0);
|
|
bool L_22 = V_6;
|
|
if (L_22)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
V_5 = (bool)0;
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
bool L_23 = V_5;
|
|
return L_23;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::Add(UnityEngine.UIElements.EventCallbackFunctorBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_Add_m135C48ED0BE15CE8C13411059529864B84382C0C (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m85814EBFEEB8F14E633DD5FCCC709B8A3711164B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_1 = ___0_item;
|
|
NullCheck(L_0);
|
|
List_1_Add_m85814EBFEEB8F14E633DD5FCCC709B8A3711164B_inline(L_0, L_1, List_1_Add_m85814EBFEEB8F14E633DD5FCCC709B8A3711164B_RuntimeMethod_var);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_2 = ___0_item;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline(L_2, NULL);
|
|
V_0 = (bool)((((int32_t)L_3) == ((int32_t)2))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5;
|
|
L_5 = EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline(__this, NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, ((int32_t)il2cpp_codegen_add(L_6, 1)), NULL);
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_7 = ___0_item;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline(L_7, NULL);
|
|
V_2 = (bool)((((int32_t)L_8) == ((int32_t)1))? 1 : 0);
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10;
|
|
L_10 = EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline(__this, NULL);
|
|
V_1 = L_10;
|
|
int32_t L_11 = V_1;
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, ((int32_t)il2cpp_codegen_add(L_11, 1)), NULL);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::AddRange(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_AddRange_m4ED6546AA29BB00231BDD0E41D7E64912A26C90D (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mD39715123AE48C0393854BA496289E3975AD303F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m7245756097F392DCBE76E9A6060AF3B9D7268936_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_2 = L_1->___m_List_0;
|
|
NullCheck(L_0);
|
|
List_1_AddRange_m7245756097F392DCBE76E9A6060AF3B9D7268936(L_0, L_2, List_1_AddRange_m7245756097F392DCBE76E9A6060AF3B9D7268936_RuntimeMethod_var);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_3 = ___0_list;
|
|
NullCheck(L_3);
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_4 = L_3->___m_List_0;
|
|
NullCheck(L_4);
|
|
Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665 L_5;
|
|
L_5 = List_1_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB(L_4, List_1_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007b:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC((&V_0), Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0070_1;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_6;
|
|
L_6 = Enumerator_get_Current_mD39715123AE48C0393854BA496289E3975AD303F_inline((&V_0), Enumerator_get_Current_mD39715123AE48C0393854BA496289E3975AD303F_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline(L_7, NULL);
|
|
V_2 = (bool)((((int32_t)L_8) == ((int32_t)2))? 1 : 0);
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004d_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10;
|
|
L_10 = EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline(__this, NULL);
|
|
V_3 = L_10;
|
|
int32_t L_11 = V_3;
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, ((int32_t)il2cpp_codegen_add(L_11, 1)), NULL);
|
|
goto IL_006f_1;
|
|
}
|
|
|
|
IL_004d_1:
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_12 = V_1;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline(L_12, NULL);
|
|
V_4 = (bool)((((int32_t)L_13) == ((int32_t)1))? 1 : 0);
|
|
bool L_14 = V_4;
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15;
|
|
L_15 = EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline(__this, NULL);
|
|
V_3 = L_15;
|
|
int32_t L_16 = V_3;
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, ((int32_t)il2cpp_codegen_add(L_16, 1)), NULL);
|
|
}
|
|
|
|
IL_006f_1:
|
|
{
|
|
}
|
|
|
|
IL_0070_1:
|
|
{
|
|
bool L_17;
|
|
L_17 = Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A((&V_0), Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A_RuntimeMethod_var);
|
|
if (L_17)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.EventCallbackList::get_Count()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_Count_m2431721D83AFE7454CB2920D15C03B7825500670 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_inline(L_0, List_1_get_Count_m9B7A687AF08C388EB2A20C16CC382B130A52E0ED_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase UnityEngine.UIElements.EventCallbackList::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* EventCallbackList_get_Item_mDB9D16B9C9E12B1260CB6C7DAC3A07E4DD4A62A2 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* V_0 = NULL;
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
int32_t L_1 = ___0_i;
|
|
NullCheck(L_0);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_2;
|
|
L_2 = List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A(L_0, L_1, List_1_get_Item_mF10A51E46F276E38DE57E2C90BF5386CD6D3C80A_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackList::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackList_Clear_mC911EA6B9D7DB6C81076D3E7A218F9E392A72DEC (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C* L_0 = __this->___m_List_0;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_inline(L_0, List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_RuntimeMethod_var);
|
|
EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline(__this, 0, NULL);
|
|
EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::GetCallbackList(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_initializer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* L_0 = ((EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_StaticFields*)il2cpp_codegen_static_fields_for(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var))->___s_ListPool_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_1 = ___0_initializer;
|
|
NullCheck(L_0);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_2;
|
|
L_2 = EventCallbackListPool_Get_m51BDCFE0D4D4F00F53234F4EE239E133F1671817(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::ReleaseCallbackList(UnityEngine.UIElements.EventCallbackList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry_ReleaseCallbackList_m781EC82FE1F90A0F32998738AB57BA7ACA9B8374 (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* L_0 = ((EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_StaticFields*)il2cpp_codegen_static_fields_for(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var))->___s_ListPool_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_1 = ___0_toRelease;
|
|
NullCheck(L_0);
|
|
EventCallbackListPool_Release_m022D1A233864CAC88AC6EDB37B77F70B60032A89(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry__ctor_mE8515F2569FA228418791385E09A1DAAF959591A (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___m_IsInvoking_3 = 0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::GetCallbackListForWriting()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackRegistry_GetCallbackListForWriting_m7D434CACC381588525875E2A9A4D2CB0113A0B94 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_IsInvoking_3;
|
|
V_0 = (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_2 = __this->___m_TemporaryCallbacks_2;
|
|
V_1 = (bool)((((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_4 = __this->___m_Callbacks_1;
|
|
V_2 = (bool)((!(((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_6 = __this->___m_Callbacks_1;
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_7;
|
|
L_7 = EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23(L_6, NULL);
|
|
__this->___m_TemporaryCallbacks_2 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TemporaryCallbacks_2), (void*)L_7);
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_8;
|
|
L_8 = EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23((EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)NULL, NULL);
|
|
__this->___m_TemporaryCallbacks_2 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TemporaryCallbacks_2), (void*)L_8);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_9 = __this->___m_TemporaryCallbacks_2;
|
|
V_3 = L_9;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_10 = __this->___m_Callbacks_1;
|
|
V_4 = (bool)((((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_10) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_12;
|
|
L_12 = EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23((EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)NULL, NULL);
|
|
__this->___m_Callbacks_1 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Callbacks_1), (void*)L_12);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_13 = __this->___m_Callbacks_1;
|
|
V_3 = L_13;
|
|
goto IL_007e;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_14 = V_3;
|
|
return L_14;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventCallbackList UnityEngine.UIElements.EventCallbackRegistry::GetCallbackListForReading()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* EventCallbackRegistry_GetCallbackListForReading_mC258748C5082405D6892577F698D9108D460720E (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_1 = NULL;
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = __this->___m_TemporaryCallbacks_2;
|
|
V_0 = (bool)((!(((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_2 = __this->___m_TemporaryCallbacks_2;
|
|
V_1 = L_2;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_3 = __this->___m_Callbacks_1;
|
|
V_1 = L_3;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackRegistry::UnregisterCallback(System.Int64,System.Delegate,UnityEngine.UIElements.TrickleDown)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackRegistry_UnregisterCallback_mFA7EB7A9A90ADB70FDF1D9F7BE3FC6FCB23E4C29 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, int64_t ___0_eventTypeId, Delegate_t* ___1_callback, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
Delegate_t* L_0 = ___1_callback;
|
|
V_2 = (bool)((((RuntimeObject*)(Delegate_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_2;
|
|
L_2 = EventCallbackRegistry_GetCallbackListForWriting_m7D434CACC381588525875E2A9A4D2CB0113A0B94(__this, NULL);
|
|
V_0 = L_2;
|
|
int32_t L_3 = ___2_useTrickleDown;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = 1;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
G_B5_0 = 2;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_1 = G_B5_0;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_4 = V_0;
|
|
int64_t L_5 = ___0_eventTypeId;
|
|
Delegate_t* L_6 = ___1_callback;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_4);
|
|
bool L_8;
|
|
L_8 = EventCallbackList_Remove_mE19FE07B736B43811C2A5C91EB4FFE79FA427A28(L_4, L_5, L_6, L_7, NULL);
|
|
V_3 = L_8;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
bool L_9 = V_3;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::InvokeCallbacks(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry_InvokeCallbacks_mB1B282F6F91C0E10E00F0A963223649BB4676EA9 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, int32_t ___1_propagationPhase, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = __this->___m_Callbacks_1;
|
|
V_0 = (bool)((((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
int32_t L_2 = __this->___m_IsInvoking_3;
|
|
__this->___m_IsInvoking_3 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
V_1 = 0;
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = EventBase_get_isImmediatePropagationStopped_m23F718E5FA5FB49FE12BA560B8362B95E0C7F5D3(L_3, NULL);
|
|
V_3 = L_4;
|
|
bool L_5 = V_3;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814(L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9;
|
|
L_9 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_8);
|
|
V_2 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_9, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_2;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_13 = __this->___m_Callbacks_1;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_15;
|
|
L_15 = EventCallbackList_get_Item_mDB9D16B9C9E12B1260CB6C7DAC3A07E4DD4A62A2(L_13, L_14, NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = EventCallbackFunctorBase_get_invokePolicy_m7465E70C33AC6326DCA4F9C3C9A4BC7671930053_inline(L_15, NULL);
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_16) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_006c;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
V_4 = (bool)G_B10_0;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_18 = __this->___m_Callbacks_1;
|
|
int32_t L_19 = V_1;
|
|
NullCheck(L_18);
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* L_20;
|
|
L_20 = EventCallbackList_get_Item_mDB9D16B9C9E12B1260CB6C7DAC3A07E4DD4A62A2(L_18, L_19, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_21 = ___0_evt;
|
|
int32_t L_22 = ___1_propagationPhase;
|
|
NullCheck(L_20);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(4 /* System.Void UnityEngine.UIElements.EventCallbackFunctorBase::Invoke(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPhase) */, L_20, L_21, L_22);
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_25 = __this->___m_Callbacks_1;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = EventCallbackList_get_Count_m2431721D83AFE7454CB2920D15C03B7825500670(L_25, NULL);
|
|
V_5 = (bool)((((int32_t)L_24) < ((int32_t)L_26))? 1 : 0);
|
|
bool L_27 = V_5;
|
|
if (L_27)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
int32_t L_28 = __this->___m_IsInvoking_3;
|
|
__this->___m_IsInvoking_3 = ((int32_t)il2cpp_codegen_subtract(L_28, 1));
|
|
int32_t L_29 = __this->___m_IsInvoking_3;
|
|
V_6 = (bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0);
|
|
bool L_30 = V_6;
|
|
if (!L_30)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_31 = __this->___m_TemporaryCallbacks_2;
|
|
V_7 = (bool)((!(((RuntimeObject*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)L_31) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_32 = V_7;
|
|
if (!L_32)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_33 = __this->___m_Callbacks_1;
|
|
il2cpp_codegen_runtime_class_init_inline(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
EventCallbackRegistry_ReleaseCallbackList_m781EC82FE1F90A0F32998738AB57BA7ACA9B8374(L_33, NULL);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_34 = __this->___m_TemporaryCallbacks_2;
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_35;
|
|
L_35 = EventCallbackRegistry_GetCallbackList_m9ACF5973C90A1B3FB67CD12FB39248E02263FD23(L_34, NULL);
|
|
__this->___m_Callbacks_1 = L_35;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Callbacks_1), (void*)L_35);
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_36 = __this->___m_TemporaryCallbacks_2;
|
|
EventCallbackRegistry_ReleaseCallbackList_m781EC82FE1F90A0F32998738AB57BA7ACA9B8374(L_36, NULL);
|
|
__this->___m_TemporaryCallbacks_2 = (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TemporaryCallbacks_2), (void*)(EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E*)NULL);
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackRegistry::HasTrickleDownHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackRegistry_HasTrickleDownHandlers_m1586C8C2C02F82AD8A5D6B713F01F8114EE3DE33 (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = __this->___m_Callbacks_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_1 = __this->___m_Callbacks_1;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline(L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackRegistry::HasBubbleHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackRegistry_HasBubbleHandlers_mB6FC43F1DB308DE15B293B6C0E801A186241F83C (EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_0 = __this->___m_Callbacks_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* L_1 = __this->___m_Callbacks_1;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline(L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackRegistry::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackRegistry__cctor_mF92203D2BEF913D561AA03835595138E379E9B9C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2* L_0 = (EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2*)il2cpp_codegen_object_new(EventCallbackListPool_t258FFD0B864AC29862A6ACF4F56A0340621783B2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
EventCallbackListPool__ctor_m48C8D9BAF4A5A345FF23C7068F2FBE8768D8D138(L_0, NULL);
|
|
((EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_StaticFields*)il2cpp_codegen_static_fields_for(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var))->___s_ListPool_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_StaticFields*)il2cpp_codegen_static_fields_for(EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85_il2cpp_TypeInfo_var))->___s_ListPool_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean UnityEngine.UIElements.KeyboardEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyboardEventDispatchingStrategy_CanDispatchEvent_m4EBCAD5D5BEA2B348E68798512FB03F3B7648ED7 (KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IKeyboardEvent_t7BA114B6B3F77E8383EA005E0AF8C94815516947_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IKeyboardEvent_t7BA114B6B3F77E8383EA005E0AF8C94815516947_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.KeyboardEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardEventDispatchingStrategy_DispatchEvent_m513866B1D4777ECD214DE08EE28DA1D90EB368FF (KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_panel;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
NullCheck(L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = InterfaceFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(3 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.IPanel::get_focusController() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_2);
|
|
NullCheck(L_3);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4;
|
|
L_4 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_3, NULL);
|
|
V_1 = L_4;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_1;
|
|
V_2 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
bool L_8 = L_7->___isIMGUIContainer_5;
|
|
V_3 = L_8;
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10 = V_1;
|
|
V_4 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)CastclassClass((RuntimeObject*)L_10, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_12 = V_4;
|
|
NullCheck(L_11);
|
|
bool L_13;
|
|
L_13 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_11, L_12, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_14 = V_4;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_14);
|
|
bool L_16;
|
|
L_16 = IMGUIContainer_SendEventToIMGUI_m3D953957F70AB7A0AA0F528D134AEB8177033271(L_14, L_15, (bool)1, (bool)1, NULL);
|
|
G_B6_0 = ((int32_t)(L_16));
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
V_5 = (bool)G_B6_0;
|
|
bool L_17 = V_5;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_18, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296(L_19, NULL);
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_21 = V_1;
|
|
NullCheck(L_20);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_20, L_21, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_22, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___0_evt;
|
|
RuntimeObject* L_24 = ___1_panel;
|
|
NullCheck(L_24);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25;
|
|
L_25 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_24);
|
|
NullCheck(L_23);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_23, L_25, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_26, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_27 = ___0_evt;
|
|
NullCheck(L_27);
|
|
bool L_28;
|
|
L_28 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_27, NULL);
|
|
V_6 = (bool)((((int32_t)L_28) == ((int32_t)0))? 1 : 0);
|
|
bool L_29 = V_6;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_30 = ___1_panel;
|
|
NullCheck(L_30);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31;
|
|
L_31 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_30);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_31, L_32, NULL);
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_33 = ___0_evt;
|
|
NullCheck(L_33);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_33, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_34 = ___0_evt;
|
|
NullCheck(L_34);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_34, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.KeyboardEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardEventDispatchingStrategy__ctor_m5523F5CF14EC10558302BF5EF9DA8E336362E9A8 (KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB* __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
|
|
// System.Void UnityEngine.UIElements.MouseEventsHelper::SendMouseOverMouseOut(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IMouseEvent,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventsHelper_SendMouseOverMouseOut_mC53497D84135203791027DAD5CFB68F7D994E3F0 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderMouse, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderMouse, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_mousePosition, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m5C8BA4454157A0AA816235F6C004A7DE07286002_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m67758DA9E515DDB691111B3C2AFDED133D94AEF9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* V_1 = NULL;
|
|
bool V_2 = false;
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* V_3 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_previousTopElementUnderMouse;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_previousTopElementUnderMouse;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_1, NULL);
|
|
G_B3_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___2_triggerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___3_mousePosition;
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* L_6;
|
|
L_6 = MouseEventBase_1_GetPooled_m5C8BA4454157A0AA816235F6C004A7DE07286002(L_4, L_5, (bool)0, MouseEventBase_1_GetPooled_m5C8BA4454157A0AA816235F6C004A7DE07286002_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0032:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* L_9 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_previousTopElementUnderMouse;
|
|
NullCheck(L_9);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_9, L_10, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = ___0_previousTopElementUnderMouse;
|
|
MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* L_12 = V_1;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(6 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, L_11, L_12);
|
|
goto IL_003d;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = ___1_currentTopElementUnderMouse;
|
|
V_2 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_13) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_14 = V_2;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = ___2_triggerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = ___3_mousePosition;
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* L_17;
|
|
L_17 = MouseEventBase_1_GetPooled_m67758DA9E515DDB691111B3C2AFDED133D94AEF9(L_15, L_16, (bool)0, MouseEventBase_1_GetPooled_m67758DA9E515DDB691111B3C2AFDED133D94AEF9_RuntimeMethod_var);
|
|
V_3 = L_17;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0064:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* L_18 = V_3;
|
|
if (!L_18)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* L_19 = V_3;
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_19);
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* L_20 = V_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = ___1_currentTopElementUnderMouse;
|
|
NullCheck(L_20);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_20, L_21, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22 = ___1_currentTopElementUnderMouse;
|
|
MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* L_23 = V_3;
|
|
NullCheck(L_22);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(6 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, L_22, L_23);
|
|
goto IL_006f;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
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
|
|
// System.Void UnityEngine.UIElements.PointerEventsHelper::SendOverOut(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IPointerEvent,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventsHelper_SendOverOut_m8EF7035D3995A3342E93DBFCFEB53159D2E05FF9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_previousTopElementUnderPointer, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_currentTopElementUnderPointer, RuntimeObject* ___2_triggerEvent, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_position, int32_t ___4_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_m6A04371AEFF51E2C3DA0E8580A84CA2BCF39642E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_mEB737E22C24C0FFC4F2D86E4FE3348C8168C277A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* V_1 = NULL;
|
|
bool V_2 = false;
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* V_3 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_previousTopElementUnderPointer;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_previousTopElementUnderPointer;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_1, NULL);
|
|
G_B3_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = ___2_triggerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___3_position;
|
|
int32_t L_6 = ___4_pointerId;
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* L_7;
|
|
L_7 = PointerEventBase_1_GetPooled_mEB737E22C24C0FFC4F2D86E4FE3348C8168C277A(L_4, L_5, L_6, PointerEventBase_1_GetPooled_mEB737E22C24C0FFC4F2D86E4FE3348C8168C277A_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0033:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* L_10 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = ___0_previousTopElementUnderPointer;
|
|
NullCheck(L_10);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_10, L_11, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = ___0_previousTopElementUnderPointer;
|
|
PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* L_13 = V_1;
|
|
NullCheck(L_12);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(6 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, L_12, L_13);
|
|
goto IL_003e;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = ___1_currentTopElementUnderPointer;
|
|
V_2 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_14) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_15 = V_2;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_16 = ___2_triggerEvent;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17 = ___3_position;
|
|
int32_t L_18 = ___4_pointerId;
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* L_19;
|
|
L_19 = PointerEventBase_1_GetPooled_m6A04371AEFF51E2C3DA0E8580A84CA2BCF39642E(L_16, L_17, L_18, PointerEventBase_1_GetPooled_m6A04371AEFF51E2C3DA0E8580A84CA2BCF39642E_RuntimeMethod_var);
|
|
V_3 = L_19;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0066:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* L_20 = V_3;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* L_21 = V_3;
|
|
NullCheck(L_21);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21);
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* L_22 = V_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_23 = ___1_currentTopElementUnderPointer;
|
|
NullCheck(L_22);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_22, L_23, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = ___1_currentTopElementUnderPointer;
|
|
PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* L_25 = V_3;
|
|
NullCheck(L_24);
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(6 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, L_24, L_25);
|
|
goto IL_0071;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
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
|
|
// System.Void UnityEngine.UIElements.PropagationPaths::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropagationPaths__ctor_m882DA89273F7511AAE67B189CFA01DB3ABDCF05B (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_0 = (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*)il2cpp_codegen_object_new(List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1(L_0, ((int32_t)16), List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var);
|
|
__this->___trickleDownPath_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___trickleDownPath_1), (void*)L_0);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_1 = (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*)il2cpp_codegen_object_new(List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1(L_1, 4, List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var);
|
|
__this->___targetElements_2 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___targetElements_2), (void*)L_1);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_2 = (List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95*)il2cpp_codegen_object_new(List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1(L_2, ((int32_t)16), List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var);
|
|
__this->___bubbleUpPath_3 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___bubbleUpPath_3), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.PropagationPaths::Copy(UnityEngine.UIElements.PropagationPaths)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* PropagationPaths_Copy_mF823B946D02EEEDB72F000A6941B6386AB03BE40 (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___0_paths, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* V_0 = NULL;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* L_0 = ((PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields*)il2cpp_codegen_static_fields_for(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var))->___s_Pool_0;
|
|
NullCheck(L_0);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_1;
|
|
L_1 = ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB(L_0, ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_3 = L_2->___trickleDownPath_1;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_4 = ___0_paths;
|
|
NullCheck(L_4);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_5 = L_4->___trickleDownPath_1;
|
|
NullCheck(L_3);
|
|
List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF(L_3, L_5, List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_7 = L_6->___targetElements_2;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_8 = ___0_paths;
|
|
NullCheck(L_8);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_9 = L_8->___targetElements_2;
|
|
NullCheck(L_7);
|
|
List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF(L_7, L_9, List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_11 = L_10->___bubbleUpPath_3;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_12 = ___0_paths;
|
|
NullCheck(L_12);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_13 = L_12->___bubbleUpPath_3;
|
|
NullCheck(L_11);
|
|
List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF(L_11, L_13, List_1_AddRange_mB8004F63D807C585217AB900A8B0AAF85B89C8EF_RuntimeMethod_var);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_14 = V_0;
|
|
V_1 = L_14;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.PropagationPaths::Build(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.EventBase,UnityEngine.UIElements.PropagationPaths/Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* PropagationPaths_Build_mF9E0B86F150240E207A3DAEFE5111FAD74B72653 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_elem, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, int32_t ___2_pathTypesRequested, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* V_0 = NULL;
|
|
bool V_1 = false;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* V_2 = NULL;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_elem;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___2_pathTypesRequested;
|
|
G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)NULL;
|
|
goto IL_00d8;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* L_3 = ((PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields*)il2cpp_codegen_static_fields_for(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var))->___s_Pool_0;
|
|
NullCheck(L_3);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_4;
|
|
L_4 = ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB(L_3, ObjectPool_1_Get_m6D96C23825DE01CEFD9527C300F65F45188F51BB_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_6 = L_5->___targetElements_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = ___0_elem;
|
|
NullCheck(L_6);
|
|
List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_inline(L_6, L_7, List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var);
|
|
goto IL_00ba;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_elem;
|
|
NullCheck(L_8);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_9;
|
|
L_9 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_8, NULL);
|
|
V_3 = L_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_3), NULL);
|
|
___0_elem = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = ___0_elem;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___1_evt;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = EventBase_get_ignoreCompositeRoots_m193D3963EBFA25A18D099AFFE0CD44206E2B81F8(L_13, NULL);
|
|
G_B9_0 = ((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
V_4 = (bool)G_B9_0;
|
|
bool L_15 = V_4;
|
|
if (!L_15)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_17 = L_16->___targetElements_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = ___0_elem;
|
|
NullCheck(L_17);
|
|
List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_inline(L_17, L_18, List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var);
|
|
goto IL_00b9;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
int32_t L_19 = ___2_pathTypesRequested;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_19&1))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = ___0_elem;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = CallbackEventHandler_HasTrickleDownHandlers_mAC77A79CBA1CDD39444B61175B48FEBC67AEB883(L_20, NULL);
|
|
G_B14_0 = ((int32_t)(L_21));
|
|
goto IL_007f;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
V_5 = (bool)G_B14_0;
|
|
bool L_22 = V_5;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_24 = L_23->___trickleDownPath_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = ___0_elem;
|
|
NullCheck(L_24);
|
|
List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_inline(L_24, L_25, List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
int32_t L_26 = ___2_pathTypesRequested;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_26&2))) == ((uint32_t)2))))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = ___0_elem;
|
|
NullCheck(L_27);
|
|
bool L_28;
|
|
L_28 = CallbackEventHandler_HasBubbleUpHandlers_m83DB6DB92A8417EC0EEDEAAB417882152131805C(L_27, NULL);
|
|
G_B19_0 = ((int32_t)(L_28));
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
V_6 = (bool)G_B19_0;
|
|
bool L_29 = V_6;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_31 = L_30->___bubbleUpPath_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32 = ___0_elem;
|
|
NullCheck(L_31);
|
|
List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_inline(L_31, L_32, List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_33 = ___0_elem;
|
|
NullCheck(L_33);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_34;
|
|
L_34 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_33, NULL);
|
|
V_3 = L_34;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_35;
|
|
L_35 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_3), NULL);
|
|
V_7 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_35) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_36 = V_7;
|
|
if (L_36)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_37 = V_0;
|
|
V_2 = L_37;
|
|
goto IL_00d8;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_38 = V_2;
|
|
return L_38;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PropagationPaths::Release()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropagationPaths_Release_m77921697630F59276740DBCA9E682DBD92ADD878 (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Release_mBED7FE0D073C450EA5B2CCE78D403ACF37DBCBB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_0 = __this->___bubbleUpPath_3;
|
|
NullCheck(L_0);
|
|
List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_inline(L_0, List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_1 = __this->___targetElements_2;
|
|
NullCheck(L_1);
|
|
List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_inline(L_1, List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_2 = __this->___trickleDownPath_1;
|
|
NullCheck(L_2);
|
|
List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_inline(L_2, List_1_Clear_mEDFAB2B4DB2068C66161077345E55EFB190D4AE4_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* L_3 = ((PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields*)il2cpp_codegen_static_fields_for(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var))->___s_Pool_0;
|
|
NullCheck(L_3);
|
|
ObjectPool_1_Release_mBED7FE0D073C450EA5B2CCE78D403ACF37DBCBB8(L_3, __this, ObjectPool_1_Release_mBED7FE0D073C450EA5B2CCE78D403ACF37DBCBB8_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PropagationPaths::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropagationPaths__cctor_mAB1049B6E05D75F9BDFC4FFD9B7528A372DA384E (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1__ctor_mAC1FD0696B9C947EC8757B15FA56BC0EB7C059EE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A* L_0 = (ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A*)il2cpp_codegen_object_new(ObjectPool_1_tBDA6763A1E27A0918624041DBF619B2364E9535A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ObjectPool_1__ctor_mAC1FD0696B9C947EC8757B15FA56BC0EB7C059EE(L_0, ((int32_t)100), ObjectPool_1__ctor_mAC1FD0696B9C947EC8757B15FA56BC0EB7C059EE_RuntimeMethod_var);
|
|
((PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields*)il2cpp_codegen_static_fields_for(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var))->___s_Pool_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_StaticFields*)il2cpp_codegen_static_fields_for(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var))->___s_Pool_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean UnityEngine.UIElements.DefaultDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DefaultDispatchingStrategy_CanDispatchEvent_mA1E621EC0EEA999F126A8B2D98CCCBE414B517C0 (DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5*)((IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5*)IsInstClass((RuntimeObject*)L_0, IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.DefaultDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDispatchingStrategy_DispatchEvent_m027DB63DD0443C8134BE4194A80327F431B0367E (DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_0, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_4, NULL);
|
|
NullCheck(L_3);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_3, (bool)((!(((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_5, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_6, NULL);
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = ___1_panel;
|
|
G_B5_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
bool L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
int64_t L_14;
|
|
L_14 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_13);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
int64_t L_15;
|
|
L_15 = EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991(EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
if ((((int64_t)L_14) == ((int64_t)L_15)))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_16 = ___0_evt;
|
|
NullCheck(L_16);
|
|
int64_t L_17;
|
|
L_17 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
int64_t L_18;
|
|
L_18 = EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B(EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
G_B10_0 = ((((int64_t)L_17) == ((int64_t)L_18))? 1 : 0);
|
|
goto IL_0068;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
V_2 = (bool)G_B10_0;
|
|
bool L_19 = V_2;
|
|
if (!L_19)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_20 = ___1_panel;
|
|
NullCheck(L_20);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21;
|
|
L_21 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_20);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_21, L_22, NULL);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___0_evt;
|
|
NullCheck(L_23);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_23, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.DefaultDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDispatchingStrategy__ctor_m142BF3B927F318FA373FF832F02D1615A19F7BCA (DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A* __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
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::set_tooltip(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent_set_tooltip_m989CA98943B7E44DDCC4FFC4940F8701A65C4980 (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CtooltipU3Ek__BackingField_18 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtooltipU3Ek__BackingField_18), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::set_rect(UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent_set_rect_mCD96D19C063247F8DE3B8553843C27611286A5FD (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3CrectU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent_Init_m159139ABD96BD64CF93503626607763A2890B52B (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_Init_m56B39863E46D8744FA9932115F6B12AA94C46661_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_1_Init_m56B39863E46D8744FA9932115F6B12AA94C46661(__this, EventBase_1_Init_m56B39863E46D8744FA9932115F6B12AA94C46661_RuntimeMethod_var);
|
|
TooltipEvent_LocalInit_mDF107572A323DC6EA8D5C67E6D7BB9D92986042C(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent_LocalInit_mDF107572A323DC6EA8D5C67E6D7BB9D92986042C (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 3, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D));
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = V_0;
|
|
TooltipEvent_set_rect_mCD96D19C063247F8DE3B8553843C27611286A5FD_inline(__this, L_0, NULL);
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
TooltipEvent_set_tooltip_m989CA98943B7E44DDCC4FFC4940F8701A65C4980_inline(__this, L_1, NULL);
|
|
EventBase_set_ignoreCompositeRoots_m07FC5BFF70C642A131303CEC424BDE3A7A31CB68(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TooltipEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipEvent__ctor_m3231FF5C06822256163054074F073B3AF11FAEEE (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1__ctor_mB1E5663AF6567CB703A4F1484568B8F32A0CD723_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tA8F4CCB45CFF201C5BB301A14B9C4FC60522358C_il2cpp_TypeInfo_var);
|
|
EventBase_1__ctor_mB1E5663AF6567CB703A4F1484568B8F32A0CD723(__this, EventBase_1__ctor_mB1E5663AF6567CB703A4F1484568B8F32A0CD723_RuntimeMethod_var);
|
|
TooltipEvent_LocalInit_mDF107572A323DC6EA8D5C67E6D7BB9D92986042C(__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
|
|
// System.Boolean UnityEngine.UIElements.MouseCaptureDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseCaptureDispatchingStrategy_CanDispatchEvent_m891F7EC5E3C5D776E77706E3FA16BC08691FEEF2 (MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
NullCheck(L_1);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2;
|
|
L_2 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_1, NULL);
|
|
G_B3_0 = ((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseCaptureDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureDispatchingStrategy_DispatchEvent_mC08ABDC6BCF4C2A70DB26C9AD0BA6F689459E3E4 (MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m0D0D492BF3E4484B89111ADF52C02D0B5643D2E6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t1218DA3104C9EAD7C32A1D5B975FD26D77F76928_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
RuntimeObject* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_11 = NULL;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B21_0 = 0;
|
|
int32_t G_B23_0 = 0;
|
|
int32_t G_B28_0 = 0;
|
|
int32_t G_B34_0 = 0;
|
|
int32_t G_B40_0 = 0;
|
|
RuntimeObject* G_B43_0 = NULL;
|
|
RuntimeObject* G_B42_0 = NULL;
|
|
int32_t G_B44_0 = 0;
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* G_B49_0 = NULL;
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* G_B48_0 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
RuntimeObject* L_0 = ___1_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
RuntimeObject* L_1 = ___1_panel;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
RuntimeObject* L_3;
|
|
L_3 = PointerCaptureHelper_GetCapturingElement_m30DED02760CA5544CF35162656E2E3959DC8103E(L_1, L_2, NULL);
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_1 = G_B3_0;
|
|
RuntimeObject* L_4 = V_1;
|
|
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_5 = V_4;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
goto IL_021e;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
V_2 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_6, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int64_t L_8;
|
|
L_8 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_7);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t1218DA3104C9EAD7C32A1D5B975FD26D77F76928_il2cpp_TypeInfo_var);
|
|
int64_t L_9;
|
|
L_9 = EventBase_1_TypeId_m0D0D492BF3E4484B89111ADF52C02D0B5643D2E6(EventBase_1_TypeId_m0D0D492BF3E4484B89111ADF52C02D0B5643D2E6_RuntimeMethod_var);
|
|
if ((((int64_t)L_8) == ((int64_t)L_9)))
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_2;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12;
|
|
L_12 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_11, NULL);
|
|
G_B9_0 = ((((RuntimeObject*)(RuntimeObject*)L_12) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
V_5 = (bool)G_B9_0;
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_2;
|
|
MouseCaptureController_ReleaseMouse_m1C7324C27A04E2BBA83A5C868E1816B3F3B0AC21(L_14, NULL);
|
|
goto IL_021e;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
RuntimeObject* L_15 = ___1_panel;
|
|
if (!L_15)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_2;
|
|
if (!L_16)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = V_2;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18;
|
|
L_18 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_17, NULL);
|
|
RuntimeObject* L_19 = ___1_panel;
|
|
G_B15_0 = ((((int32_t)((((RuntimeObject*)(RuntimeObject*)L_18) == ((RuntimeObject*)(RuntimeObject*)L_19))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
G_B15_0 = 0;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
V_6 = (bool)G_B15_0;
|
|
bool L_20 = V_6;
|
|
if (!L_20)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_021e;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_21 = ___0_evt;
|
|
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_22 = V_3;
|
|
if (!L_22)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___0_evt;
|
|
NullCheck(L_23);
|
|
RuntimeObject* L_24;
|
|
L_24 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___0_evt;
|
|
NullCheck(L_25);
|
|
RuntimeObject* L_26;
|
|
L_26 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_25, NULL);
|
|
RuntimeObject* L_27 = V_1;
|
|
G_B21_0 = ((((RuntimeObject*)(RuntimeObject*)L_26) == ((RuntimeObject*)(RuntimeObject*)L_27))? 1 : 0);
|
|
goto IL_009a;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
G_B21_0 = 1;
|
|
}
|
|
|
|
IL_009a:
|
|
{
|
|
G_B23_0 = G_B21_0;
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
G_B23_0 = 0;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
V_7 = (bool)G_B23_0;
|
|
bool L_28 = V_7;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 1;
|
|
int32_t L_29 = V_0;
|
|
V_0 = ((int32_t)((int32_t)L_29|2));
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
NullCheck(L_30);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_31;
|
|
L_31 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c0;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = ___0_evt;
|
|
NullCheck(L_32);
|
|
RuntimeObject* L_33;
|
|
L_33 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_32, NULL);
|
|
G_B28_0 = ((((RuntimeObject*)(RuntimeObject*)L_33) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_00c1;
|
|
}
|
|
|
|
IL_00c0:
|
|
{
|
|
G_B28_0 = 0;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
V_8 = (bool)G_B28_0;
|
|
bool L_34 = V_8;
|
|
if (!L_34)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 1;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = ___0_evt;
|
|
NullCheck(L_35);
|
|
int64_t L_36;
|
|
L_36 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_35);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
int64_t L_37;
|
|
L_37 = EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991(EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
if ((((int64_t)L_36) == ((int64_t)L_37)))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = ___0_evt;
|
|
NullCheck(L_38);
|
|
int64_t L_39;
|
|
L_39 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_38);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
int64_t L_40;
|
|
L_40 = EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B(EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
if ((((int64_t)L_39) == ((int64_t)L_40)))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = ___0_evt;
|
|
NullCheck(L_41);
|
|
int64_t L_42;
|
|
L_42 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_41);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tD5612D4D9A3CAD26CDB27B9D024C6D018D72FBC9_il2cpp_TypeInfo_var);
|
|
int64_t L_43;
|
|
L_43 = EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB(EventBase_1_TypeId_mED749E1E474001E2C04278A25601312E1BEA83DB_RuntimeMethod_var);
|
|
G_B34_0 = ((((int64_t)L_42) == ((int64_t)L_43))? 1 : 0);
|
|
goto IL_00f5;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
G_B34_0 = 1;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
V_9 = (bool)G_B34_0;
|
|
bool L_44 = V_9;
|
|
if (!L_44)
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
int32_t L_45 = V_0;
|
|
V_10 = (bool)((((int32_t)((int32_t)((int32_t)L_45&1))) == ((int32_t)1))? 1 : 0);
|
|
bool L_46 = V_10;
|
|
if (!L_46)
|
|
{
|
|
goto IL_021e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_47 = ___1_panel;
|
|
V_11 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_47, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_48 = V_3;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_49 = V_11;
|
|
G_B40_0 = ((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_49) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
G_B40_0 = 0;
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
V_13 = (bool)G_B40_0;
|
|
bool L_50 = V_13;
|
|
if (!L_50)
|
|
{
|
|
goto IL_015a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_51 = V_3;
|
|
RuntimeObject* L_52 = ((RuntimeObject*)IsInst((RuntimeObject*)L_51, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var));
|
|
G_B42_0 = L_52;
|
|
if (L_52)
|
|
{
|
|
G_B43_0 = L_52;
|
|
goto IL_0136;
|
|
}
|
|
}
|
|
{
|
|
G_B44_0 = 1;
|
|
goto IL_013b;
|
|
}
|
|
|
|
IL_0136:
|
|
{
|
|
NullCheck(G_B43_0);
|
|
bool L_53;
|
|
L_53 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IMouseEventInternal::get_recomputeTopElementUnderMouse() */, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var, G_B43_0);
|
|
G_B44_0 = ((int32_t)(L_53));
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
V_14 = (bool)G_B44_0;
|
|
bool L_54 = V_14;
|
|
V_15 = L_54;
|
|
bool L_55 = V_15;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0159;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_56 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_57 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
RuntimeObject* L_58 = V_3;
|
|
NullCheck(L_58);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_59;
|
|
L_59 = InterfaceFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(1 /* UnityEngine.Vector2 UnityEngine.UIElements.IMouseEvent::get_mousePosition() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_58);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_60 = ___0_evt;
|
|
NullCheck(L_56);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_61;
|
|
L_61 = BaseVisualElementPanel_RecomputeTopElementUnderPointer_mF3D6110A28FCCF72408FE62A21A4F57E4AC717AF(L_56, L_57, L_59, L_60, NULL);
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
}
|
|
|
|
IL_015a:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_62 = ___0_evt;
|
|
NullCheck(L_62);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_62, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_63 = ___0_evt;
|
|
RuntimeObject* L_64 = V_1;
|
|
NullCheck(L_63);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_63, L_64, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_65 = ___0_evt;
|
|
NullCheck(L_65);
|
|
bool L_66;
|
|
L_66 = EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814(L_65, NULL);
|
|
V_12 = L_66;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_67 = ___0_evt;
|
|
NullCheck(L_67);
|
|
EventBase_set_skipDisabledElements_mCD199A8D744CA42DC9A331A2795DAEB2CCA9243D(L_67, (bool)0, NULL);
|
|
RuntimeObject* L_68 = V_1;
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* L_69 = ((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)IsInstClass((RuntimeObject*)L_68, CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var));
|
|
G_B48_0 = L_69;
|
|
if (L_69)
|
|
{
|
|
G_B49_0 = L_69;
|
|
goto IL_0186;
|
|
}
|
|
}
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_0186:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_70 = ___0_evt;
|
|
NullCheck(G_B49_0);
|
|
CallbackEventHandler_HandleEventAtTargetPhase_m681B23C2CCCF3064FEC2DFF49645043E7F909B18(G_B49_0, L_70, NULL);
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
int32_t L_71 = V_0;
|
|
V_16 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_71&2))) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_72 = V_16;
|
|
if (!L_72)
|
|
{
|
|
goto IL_01af;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_73 = ___0_evt;
|
|
NullCheck(L_73);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_73, (RuntimeObject*)NULL, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_74 = ___0_evt;
|
|
bool L_75 = V_12;
|
|
NullCheck(L_74);
|
|
EventBase_set_skipDisabledElements_mCD199A8D744CA42DC9A331A2795DAEB2CCA9243D(L_74, L_75, NULL);
|
|
}
|
|
|
|
IL_01af:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_76 = ___0_evt;
|
|
NullCheck(L_76);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_76, (RuntimeObject*)NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_77 = ___0_evt;
|
|
NullCheck(L_77);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_77, 0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_78 = ___0_evt;
|
|
NullCheck(L_78);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_78, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_79 = ___0_evt;
|
|
NullCheck(L_79);
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_80;
|
|
L_80 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(L_79, NULL);
|
|
RuntimeObject* L_81 = V_1;
|
|
NullCheck(L_80);
|
|
List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_inline(L_80, L_81, List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_82 = ___0_evt;
|
|
int32_t L_83 = V_0;
|
|
NullCheck(L_82);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_82, (bool)((((int32_t)((int32_t)((int32_t)L_83&2))) == ((int32_t)2))? 1 : 0), NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_84 = ___0_evt;
|
|
NullCheck(L_84);
|
|
RuntimeObject* L_85;
|
|
L_85 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_84, NULL);
|
|
V_17 = (bool)((!(((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_85, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_86 = V_17;
|
|
if (!L_86)
|
|
{
|
|
goto IL_0213;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_87 = ___0_evt;
|
|
NullCheck(L_87);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_87, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_88 = ___0_evt;
|
|
NullCheck(L_88);
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_89;
|
|
L_89 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(L_88, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_90 = ___0_evt;
|
|
NullCheck(L_90);
|
|
RuntimeObject* L_91;
|
|
L_91 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_90, NULL);
|
|
NullCheck(L_89);
|
|
List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_inline(L_89, L_91, List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
goto IL_021d;
|
|
}
|
|
|
|
IL_0213:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_92 = ___0_evt;
|
|
NullCheck(L_92);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_92, (bool)0, NULL);
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
}
|
|
|
|
IL_021e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseCaptureDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureDispatchingStrategy__ctor_m60B0E3EEFE4F7DB32F8524587FC9A38B2C03F0A7 (MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439* __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
|
|
// System.Int64 UnityEngine.UIElements.EventBase::RegisterEventType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_RegisterEventType_mCF0405EC30E253F9EEE955CEC9A17E8C069B5532 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
{
|
|
int64_t L_0 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields*)il2cpp_codegen_static_fields_for(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var))->___s_LastTypeId_0;
|
|
int64_t L_1 = ((int64_t)il2cpp_codegen_add(L_0, ((int64_t)1)));
|
|
((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields*)il2cpp_codegen_static_fields_for(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var))->___s_LastTypeId_0 = L_1;
|
|
V_0 = L_1;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int64_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_get_eventTypeId_mCC2BDB7842F174E625C4A3254208EB2C83C1ED73 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return ((int64_t)(-1));
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase::get_timestamp()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_get_timestamp_mC9B2EEBB3D65DD2032AAF19FEB0032AEA8D303A0 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CtimestampU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_timestamp(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_timestamp_m03956857630FFA7521D46FE9FE41184B267B67A8 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CtimestampU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.UInt64 UnityEngine.UIElements.EventBase::get_eventId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EventBase_get_eventId_m4951447F4F1FD94AD7279F8CB274438D012746AA (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = __this->___U3CeventIdU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_eventId(System.UInt64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_eventId_m0DE45A9CAAD8F63AEC11C42B62647136232EDEB7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = ___0_value;
|
|
__this->___U3CeventIdU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_triggerEventId(System.UInt64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_triggerEventId_m00372E494A55D3121585C1BB431E45CE5A7BB69E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = ___0_value;
|
|
__this->___U3CtriggerEventIdU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::SetTriggerEventId(System.UInt64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_SetTriggerEventId_m5ABA5B95F502F662C73F8416BF8C232A2F000179 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = ___0_id;
|
|
EventBase_set_triggerEventId_m00372E494A55D3121585C1BB431E45CE5A7BB69E_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventBase/EventPropagation UnityEngine.UIElements.EventBase::get_propagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpropagationU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagation(UnityEngine.UIElements.EventBase/EventPropagation)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpropagationU3Ek__BackingField_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.EventBase::get_path()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* V_2 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B7_1 = 0;
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_0 = __this->___m_Path_6;
|
|
V_0 = (bool)((((RuntimeObject*)(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = EventBase_get_tricklesDown_m8AA6FDD44359CE2C3BF327D510B49E6C48D5CFF3(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = 0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
V_1 = G_B4_0;
|
|
int32_t L_3 = V_1;
|
|
bool L_4;
|
|
L_4 = EventBase_get_bubbles_mE2783C986742080BD0744DAF34D367B72F85FFAE(__this, NULL);
|
|
G_B5_0 = L_3;
|
|
if (L_4)
|
|
{
|
|
G_B6_0 = L_3;
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = 0;
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
G_B7_0 = 2;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_1 = ((int32_t)((int32_t)G_B7_1|G_B7_0));
|
|
RuntimeObject* L_5;
|
|
L_5 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(__this, NULL);
|
|
int32_t L_6 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_7;
|
|
L_7 = PropagationPaths_Build_mF9E0B86F150240E207A3DAEFE5111FAD74B72653(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_5, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), __this, L_6, NULL);
|
|
__this->___m_Path_6 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Path_6), (void*)L_7);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_8 = __this->___m_Path_6;
|
|
EventDebugger_LogPropagationPaths_m2320DCFA24AE8AED1A31B20717E82133AD16099E(__this, L_8, NULL);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_9 = __this->___m_Path_6;
|
|
V_2 = L_9;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_path(UnityEngine.UIElements.PropagationPaths)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_path_mB1DA0B623A489764AB4B394B3D6EDA564BEBF73E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_0 = ___0_value;
|
|
V_0 = (bool)((!(((RuntimeObject*)(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_2 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_3;
|
|
L_3 = PropagationPaths_Copy_mF823B946D02EEEDB72F000A6941B6386AB03BE40(L_2, NULL);
|
|
__this->___m_Path_6 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Path_6), (void*)L_3);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus UnityEngine.UIElements.EventBase::get_lifeCycleStatus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3ClifeCycleStatusU3Ek__BackingField_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_lifeCycleStatus(UnityEngine.UIElements.EventBase/LifeCycleStatus)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3ClifeCycleStatusU3Ek__BackingField_7 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PreDispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreDispatch_m178474CC78BEB779C66107A0C31F3EF10AEA3C69 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PreDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreDispatch_mD788394C54A5400B25B423AF5DC41AA318A33DC4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VirtualActionInvoker0::Invoke(6 /* System.Void UnityEngine.UIElements.EventBase::PreDispatch() */, __this);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PostDispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PostDispatch_mE3CA5167B186CEC4C1E2215CF06200EBA09BFC8B (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PostDispatch_mC830955EA32723BF0C10CCB37E01197CBADC07B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VirtualActionInvoker0::Invoke(8 /* System.Void UnityEngine.UIElements.EventBase::PostDispatch() */, __this);
|
|
EventBase_set_processed_m64A260997810D628DDA923C07B66600A4869663E(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_bubbles()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_bubbles_mE2783C986742080BD0744DAF34D367B72F85FFAE (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_tricklesDown()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_tricklesDown_m8AA6FDD44359CE2C3BF327D510B49E6C48D5CFF3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_skipDisabledElements()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_skipDisabledElements(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_skipDisabledElements_mCD199A8D744CA42DC9A331A2795DAEB2CCA9243D (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)((int32_t)L_2|8)), NULL);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-9))), NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_ignoreCompositeRoots()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_ignoreCompositeRoots_m193D3963EBFA25A18D099AFFE0CD44206E2B81F8 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_ignoreCompositeRoots(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_ignoreCompositeRoots_m07FC5BFF70C642A131303CEC424BDE3A7A31CB68 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)16))), NULL);
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-17))), NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_leafTarget()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CleafTargetU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_leafTarget(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_leafTarget_mA88E8A073861DE9C4EADF3E9898B3BF66C17E426 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CleafTargetU3Ek__BackingField_8 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CleafTargetU3Ek__BackingField_8), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_target()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_Target_9;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_target(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___m_Target_9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Target_9), (void*)L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(__this, NULL);
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_value;
|
|
EventBase_set_leafTarget_mA88E8A073861DE9C4EADF3E9898B3BF66C17E426_inline(__this, L_3, NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler> UnityEngine.UIElements.EventBase::get_skipElements()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_0 = __this->___U3CskipElementsU3Ek__BackingField_10;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::Skip(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_h, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_mA394BA9DBC3AF1F855E619DBC319FE0C9F77CADB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_0;
|
|
L_0 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_h;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_mA394BA9DBC3AF1F855E619DBC319FE0C9F77CADB(L_0, L_1, List_1_Contains_mA394BA9DBC3AF1F855E619DBC319FE0C9F77CADB_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isPropagationStopped()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isPropagationStopped(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isPropagationStopped_m349B9F6FFE653ED556DCA0227F5B9EF98B2C1837 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|1)), NULL);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-2))), NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::StopPropagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_isPropagationStopped_m349B9F6FFE653ED556DCA0227F5B9EF98B2C1837(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isImmediatePropagationStopped()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isImmediatePropagationStopped_m23F718E5FA5FB49FE12BA560B8362B95E0C7F5D3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&2))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isImmediatePropagationStopped(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isImmediatePropagationStopped_m6E1827CBF9C871484A3B7CF197B167188CEB4A90 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|2)), NULL);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-3))), NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::StopImmediatePropagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_StopImmediatePropagation_m2D6646624DDC02AE96657F5EAD5BC0361380A8DA (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_isPropagationStopped_m349B9F6FFE653ED556DCA0227F5B9EF98B2C1837(__this, (bool)1, NULL);
|
|
EventBase_set_isImmediatePropagationStopped_m6E1827CBF9C871484A3B7CF197B167188CEB4A90(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isDefaultPrevented()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&4))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_isDefaultPrevented(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_isDefaultPrevented_m7897125F338C7979D4CC1B2C2E7C8D8F58779BAF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|4)), NULL);
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-5))), NULL);
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::PreventDefault()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline(__this, NULL);
|
|
V_0 = (bool)((((int32_t)((int32_t)((int32_t)L_0&4))) == ((int32_t)4))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_set_isDefaultPrevented_m7897125F338C7979D4CC1B2C2E7C8D8F58779BAF(__this, (bool)1, NULL);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.PropagationPhase UnityEngine.UIElements.EventBase::get_propagationPhase()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpropagationPhaseU3Ek__BackingField_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagationPhase(UnityEngine.UIElements.PropagationPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpropagationPhaseU3Ek__BackingField_11 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_currentTarget_m6F265B85FF86C35F62CFDF144B80B383DA9C503B (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_CurrentTarget_12;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_currentTarget_m778A667A791A9A67D61010F9B6A2A69D961C4C14 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___m_CurrentTarget_12 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentTarget_12), (void*)L_0);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_1;
|
|
L_1 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3;
|
|
L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, __this);
|
|
V_1 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_3, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_1;
|
|
V_2 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6;
|
|
L_6 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9(L_7, L_8, NULL);
|
|
NullCheck(L_6);
|
|
Event_set_mousePosition_m221CDC5C9556DE91E82242A693D9E14FAC371F38(L_6, L_9, NULL);
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_10;
|
|
L_10 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline(__this, NULL);
|
|
NullCheck(L_10);
|
|
Event_set_mousePosition_m221CDC5C9556DE91E82242A693D9E14FAC371F38(L_10, L_11, NULL);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_dispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_dispatch_mD276B79138918A551A035A384CB801D17166406F (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_dispatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|8)), NULL);
|
|
EventBase_set_dispatched_m75E34CEE2FCF7D82C9145C3B92031B019F594C11(__this, (bool)1, NULL);
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-9))), NULL);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::MarkReceivedByDispatcher()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_MarkReceivedByDispatcher_m25808B138D5E5AA4BA0562ECCEDA82B763A87112 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA72C000B1D894580D2D6DBD1EE18EBBDF2AF6E4C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
bool L_0;
|
|
L_0 = EventBase_get_dispatched_mCDBF6C42565B3273C7D9A08D7C6186A528900FD7(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0), _stringLiteralA72C000B1D894580D2D6DBD1EE18EBBDF2AF6E4C, NULL);
|
|
EventBase_set_dispatched_m75E34CEE2FCF7D82C9145C3B92031B019F594C11(__this, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_dispatched()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_dispatched_mCDBF6C42565B3273C7D9A08D7C6186A528900FD7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_dispatched(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_dispatched_m75E34CEE2FCF7D82C9145C3B92031B019F594C11 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)512))), NULL);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-513))), NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_processed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_processed_mC99F191F8FCB064BEAC4500D80EBDDC400A461B7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)1024)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_processed(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_processed_m64A260997810D628DDA923C07B66600A4869663E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)1024))), NULL);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-1025))), NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_processedByFocusController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)2048)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_processedByFocusController(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_processedByFocusController_mEC214B328484B60572EEE867ACB5527396436155 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)2048))), NULL);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-2049))), NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_stopDispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_stopDispatch_m33A3AF345D167E57385AC3B24D48265500B4F618 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_stopDispatch(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)64))), NULL);
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-65))), NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_propagateToIMGUI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_propagateToIMGUI(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)128))), NULL);
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-129))), NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_imguiEventIsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_imguiEventIsValid_mA6B8FC1455F670535AFEC167A8AF8EFC51AF6765 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_imguiEventIsValid(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_imguiEventIsValid_m34958942B271A5D824C2CECA229320EBEAABFB65 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)32))), NULL);
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-33))), NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Event UnityEngine.UIElements.EventBase::get_imguiEvent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* V_0 = NULL;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B3_0 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = EventBase_get_imguiEventIsValid_mA6B8FC1455F670535AFEC167A8AF8EFC51AF6765(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)(NULL));
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_1 = __this->___m_ImguiEvent_13;
|
|
G_B3_0 = L_1;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_imguiEvent(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_imguiEvent_m72FEAD8F7611927C077B45BAA719C15D39E9F4F4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = __this->___m_ImguiEvent_13;
|
|
V_0 = (bool)((((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_2, NULL);
|
|
__this->___m_ImguiEvent_13 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ImguiEvent_13), (void*)L_2);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = ___0_value;
|
|
V_1 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5 = __this->___m_ImguiEvent_13;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6 = ___0_value;
|
|
NullCheck(L_5);
|
|
Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5(L_5, L_6, NULL);
|
|
EventBase_set_imguiEventIsValid_m34958942B271A5D824C2CECA229320EBEAABFB65(__this, (bool)1, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_value;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = Event_get_mousePosition_mD6D2DF45C75E6FADD415D27D0E93563DED37D9B9(L_7, NULL);
|
|
EventBase_set_originalMousePosition_m5374CBDE6D514D283709EE51F513B54A3423A81A_inline(__this, L_8, NULL);
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
EventBase_set_imguiEventIsValid_m34958942B271A5D824C2CECA229320EBEAABFB65(__this, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.EventBase::get_originalMousePosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CoriginalMousePositionU3Ek__BackingField_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_originalMousePosition(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_originalMousePosition_m5374CBDE6D514D283709EE51F513B54A3423A81A (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CoriginalMousePositionU3Ek__BackingField_14 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_Init_m0232C045D6ADFA1ED826CA5D4E232A4635F623B1 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_LocalInit_m24E272F5D1A5DC03019DFF9002B8144E31BD67AF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_LocalInit_m24E272F5D1A5DC03019DFF9002B8144E31BD67AF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m9514E9E35B642F957084FF90C965803456E18805_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* G_B2_0 = NULL;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* G_B1_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_0;
|
|
L_0 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
EventBase_set_timestamp_m03956857630FFA7521D46FE9FE41184B267B67A8_inline(__this, L_0, NULL);
|
|
EventBase_set_triggerEventId_m00372E494A55D3121585C1BB431E45CE5A7BB69E_inline(__this, ((int64_t)0), NULL);
|
|
uint64_t L_1 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields*)il2cpp_codegen_static_fields_for(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var))->___s_NextEventId_1;
|
|
uint64_t L_2 = L_1;
|
|
((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_StaticFields*)il2cpp_codegen_static_fields_for(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var))->___s_NextEventId_1 = ((int64_t)il2cpp_codegen_add((int64_t)L_2, ((int64_t)1)));
|
|
EventBase_set_eventId_m0DE45A9CAAD8F63AEC11C42B62647136232EDEB7_inline(__this, L_2, NULL);
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 0, NULL);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_3 = __this->___m_Path_6;
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_4 = L_3;
|
|
G_B1_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B2_0 = L_4;
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
PropagationPaths_Release_m77921697630F59276740DBCA9E682DBD92ADD878(G_B2_0, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
__this->___m_Path_6 = (PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Path_6), (void*)(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)NULL);
|
|
EventBase_set_leafTarget_mA88E8A073861DE9C4EADF3E9898B3BF66C17E426_inline(__this, (RuntimeObject*)NULL, NULL);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(__this, (RuntimeObject*)NULL, NULL);
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_5;
|
|
L_5 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(__this, NULL);
|
|
NullCheck(L_5);
|
|
List_1_Clear_m9514E9E35B642F957084FF90C965803456E18805_inline(L_5, List_1_Clear_m9514E9E35B642F957084FF90C965803456E18805_RuntimeMethod_var);
|
|
EventBase_set_isPropagationStopped_m349B9F6FFE653ED556DCA0227F5B9EF98B2C1837(__this, (bool)0, NULL);
|
|
EventBase_set_isImmediatePropagationStopped_m6E1827CBF9C871484A3B7CF197B167188CEB4A90(__this, (bool)0, NULL);
|
|
EventBase_set_isDefaultPrevented_m7897125F338C7979D4CC1B2C2E7C8D8F58779BAF(__this, (bool)0, NULL);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(__this, 0, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
EventBase_set_originalMousePosition_m5374CBDE6D514D283709EE51F513B54A3423A81A_inline(__this, L_6, NULL);
|
|
__this->___m_CurrentTarget_12 = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_CurrentTarget_12), (void*)(RuntimeObject*)NULL);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(__this, (bool)0, NULL);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(__this, (bool)0, NULL);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(__this, (bool)1, NULL);
|
|
EventBase_set_dispatched_m75E34CEE2FCF7D82C9145C3B92031B019F594C11(__this, (bool)0, NULL);
|
|
EventBase_set_processed_m64A260997810D628DDA923C07B66600A4869663E(__this, (bool)0, NULL);
|
|
EventBase_set_processedByFocusController_mEC214B328484B60572EEE867ACB5527396436155(__this, (bool)0, NULL);
|
|
EventBase_set_imguiEventIsValid_m34958942B271A5D824C2CECA229320EBEAABFB65(__this, (bool)0, NULL);
|
|
EventBase_set_pooled_m2010D79336024981A70A73A9BE586CBBA7B82C84(__this, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase__ctor_m2A31FF111C7E009608D14C6DD4971E9524943DC9 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m484EBAB01215728D1AF4C83F284F25A095D09D3E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_0 = (List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3*)il2cpp_codegen_object_new(List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m484EBAB01215728D1AF4C83F284F25A095D09D3E(L_0, List_1__ctor_m484EBAB01215728D1AF4C83F284F25A095D09D3E_RuntimeMethod_var);
|
|
__this->___U3CskipElementsU3Ek__BackingField_10 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CskipElementsU3Ek__BackingField_10), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
__this->___m_ImguiEvent_13 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ImguiEvent_13), (void*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)NULL);
|
|
EventBase_LocalInit_m24E272F5D1A5DC03019DFF9002B8144E31BD67AF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_pooled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_pooled_m62460211AFF2CE6FEEF3D979AD3BE8C49E3F7182 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::set_pooled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_pooled_m2010D79336024981A70A73A9BE586CBBA7B82C84 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_2|((int32_t)16))), NULL);
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline(__this, NULL);
|
|
EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline(__this, ((int32_t)((int32_t)L_3&((int32_t)-17))), NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
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
|
|
// UnityEngine.UIElements.CallbackPhase UnityEngine.UIElements.EventCallbackFunctorBase::get_phase()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6 (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CphaseU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.InvokePolicy UnityEngine.UIElements.EventCallbackFunctorBase::get_invokePolicy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_invokePolicy_m7465E70C33AC6326DCA4F9C3C9A4BC7671930053 (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CinvokePolicyU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallbackFunctorBase::.ctor(UnityEngine.UIElements.CallbackPhase,UnityEngine.UIElements.InvokePolicy)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallbackFunctorBase__ctor_m0E166604ABD1585BED07E968675B24A2B12ABC83 (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, int32_t ___0_phase, int32_t ___1_invokePolicy, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_phase;
|
|
__this->___U3CphaseU3Ek__BackingField_0 = L_0;
|
|
int32_t L_1 = ___1_invokePolicy;
|
|
__this->___U3CinvokePolicyU3Ek__BackingField_1 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventCallbackFunctorBase::PhaseMatches(UnityEngine.UIElements.PropagationPhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventCallbackFunctorBase_PhaseMatches_m139463A6A6712C570ABF1C772F3F9194D12F70BE (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, int32_t ___0_propagationPhase, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline(__this, NULL);
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)1)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)2)))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_4 = ___0_propagationPhase;
|
|
if ((((int32_t)L_4) == ((int32_t)1)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = ___0_propagationPhase;
|
|
G_B7_0 = ((((int32_t)((((int32_t)L_5) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_2 = (bool)G_B7_0;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_7 = ___0_propagationPhase;
|
|
if ((((int32_t)L_7) == ((int32_t)2)))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_propagationPhase;
|
|
G_B13_0 = ((((int32_t)((((int32_t)L_8) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
G_B13_0 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
V_4 = (bool)G_B13_0;
|
|
bool L_9 = V_4;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
bool L_10 = V_3;
|
|
return L_10;
|
|
}
|
|
}
|
|
#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
|
|
// System.Boolean UnityEngine.UIElements.PointerEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerEventDispatchingStrategy_CanDispatchEvent_mC4FC97806CE0D92B2AC3A43CED4EA3A2F85A229D (PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_DispatchEvent_m6ACB39BD4E93321264BBCA7FBDFADFF9AD00E384 (PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
RuntimeObject* L_1 = ___1_panel;
|
|
PointerEventDispatchingStrategy_SetBestTargetForEvent_mF913AD15E29D786201B3606FB42D0C3E71E9BF58(L_0, L_1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
PointerEventDispatchingStrategy_SendEventToTarget_mA552787E3085D0F8FF15E4D2041B267C1CE88237(L_2, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_3, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::SendEventToTarget(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_SendEventToTarget_mA552787E3085D0F8FF15E4D2041B267C1CE88237 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_0, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_3, NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::SetBestTargetForEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_SetBestTargetForEvent_mF913AD15E29D786201B3606FB42D0C3E71E9BF58 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* G_B16_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B16_1 = NULL;
|
|
Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* G_B15_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B15_1 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B17_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B17_1 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B20_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B19_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B21_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B21_1 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
RuntimeObject* L_1 = ___1_panel;
|
|
PointerEventDispatchingStrategy_UpdateElementUnderPointer_mEA4EF078EF8245DEE5350134325C80E180C5B5C7(L_0, L_1, (&V_0), NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
G_B3_0 = ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_6, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = V_0;
|
|
NullCheck(L_7);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_7, L_8, NULL);
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10;
|
|
L_10 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_9, NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_0;
|
|
G_B8_0 = ((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_11) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_2 = (bool)G_B8_0;
|
|
bool L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = ___1_panel;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = ___1_panel;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* UnityEngine.UIElements.ContextType UnityEngine.UIElements.IPanel::get_contextType() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_14);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_16 = ___0_evt;
|
|
NullCheck(L_16);
|
|
int64_t L_17;
|
|
L_17 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_18;
|
|
L_18 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
G_B13_0 = ((((int64_t)L_17) == ((int64_t)L_18))? 1 : 0);
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
G_B13_0 = 0;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
V_3 = (bool)G_B13_0;
|
|
bool L_19 = V_3;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
RuntimeObject* L_21 = ___1_panel;
|
|
Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9* L_22 = ((Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9*)IsInstClass((RuntimeObject*)L_21, Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var));
|
|
G_B15_0 = L_22;
|
|
G_B15_1 = L_20;
|
|
if (L_22)
|
|
{
|
|
G_B16_0 = L_22;
|
|
G_B16_1 = L_20;
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
G_B17_0 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)(NULL));
|
|
G_B17_1 = G_B15_1;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
NullCheck(G_B16_0);
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_23;
|
|
L_23 = VirtualFuncInvoker0< IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* >::Invoke(20 /* UnityEngine.UIElements.IMGUIContainer UnityEngine.UIElements.BaseVisualElementPanel::get_rootIMGUIContainer() */, G_B16_0);
|
|
G_B17_0 = L_23;
|
|
G_B17_1 = G_B16_1;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
NullCheck(G_B17_1);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(G_B17_1, G_B17_0, NULL);
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = ___0_evt;
|
|
RuntimeObject* L_25 = ___1_panel;
|
|
G_B19_0 = L_24;
|
|
if (L_25)
|
|
{
|
|
G_B20_0 = L_24;
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
G_B21_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
G_B21_1 = G_B19_0;
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
RuntimeObject* L_26 = ___1_panel;
|
|
NullCheck(L_26);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27;
|
|
L_27 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_26);
|
|
G_B21_0 = L_27;
|
|
G_B21_1 = G_B20_0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
NullCheck(G_B21_1);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(G_B21_1, G_B21_0, NULL);
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = ___0_evt;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29;
|
|
L_29 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_28, NULL);
|
|
V_4 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_29) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_30 = V_4;
|
|
if (!L_30)
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = ___0_evt;
|
|
NullCheck(L_31);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_31, (bool)0, NULL);
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::UpdateElementUnderPointer(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.VisualElement&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy_UpdateElementUnderPointer_mEA4EF078EF8245DEE5350134325C80E180C5B5C7 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___2_elementUnderPointer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B8_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B4_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B6_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B5_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B7_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B7_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B11_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B11_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B10_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B9_0 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_1 = ___1_panel;
|
|
V_1 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_1, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
RuntimeObject* L_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_3;
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 1;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IPointerEventInternal::get_recomputeTopElementUnderPointer() */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, G_B2_0);
|
|
G_B3_0 = ((int32_t)(L_4));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_2 = (bool)G_B3_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** L_5 = ___2_elementUnderPointer;
|
|
bool L_6 = V_2;
|
|
G_B4_0 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B8_0 = L_5;
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_7 = V_1;
|
|
G_B5_0 = G_B4_0;
|
|
if (L_7)
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_8 = V_1;
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_9);
|
|
NullCheck(L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = BaseVisualElementPanel_GetTopElementUnderPointer_mDB876CD969BE130AC4E687554E08334ECBEB6B30(L_8, L_10, NULL);
|
|
G_B7_0 = L_11;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
G_B11_0 = G_B7_0;
|
|
G_B11_1 = G_B7_1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_12 = V_1;
|
|
G_B9_0 = G_B8_0;
|
|
if (L_12)
|
|
{
|
|
G_B10_0 = G_B8_0;
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
G_B11_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
G_B11_1 = G_B9_0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_13 = V_1;
|
|
RuntimeObject* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_14);
|
|
RuntimeObject* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_17;
|
|
L_17 = InterfaceFuncInvoker0< Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 >::Invoke(5 /* UnityEngine.Vector3 UnityEngine.UIElements.IPointerEvent::get_position() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_16);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
L_18 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_17, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20;
|
|
L_20 = BaseVisualElementPanel_RecomputeTopElementUnderPointer_mF3D6110A28FCCF72408FE62A21A4F57E4AC717AF(L_13, L_15, L_18, L_19, NULL);
|
|
G_B11_0 = L_20;
|
|
G_B11_1 = G_B10_0;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
*((RuntimeObject**)G_B11_1) = (RuntimeObject*)G_B11_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B11_1, (void*)(RuntimeObject*)G_B11_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy__ctor_m0B72334A7F6713ADBC0682135C498FDF8FD33F87 (PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F* __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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StylePropertyNameCollection
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_pinvoke(const StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312& unmarshaled, StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___propertiesList_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'propertiesList' of type 'StylePropertyNameCollection'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___propertiesList_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_pinvoke_back(const StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_pinvoke& marshaled, StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312& unmarshaled)
|
|
{
|
|
Exception_t* ___propertiesList_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'propertiesList' of type 'StylePropertyNameCollection'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___propertiesList_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyNameCollection
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_pinvoke_cleanup(StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StylePropertyNameCollection
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_com(const StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312& unmarshaled, StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___propertiesList_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'propertiesList' of type 'StylePropertyNameCollection'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___propertiesList_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_com_back(const StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_com& marshaled, StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312& unmarshaled)
|
|
{
|
|
Exception_t* ___propertiesList_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'propertiesList' of type 'StylePropertyNameCollection'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___propertiesList_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyNameCollection
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshal_com_cleanup(StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection::.ctor(System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyNameCollection__ctor_mFEFD0F083AD0B463E8CC1CF4E3E038106DC24DB4 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_0 = ___0_list;
|
|
__this->___propertiesList_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___propertiesList_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StylePropertyNameCollection__ctor_mFEFD0F083AD0B463E8CC1CF4E3E038106DC24DB4_AdjustorThunk (RuntimeObject* __this, List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312*>(__this + _offset);
|
|
StylePropertyNameCollection__ctor_mFEFD0F083AD0B463E8CC1CF4E3E038106DC24DB4(_thisAdjusted, ___0_list, method);
|
|
}
|
|
// UnityEngine.UIElements.StylePropertyNameCollection/Enumerator UnityEngine.UIElements.StylePropertyNameCollection::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_0 = __this->___propertiesList_0;
|
|
NullCheck(L_0);
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D L_1;
|
|
L_1 = List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54(L_0, List_1_GetEnumerator_m4DCD64E0FCE9A5E9C950A3875125D9895B783C54_RuntimeMethod_var);
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Enumerator__ctor_mD07D109094C9479076EF0A08D145DEC90AB47BCC((&L_2), L_1, /*hidden argument*/NULL);
|
|
V_0 = L_2;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312*>(__this + _offset);
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB _returnValue;
|
|
_returnValue = StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.StylePropertyName> UnityEngine.UIElements.StylePropertyNameCollection::System.Collections.Generic.IEnumerable<UnityEngine.UIElements.StylePropertyName>.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StylePropertyNameCollection_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_StylePropertyNameU3E_GetEnumerator_m727C2B94129B7430946CCDF03CF58C6FC35FF21D (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_0;
|
|
L_0 = StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46(__this, NULL);
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_il2cpp_TypeInfo_var, &L_1);
|
|
V_0 = (RuntimeObject*)L_2;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* StylePropertyNameCollection_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_StylePropertyNameU3E_GetEnumerator_m727C2B94129B7430946CCDF03CF58C6FC35FF21D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = StylePropertyNameCollection_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_StylePropertyNameU3E_GetEnumerator_m727C2B94129B7430946CCDF03CF58C6FC35FF21D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Collections.IEnumerator UnityEngine.UIElements.StylePropertyNameCollection::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator_mC5609F30174F647EE0963A69094E2207E1BFE477 (StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_0;
|
|
L_0 = StylePropertyNameCollection_GetEnumerator_m15CB473F7A7A2F043B892069FB11743A91544A46(__this, NULL);
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_il2cpp_TypeInfo_var, &L_1);
|
|
V_0 = (RuntimeObject*)L_2;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator_mC5609F30174F647EE0963A69094E2207E1BFE477_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StylePropertyNameCollection_t2AB45DE2C2006786133A882AA60E6E782BB75312*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator_mC5609F30174F647EE0963A69094E2207E1BFE477(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_pinvoke(const Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB& unmarshaled, Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_Enumerator_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Enumerator' of type 'Enumerator'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Enumerator_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_pinvoke_back(const Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_pinvoke& marshaled, Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Enumerator_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Enumerator' of type 'Enumerator'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Enumerator_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_pinvoke_cleanup(Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_com(const Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB& unmarshaled, Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_Enumerator_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Enumerator' of type 'Enumerator'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Enumerator_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_com_back(const Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_com& marshaled, Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Enumerator_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Enumerator' of type 'Enumerator'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Enumerator_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyNameCollection/Enumerator
|
|
IL2CPP_EXTERN_C void Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshal_com_cleanup(Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::.ctor(System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyName>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD07D109094C9479076EF0A08D145DEC90AB47BCC (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___0_enumerator, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D L_0 = ___0_enumerator;
|
|
__this->___m_Enumerator_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_Enumerator_0))->____list_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_Enumerator_0))->____current_3))->___U3CnameU3Ek__BackingField_1), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator__ctor_mD07D109094C9479076EF0A08D145DEC90AB47BCC_AdjustorThunk (RuntimeObject* __this, Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D ___0_enumerator, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
Enumerator__ctor_mD07D109094C9479076EF0A08D145DEC90AB47BCC(_thisAdjusted, ___0_enumerator, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1B0D4ED8DF384746B6EF5E832EC2772360AABDBE (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* L_0 = (&__this->___m_Enumerator_0);
|
|
bool L_1;
|
|
L_1 = Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220(L_0, Enumerator_MoveNext_m82944CA6B6616C35895A364783321A29750E2220_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m1B0D4ED8DF384746B6EF5E832EC2772360AABDBE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Enumerator_MoveNext_m1B0D4ED8DF384746B6EF5E832EC2772360AABDBE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.UIElements.StylePropertyName UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m7EE91D3E8856E930ED488BAD7DE23861F9FA3F6F (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* L_0 = (&__this->___m_Enumerator_0);
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF L_1;
|
|
L_1 = Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_inline(L_0, Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m7EE91D3E8856E930ED488BAD7DE23861F9FA3F6F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF _returnValue;
|
|
_returnValue = Enumerator_get_Current_m7EE91D3E8856E930ED488BAD7DE23861F9FA3F6F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Object UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_mC554FD7F7A46C0A10C6103B0B5EDC468D93FE3C6 (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF L_0;
|
|
L_0 = Enumerator_get_Current_m7EE91D3E8856E930ED488BAD7DE23861F9FA3F6F(__this, NULL);
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF_il2cpp_TypeInfo_var, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_mC554FD7F7A46C0A10C6103B0B5EDC468D93FE3C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC554FD7F7A46C0A10C6103B0B5EDC468D93FE3C6(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m6B2871639B0E115F08C89087E5D3440DDBF56867 (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Reset_m6B2871639B0E115F08C89087E5D3440DDBF56867_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
Enumerator_Reset_m6B2871639B0E115F08C89087E5D3440DDBF56867(_thisAdjusted, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyNameCollection/Enumerator::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m66AA4EBF6963DA76D9C725198C5BBEB394240A9E (Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* L_0 = (&__this->___m_Enumerator_0);
|
|
Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D(L_0, Enumerator_Dispose_m844FEA75F42CD2ACE9C39C0A5B68C66C5B7B6C4D_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Dispose_m66AA4EBF6963DA76D9C725198C5BBEB394240A9E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tA61A6E560BAB8F96C2471024F8FBFF2B6BC1F1BB*>(__this + _offset);
|
|
Enumerator_Dispose_m66AA4EBF6963DA76D9C725198C5BBEB394240A9E(_thisAdjusted, method);
|
|
}
|
|
#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
|
|
// System.Void UnityEngine.UIElements.TransitionRunEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionRunEvent__ctor_m8962BF02434D7624A17D0F93CABFE7F1776D9A80 (TransitionRunEvent_t66B0D9314D2E48D69E5848848B085655F02BF1AF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionEventBase_1__ctor_mA89133B8A086738FD951A3B725B6756C8D00F741_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TransitionEventBase_1__ctor_mA89133B8A086738FD951A3B725B6756C8D00F741(__this, TransitionEventBase_1__ctor_mA89133B8A086738FD951A3B725B6756C8D00F741_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
|
|
// System.Void UnityEngine.UIElements.TransitionStartEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionStartEvent__ctor_m86FC36D7D6A26E1E60ACD96ECC9505902796358A (TransitionStartEvent_t1DCCFED2B1D4744B1884EEF23EF75A03B8D2E5DF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionEventBase_1__ctor_mB38ABE9778812A782CD46CB5F6DEAD73C0551951_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TransitionEventBase_1__ctor_mB38ABE9778812A782CD46CB5F6DEAD73C0551951(__this, TransitionEventBase_1__ctor_mB38ABE9778812A782CD46CB5F6DEAD73C0551951_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
|
|
// System.Void UnityEngine.UIElements.TransitionEndEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionEndEvent__ctor_m3554F2B93FC26C1EEC61C7C6014811361C381F83 (TransitionEndEvent_t0795C167FC14C0B97AFB54CCC2E34639ED85CCDD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionEventBase_1__ctor_m0173536041AC6AD075DF05F1E88C27A97A6C1E13_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TransitionEventBase_1__ctor_m0173536041AC6AD075DF05F1E88C27A97A6C1E13(__this, TransitionEventBase_1__ctor_m0173536041AC6AD075DF05F1E88C27A97A6C1E13_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
|
|
// System.Void UnityEngine.UIElements.TransitionCancelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionCancelEvent__ctor_mA8DC6CB9BD5D09436E231E2965BC44BC1A345E50 (TransitionCancelEvent_t74AA81A33FC7DA4C0E6E22C5D16B7BC51C94CF69* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionEventBase_1__ctor_m59E5F6EDA095C329E3E009740FEB92327180BE70_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
TransitionEventBase_1__ctor_m59E5F6EDA095C329E3E009740FEB92327180BE70(__this, TransitionEventBase_1__ctor_m59E5F6EDA095C329E3E009740FEB92327180BE70_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
|
|
// System.Boolean UnityEngine.UIElements.NavigationEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NavigationEventDispatchingStrategy_CanDispatchEvent_m27B7C4AE080904D4C29FD844CEDF0E4DB93C4CD1 (NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&INavigationEvent_t4864FB506AF154EE9A56715FF6521E6582EDD129_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, INavigationEvent_t4864FB506AF154EE9A56715FF6521E6582EDD129_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationEventDispatchingStrategy_DispatchEvent_m70433A602409DDE6B0F365E189BF82FF0D3F4210 (NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B3_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B2_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B2_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_panel;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
RuntimeObject* L_3 = ___1_panel;
|
|
NullCheck(L_3);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_4;
|
|
L_4 = InterfaceFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(3 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.IPanel::get_focusController() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_3);
|
|
NullCheck(L_4);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5;
|
|
L_5 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_4, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = L_5;
|
|
G_B2_0 = L_6;
|
|
G_B2_1 = L_2;
|
|
if (L_6)
|
|
{
|
|
G_B3_0 = L_6;
|
|
G_B3_1 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = ___1_panel;
|
|
NullCheck(L_7);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_7);
|
|
G_B3_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(L_8));
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
NullCheck(G_B3_1);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(G_B3_1, G_B3_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_9, NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_10, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
NullCheck(L_11);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_11, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationEventDispatchingStrategy__ctor_m9243C39886903158140DD8F720A888AD81377753 (NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE* __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
|
|
// System.String UnityEngine.UIElements.PointerType::GetPointerType(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PointerType_GetPointerType_m240C49AF8DFB5C168A1E4C21F605752887F8724E (int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_1 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_3 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0;
|
|
V_1 = L_3;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_4 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch_1;
|
|
V_1 = L_4;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerType::IsDirectManipulationDevice(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerType_IsDirectManipulationDevice_m06C8898A27F24AED14D463BE991C78276260E36E (String_t* ___0_pointerType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
String_t* L_0 = ___0_pointerType;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch_1;
|
|
if ((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(String_t*)L_1)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___0_pointerType;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_3 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___pen_2;
|
|
G_B3_0 = ((((RuntimeObject*)(String_t*)L_2) == ((RuntimeObject*)(String_t*)L_3))? 1 : 0);
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerType::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerType__cctor_mC0CE92C3808862FCF47294B692085540D250A028 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9EC74C84E81C86699198C668FD02886EC7ED89EB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9F6B690E16E25915983F3E6C7BE53DDCC99D060);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3FEA1B7EED06B84D345A14D3BB9E817F4B9EAFE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0 = _stringLiteralF3FEA1B7EED06B84D345A14D3BB9E817F4B9EAFE;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___mouse_0), (void*)_stringLiteralF3FEA1B7EED06B84D345A14D3BB9E817F4B9EAFE);
|
|
((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch_1 = _stringLiteralD9F6B690E16E25915983F3E6C7BE53DDCC99D060;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch_1), (void*)_stringLiteralD9F6B690E16E25915983F3E6C7BE53DDCC99D060);
|
|
((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___pen_2 = _stringLiteral9EC74C84E81C86699198C668FD02886EC7ED89EB;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___pen_2), (void*)_stringLiteral9EC74C84E81C86699198C668FD02886EC7ED89EB);
|
|
((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___unknown_3 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___unknown_3), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
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
|
|
// System.Void UnityEngine.UIElements.PointerId::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerId__cctor_m3BB8C9F77AFE8746AC37B7E20F963C22BAC222D6 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0 = ((int32_t)32);
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___invalidPointerId_1 = (-1);
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2 = 0;
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerIdBase_3 = 1;
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerCount_4 = ((int32_t)20);
|
|
int32_t L_0 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerIdBase_3;
|
|
int32_t L_1 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___touchPointerCount_4;
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___penPointerIdBase_5 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___penPointerCount_6 = 2;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2;
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_4);
|
|
((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___hoveringPointers_7 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___hoveringPointers_7), (void*)L_3);
|
|
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
|
|
// System.Void UnityEngine.UIElements.PointerDownEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDownEvent_Init_m7F91B066AE5A629B4989E74A4995DE9AD31799D9 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_mA1E6CC3B61166169763B6912412A3E33CBF87E93_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_mA1E6CC3B61166169763B6912412A3E33CBF87E93(__this, PointerEventBase_1_Init_mA1E6CC3B61166169763B6912412A3E33CBF87E93_RuntimeMethod_var);
|
|
PointerDownEvent_LocalInit_mA33241586037DFD52930AEAD5B3FD54CF31EE552(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDownEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDownEvent_LocalInit_mA33241586037DFD52930AEAD5B3FD54CF31EE552 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_triggeredByOS(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_recomputeTopElementUnderPointer(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDownEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDownEvent__ctor_m8327588407E759FAFDDE9D997F5425BDC2B5A07D (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_m998F76A42DE6E5246AEECA0095657850B41DA8A2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_m998F76A42DE6E5246AEECA0095657850B41DA8A2(__this, PointerEventBase_1__ctor_m998F76A42DE6E5246AEECA0095657850B41DA8A2_RuntimeMethod_var);
|
|
PointerDownEvent_LocalInit_mA33241586037DFD52930AEAD5B3FD54CF31EE552(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDownEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDownEvent_PostDispatch_m5A0D5EB7FA6946D1EBD920562D28C1CD43AFD699 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_PostDispatch_mBBF8C65E6E8406C67A589BDB0E6F5E54DE46A426_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* V_2 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_panel;
|
|
bool L_3;
|
|
L_3 = PointerCaptureHelper_ShouldSendCompatibilityMouseEvents_mB102208A776332256A524971955503B9E93E1844(L_2, __this, NULL);
|
|
V_1 = L_3;
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_5;
|
|
L_5 = MouseDownEvent_GetPooled_m5DB89E406A11788647A9601FC5725F66895DC513(__this, NULL);
|
|
V_2 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0040:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_8 = V_2;
|
|
RuntimeObject* L_9;
|
|
L_9 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_8);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_8, L_9, NULL);
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_10, NULL);
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_12 = V_2;
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_11, L_12);
|
|
goto IL_004b;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___0_panel;
|
|
int32_t L_14;
|
|
L_14 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(__this, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_13, L_14, NULL);
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
RuntimeObject* L_15 = ___0_panel;
|
|
PointerEventBase_1_PostDispatch_mBBF8C65E6E8406C67A589BDB0E6F5E54DE46A426(__this, L_15, PointerEventBase_1_PostDispatch_mBBF8C65E6E8406C67A589BDB0E6F5E54DE46A426_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
|
|
// System.Boolean UnityEngine.UIElements.PointerMoveEvent::get_isHandledByDraggable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerMoveEvent_get_isHandledByDraggable_mCCA70E78328355F419734A13F7B4135F51E89D47 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisHandledByDraggableU3Ek__BackingField_38;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::set_isHandledByDraggable(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent_set_isHandledByDraggable_m24AE525901E56FE8A7936EDA8F2046862BB3660D (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisHandledByDraggableU3Ek__BackingField_38 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent_Init_mFC6824E3B6FF0E2B68F9FFD1D4167F48A9DC30CC (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_mB7A2ABD885C3D09B64F29476C624D9AAAABF32C5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_mB7A2ABD885C3D09B64F29476C624D9AAAABF32C5(__this, PointerEventBase_1_Init_mB7A2ABD885C3D09B64F29476C624D9AAAABF32C5_RuntimeMethod_var);
|
|
PointerMoveEvent_LocalInit_m2B3988A6E09A5484209BC512987D575F7EC02688(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent_LocalInit_m2B3988A6E09A5484209BC512987D575F7EC02688 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 7, NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_triggeredByOS(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_recomputeTopElementUnderPointer(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
PointerMoveEvent_set_isHandledByDraggable_m24AE525901E56FE8A7936EDA8F2046862BB3660D_inline(__this, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent__ctor_mD3557DFD831C3106671744B531BFA47353131515 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mEEDD5DA0CB24E8B1539D7A8B7B6F478813511665_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mEEDD5DA0CB24E8B1539D7A8B7B6F478813511665(__this, PointerEventBase_1__ctor_mEEDD5DA0CB24E8B1539D7A8B7B6F478813511665_RuntimeMethod_var);
|
|
PointerMoveEvent_LocalInit_m2B3988A6E09A5484209BC512987D575F7EC02688(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerMoveEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerMoveEvent_PostDispatch_m68F7EA5AEE05C66DEFCF053483EAA79447BA77FC (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_PostDispatch_mDE64F12665D559442C1EFAEC9FCBFBCB7622494F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* V_2 = NULL;
|
|
bool V_3 = false;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_4 = NULL;
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* V_5 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
bool L_1;
|
|
L_1 = PointerCaptureHelper_ShouldSendCompatibilityMouseEvents_mB102208A776332256A524971955503B9E93E1844(L_0, __this, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3;
|
|
L_3 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_4;
|
|
L_4 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_4, NULL);
|
|
G_B4_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_1 = (bool)G_B4_0;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_7;
|
|
L_7 = MouseDownEvent_GetPooled_m962419D9EB0246EB3C415A9A720BAB5BE470957F(__this, NULL);
|
|
V_2 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0053:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_10 = V_2;
|
|
RuntimeObject* L_11;
|
|
L_11 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_10);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_10, L_11, NULL);
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_12 = V_2;
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_13;
|
|
L_13 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_12, NULL);
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_14 = V_2;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_13, L_14);
|
|
goto IL_005e;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_15;
|
|
L_15 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_16;
|
|
L_16 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_16, NULL);
|
|
G_B14_0 = ((((int32_t)L_17) == ((int32_t)1))? 1 : 0);
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
V_3 = (bool)G_B14_0;
|
|
bool L_18 = V_3;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_19;
|
|
L_19 = MouseUpEvent_GetPooled_m9CA92EB7E0EAD8BC01901C30E5C496829A3B1D20(__this, NULL);
|
|
V_4 = L_19;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00ab:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_20 = V_4;
|
|
if (!L_20)
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_21 = V_4;
|
|
NullCheck(L_21);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21);
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_22 = V_4;
|
|
RuntimeObject* L_23;
|
|
L_23 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_22);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_22, L_23, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_24 = V_4;
|
|
NullCheck(L_24);
|
|
RuntimeObject* L_25;
|
|
L_25 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_24, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_26 = V_4;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_25, L_26);
|
|
goto IL_00b8;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
goto IL_00f3;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_27;
|
|
L_27 = MouseMoveEvent_GetPooled_m6DD3C6A3D681222E98443C2D5483B7537B6E8ACA(__this, NULL);
|
|
V_5 = L_27;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00e5:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_28 = V_5;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_29 = V_5;
|
|
NullCheck(L_29);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_29);
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_30 = V_5;
|
|
RuntimeObject* L_31;
|
|
L_31 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_30);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_30, L_31, NULL);
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_32 = V_5;
|
|
NullCheck(L_32);
|
|
RuntimeObject* L_33;
|
|
L_33 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_32, NULL);
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_34 = V_5;
|
|
NullCheck(L_33);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_33, L_34);
|
|
goto IL_00f2;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
}
|
|
|
|
IL_00f3:
|
|
{
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
RuntimeObject* L_35 = ___0_panel;
|
|
PointerEventBase_1_PostDispatch_mDE64F12665D559442C1EFAEC9FCBFBCB7622494F(__this, L_35, PointerEventBase_1_PostDispatch_mDE64F12665D559442C1EFAEC9FCBFBCB7622494F_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
|
|
// System.Void UnityEngine.UIElements.PointerStationaryEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerStationaryEvent_Init_mFD11E6F7C339CE9D252F72126431586F47A3B1E9 (PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_mAAF393FC943EA9A8341CB7DC23184B71F4B6FBFD_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_mAAF393FC943EA9A8341CB7DC23184B71F4B6FBFD(__this, PointerEventBase_1_Init_mAAF393FC943EA9A8341CB7DC23184B71F4B6FBFD_RuntimeMethod_var);
|
|
PointerStationaryEvent_LocalInit_m44FF78DF38F56E7597924B4071FABCD9CDD36E50(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerStationaryEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerStationaryEvent_LocalInit_m44FF78DF38F56E7597924B4071FABCD9CDD36E50 (PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 7, NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_triggeredByOS(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_recomputeTopElementUnderPointer(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerStationaryEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerStationaryEvent__ctor_mBD109CA619FDCF9056DB0166A3B7F10DB78F69BF (PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_m3E8100AEEA4FA6AC1C073A19604AE06E89F37349_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_m3E8100AEEA4FA6AC1C073A19604AE06E89F37349(__this, PointerEventBase_1__ctor_m3E8100AEEA4FA6AC1C073A19604AE06E89F37349_RuntimeMethod_var);
|
|
PointerStationaryEvent_LocalInit_m44FF78DF38F56E7597924B4071FABCD9CDD36E50(__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
|
|
// System.Void UnityEngine.UIElements.PointerUpEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerUpEvent_Init_mA0BB3D5A2D7502A33A3E4066FE79A6122436CBF0 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_m6A5AAAB38F079D58A444E447671A79AD4098B98A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_m6A5AAAB38F079D58A444E447671A79AD4098B98A(__this, PointerEventBase_1_Init_m6A5AAAB38F079D58A444E447671A79AD4098B98A_RuntimeMethod_var);
|
|
PointerUpEvent_LocalInit_m8BAFF359C820A90203BBA8FEA3BE60F9A36A8EEB(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerUpEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerUpEvent_LocalInit_m8BAFF359C820A90203BBA8FEA3BE60F9A36A8EEB (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_triggeredByOS(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_recomputeTopElementUnderPointer(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerUpEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerUpEvent__ctor_mB8C7E204466C177B83948A55038D9E504642ECB3 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mAE2D24192D8C6D25D241F42CC8435FBC28036695_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mAE2D24192D8C6D25D241F42CC8435FBC28036695(__this, PointerEventBase_1__ctor_mAE2D24192D8C6D25D241F42CC8435FBC28036695_RuntimeMethod_var);
|
|
PointerUpEvent_LocalInit_m8BAFF359C820A90203BBA8FEA3BE60F9A36A8EEB(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerUpEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerUpEvent_PostDispatch_mD7BAA6109D25A1E18F8166C64DC855DFA69DA468 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_PostDispatch_mAF5CD0D2EE756A1E0E7B0733E7EC352A320C0897_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_1 = NULL;
|
|
bool V_2 = false;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_3 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_inline(__this, PointerEventBase_1_get_pointerType_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = PointerType_IsDirectManipulationDevice_m06C8898A27F24AED14D463BE991C78276260E36E(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_panel;
|
|
int32_t L_4;
|
|
L_4 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(__this, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_ReleasePointer_mE9ABEA39360504C8B5A9CF1C067A63F7535CDECB(L_3, L_4, NULL);
|
|
RuntimeObject* L_5 = ___0_panel;
|
|
V_1 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_5, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_6 = V_1;
|
|
if (L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_7 = V_1;
|
|
int32_t L_8;
|
|
L_8 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(__this, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
BaseVisualElementPanel_ClearCachedElementUnderPointer_m56ED8260C952BAB24740F95B280D2294BCC58539(L_7, L_8, __this, NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_9 = ___0_panel;
|
|
bool L_10;
|
|
L_10 = PointerCaptureHelper_ShouldSendCompatibilityMouseEvents_mB102208A776332256A524971955503B9E93E1844(L_9, __this, NULL);
|
|
V_2 = L_10;
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_12;
|
|
L_12 = MouseUpEvent_GetPooled_mEEAD8C564A22C2CE82AD17A97F0DE7E4370F0669(__this, NULL);
|
|
V_3 = L_12;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_14 = V_3;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_14);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_15 = V_3;
|
|
RuntimeObject* L_16;
|
|
L_16 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_15);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_15, L_16, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_17 = V_3;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18;
|
|
L_18 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_17, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_19 = V_3;
|
|
NullCheck(L_18);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_18, L_19);
|
|
goto IL_0075;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
RuntimeObject* L_20 = ___0_panel;
|
|
PointerEventBase_1_PostDispatch_mAF5CD0D2EE756A1E0E7B0733E7EC352A320C0897(__this, L_20, PointerEventBase_1_PostDispatch_mAF5CD0D2EE756A1E0E7B0733E7EC352A320C0897_RuntimeMethod_var);
|
|
RuntimeObject* L_21 = ___0_panel;
|
|
int32_t L_22;
|
|
L_22 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(__this, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_ActivateCompatibilityMouseEvents_mB5506AB811F3B2AEC0452FEF0BD394BA2B13DEB1(L_21, L_22, 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
|
|
// System.Void UnityEngine.UIElements.PointerCancelEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCancelEvent_Init_mC7C2A7450C44080E00EAAF8DF5529620C7629974 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_m7C39066C6FC58310E991F2C8C4491520EB6D013B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_m7C39066C6FC58310E991F2C8C4491520EB6D013B(__this, PointerEventBase_1_Init_m7C39066C6FC58310E991F2C8C4491520EB6D013B_RuntimeMethod_var);
|
|
PointerCancelEvent_LocalInit_m1C7DA0C8AF41E714D70C4BB760CFA3D1B1A9D3D8(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCancelEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCancelEvent_LocalInit_m1C7DA0C8AF41E714D70C4BB760CFA3D1B1A9D3D8 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)11), NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(1 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_triggeredByOS(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IPointerEventInternal::set_recomputeTopElementUnderPointer(System.Boolean) */, IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var, __this, (bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCancelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCancelEvent__ctor_mB440794EF06B78F8560FA37755D344C3664339A7 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mDC2BA420399D1B05219425FA26A81E3C01EC983D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mDC2BA420399D1B05219425FA26A81E3C01EC983D(__this, PointerEventBase_1__ctor_mDC2BA420399D1B05219425FA26A81E3C01EC983D_RuntimeMethod_var);
|
|
PointerCancelEvent_LocalInit_m1C7DA0C8AF41E714D70C4BB760CFA3D1B1A9D3D8(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCancelEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCancelEvent_PostDispatch_mA627375FA7A6BF4B4AECC032C23CDAE05EBB1C55 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_PostDispatch_mCCE423FE41D58CBC68045348F89008943747FA2D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerType_m035E9ED854B5F58692E67128A759F3863D212795_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_1 = NULL;
|
|
bool V_2 = false;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_3 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = PointerEventBase_1_get_pointerType_m035E9ED854B5F58692E67128A759F3863D212795_inline(__this, PointerEventBase_1_get_pointerType_m035E9ED854B5F58692E67128A759F3863D212795_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = PointerType_IsDirectManipulationDevice_m06C8898A27F24AED14D463BE991C78276260E36E(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_panel;
|
|
int32_t L_4;
|
|
L_4 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(__this, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
PointerCaptureHelper_ReleasePointer_mE9ABEA39360504C8B5A9CF1C067A63F7535CDECB(L_3, L_4, NULL);
|
|
RuntimeObject* L_5 = ___0_panel;
|
|
V_1 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_5, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_6 = V_1;
|
|
if (L_6)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_7 = V_1;
|
|
int32_t L_8;
|
|
L_8 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(__this, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
BaseVisualElementPanel_ClearCachedElementUnderPointer_m56ED8260C952BAB24740F95B280D2294BCC58539(L_7, L_8, __this, NULL);
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_9 = ___0_panel;
|
|
bool L_10;
|
|
L_10 = PointerCaptureHelper_ShouldSendCompatibilityMouseEvents_mB102208A776332256A524971955503B9E93E1844(L_9, __this, NULL);
|
|
V_2 = L_10;
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_12;
|
|
L_12 = MouseUpEvent_GetPooled_mADEC2C8C9C69683139A261C5312A679E7F6B1D29(__this, NULL);
|
|
V_3 = L_12;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_14 = V_3;
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_14);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_15 = V_3;
|
|
RuntimeObject* L_16;
|
|
L_16 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_15);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_15, L_16, NULL);
|
|
RuntimeObject* L_17;
|
|
L_17 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_18 = V_3;
|
|
NullCheck(L_17);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_17, L_18);
|
|
goto IL_0075;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
RuntimeObject* L_19 = ___0_panel;
|
|
PointerEventBase_1_PostDispatch_mCCE423FE41D58CBC68045348F89008943747FA2D(__this, L_19, PointerEventBase_1_PostDispatch_mCCE423FE41D58CBC68045348F89008943747FA2D_RuntimeMethod_var);
|
|
RuntimeObject* L_20 = ___0_panel;
|
|
int32_t L_21;
|
|
L_21 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(__this, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
PointerCaptureHelper_ActivateCompatibilityMouseEvents_mB5506AB811F3B2AEC0452FEF0BD394BA2B13DEB1(L_20, L_21, 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
|
|
// System.Void UnityEngine.UIElements.ClickEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickEvent_Init_m0E66220558D950B7CB4F13FE906B6A57644570D7 (ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_mECC6EFC54352B623BA3BCF96DC7ABCAA7109434C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_mECC6EFC54352B623BA3BCF96DC7ABCAA7109434C(__this, PointerEventBase_1_Init_mECC6EFC54352B623BA3BCF96DC7ABCAA7109434C_RuntimeMethod_var);
|
|
ClickEvent_LocalInit_m62B68AB70576A5830F88BCCCCB3BB95934098492(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ClickEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickEvent_LocalInit_m62B68AB70576A5830F88BCCCCB3BB95934098492 (ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ClickEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickEvent__ctor_m5754A8AE2A3E6135392BD381931B5DCB8865D4AC (ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mA70B3E8EEAAE5C2CDE62205CD8E5A55FD41A33C4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mA70B3E8EEAAE5C2CDE62205CD8E5A55FD41A33C4(__this, PointerEventBase_1__ctor_mA70B3E8EEAAE5C2CDE62205CD8E5A55FD41A33C4_RuntimeMethod_var);
|
|
ClickEvent_LocalInit_m62B68AB70576A5830F88BCCCCB3BB95934098492(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ClickEvent UnityEngine.UIElements.ClickEvent::GetPooled(UnityEngine.UIElements.PointerUpEvent,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* ClickEvent_GetPooled_m55055E410F3604AF4D748B94C32566D6C9770653 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_pointerEvent, int32_t ___1_clickCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_GetPooled_m5B7D3239A8C1E92C3045C41997EDAC47F757E8DA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* V_0 = NULL;
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* V_1 = NULL;
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_0 = ___0_pointerEvent;
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* L_1;
|
|
L_1 = PointerEventBase_1_GetPooled_m5B7D3239A8C1E92C3045C41997EDAC47F757E8DA(L_0, PointerEventBase_1_GetPooled_m5B7D3239A8C1E92C3045C41997EDAC47F757E8DA_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* L_2 = V_0;
|
|
int32_t L_3 = ___1_clickCount;
|
|
NullCheck(L_2);
|
|
PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_inline(L_2, L_3, PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_RuntimeMethod_var);
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
#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
|
|
// System.Void UnityEngine.UIElements.PointerEnterEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEnterEvent_Init_mD9C6CD13941329498DEB8E9A01479A36711D61EE (PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_mB8033AF59D776B5968DD983BA8E2FEE5D7B2643A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_mB8033AF59D776B5968DD983BA8E2FEE5D7B2643A(__this, PointerEventBase_1_Init_mB8033AF59D776B5968DD983BA8E2FEE5D7B2643A_RuntimeMethod_var);
|
|
PointerEnterEvent_LocalInit_m0BB2CA5C8996BFAA15C4502545054F9413BB6A51(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEnterEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEnterEvent_LocalInit_m0BB2CA5C8996BFAA15C4502545054F9413BB6A51 (PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)18), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerEnterEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEnterEvent__ctor_m4DB754D87278D9B698F6C357AA3BC48D09DE0256 (PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mA0557C9D68E527F40125701EA3A67DA52C805AA6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mA0557C9D68E527F40125701EA3A67DA52C805AA6(__this, PointerEventBase_1__ctor_mA0557C9D68E527F40125701EA3A67DA52C805AA6_RuntimeMethod_var);
|
|
PointerEnterEvent_LocalInit_m0BB2CA5C8996BFAA15C4502545054F9413BB6A51(__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
|
|
// System.Void UnityEngine.UIElements.PointerLeaveEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLeaveEvent_Init_m7E26F2DC41BE127D809C6B742471358DF2BC52BF (PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_Init_m8C36DC066721E1AC99A205129551EBE2C65A432D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1_Init_m8C36DC066721E1AC99A205129551EBE2C65A432D(__this, PointerEventBase_1_Init_m8C36DC066721E1AC99A205129551EBE2C65A432D_RuntimeMethod_var);
|
|
PointerLeaveEvent_LocalInit_m0CBA72A4644CF857E3DD2746EAC04EA8F74964A7(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerLeaveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLeaveEvent_LocalInit_m0CBA72A4644CF857E3DD2746EAC04EA8F74964A7 (PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)18), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerLeaveEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerLeaveEvent__ctor_m629AB9B1E5E9A1DD04418F8EB8F13696256568CA (PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_m5A717FB16CEBD963D885F99DBED915DBAD419F42_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_m5A717FB16CEBD963D885F99DBED915DBAD419F42(__this, PointerEventBase_1__ctor_m5A717FB16CEBD963D885F99DBED915DBAD419F42_RuntimeMethod_var);
|
|
PointerLeaveEvent_LocalInit_m0CBA72A4644CF857E3DD2746EAC04EA8F74964A7(__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
|
|
// System.Void UnityEngine.UIElements.PointerOverEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerOverEvent__ctor_m9EDFCD7AB8896C99E94CD4F38C8EB119A002C300 (PointerOverEvent_tC934C62D5296D77308014777170DE1D4072973E9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mB7A3F65D4DA735C91B931AF65D46C6E5BFDD1FBE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mB7A3F65D4DA735C91B931AF65D46C6E5BFDD1FBE(__this, PointerEventBase_1__ctor_mB7A3F65D4DA735C91B931AF65D46C6E5BFDD1FBE_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
|
|
// System.Void UnityEngine.UIElements.PointerOutEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerOutEvent__ctor_m309DAC9A9EFE6263E10EE246932DA028BA433A1B (PointerOutEvent_t3B605B4A604A0FEEB3C660C9BFE38F4C0EBA03D5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1__ctor_mFC14CFE3B732209E75A86B89C1CE113DBF9FC0AC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PointerEventBase_1__ctor_mFC14CFE3B732209E75A86B89C1CE113DBF9FC0AC(__this, PointerEventBase_1__ctor_mFC14CFE3B732209E75A86B89C1CE113DBF9FC0AC_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
|
|
// UnityEngine.UIElements.ICustomStyle UnityEngine.UIElements.CustomStyleResolvedEvent::get_customStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CustomStyleResolvedEvent_get_customStyle_m0F9CBEBB0EAF766F4A913974871BB5B4DCE1D3F4 (CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B2_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B1_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = VisualElement_get_customStyle_mDCF1288B1B853DEDEA124C017B1C3AF9B1D5669C(G_B2_0, NULL);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CustomStyleResolvedEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomStyleResolvedEvent__ctor_mE774E6057F9C67C6A450E229CB1A68ED929DD8A4 (CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t28A1B2B8FC43209D9402B4CC45E8C562DFDC26AD_il2cpp_TypeInfo_var);
|
|
EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE(__this, EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE_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
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::HandleEventAtTargetPhase(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_HandleEventAtTargetPhase_m681B23C2CCCF3064FEC2DFF49645043E7F909B18 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_1, NULL);
|
|
NullCheck(L_0);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_0, L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_3, 2, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(8 /* System.Void UnityEngine.UIElements.CallbackEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, __this, L_4);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_5, 5, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(8 /* System.Void UnityEngine.UIElements.CallbackEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, __this, L_6);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::HandleEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_HandleEvent_m730E6D7CF91DB205557C39A7BED1874671FFCEE2 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_8 = NULL;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_12 = NULL;
|
|
bool V_13 = false;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B7_0 = NULL;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B6_0 = NULL;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B13_0 = NULL;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B12_0 = NULL;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B18_0 = NULL;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* G_B17_0 = NULL;
|
|
int32_t G_B27_0 = 0;
|
|
int32_t G_B40_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
int32_t L_4 = V_2;
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_6, NULL);
|
|
V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_9 = __this->___m_CallbackRegistry_0;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_10 = L_9;
|
|
G_B6_0 = L_10;
|
|
if (L_10)
|
|
{
|
|
G_B7_0 = L_10;
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline(L_12, NULL);
|
|
NullCheck(G_B7_0);
|
|
EventCallbackRegistry_InvokeCallbacks_mB1B282F6F91C0E10E00F0A963223649BB4676EA9(G_B7_0, L_11, L_13, NULL);
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_14, NULL);
|
|
V_4 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
bool L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_17 = __this->___m_CallbackRegistry_0;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_18 = L_17;
|
|
G_B12_0 = L_18;
|
|
if (L_18)
|
|
{
|
|
G_B13_0 = L_18;
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(G_B13_0);
|
|
EventCallbackRegistry_InvokeCallbacks_mB1B282F6F91C0E10E00F0A963223649BB4676EA9(G_B13_0, L_19, 1, NULL);
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_20, NULL);
|
|
V_5 = (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
|
|
bool L_22 = V_5;
|
|
if (!L_22)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_23 = __this->___m_CallbackRegistry_0;
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_24 = L_23;
|
|
G_B17_0 = L_24;
|
|
if (L_24)
|
|
{
|
|
G_B18_0 = L_24;
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___0_evt;
|
|
NullCheck(G_B18_0);
|
|
EventCallbackRegistry_InvokeCallbacks_mB1B282F6F91C0E10E00F0A963223649BB4676EA9(G_B18_0, L_25, 3, NULL);
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26 = ___0_evt;
|
|
NullCheck(L_26);
|
|
bool L_27;
|
|
L_27 = EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2(L_26, NULL);
|
|
V_6 = (bool)((((int32_t)L_27) == ((int32_t)0))? 1 : 0);
|
|
bool L_28 = V_6;
|
|
if (!L_28)
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29 = ___0_evt;
|
|
EventDebuggerLogExecuteDefaultAction__ctor_m9AF0AC749478DD49D1B611ED1917877F51CF5A69((&V_7), L_29, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_010d:
|
|
{// begin finally (depth: 1)
|
|
EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC((&V_7), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
NullCheck(L_30);
|
|
bool L_31;
|
|
L_31 = EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814(L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_00f1_1;
|
|
}
|
|
}
|
|
{
|
|
V_8 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32 = V_8;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00f1_1;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_33 = V_8;
|
|
NullCheck(L_33);
|
|
bool L_34;
|
|
L_34 = VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412(L_33, NULL);
|
|
G_B27_0 = ((((int32_t)L_34) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00f2_1;
|
|
}
|
|
|
|
IL_00f1_1:
|
|
{
|
|
G_B27_0 = 0;
|
|
}
|
|
|
|
IL_00f2_1:
|
|
{
|
|
V_9 = (bool)G_B27_0;
|
|
bool L_35 = V_9;
|
|
if (!L_35)
|
|
{
|
|
goto IL_0102_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(13 /* System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionDisabledAtTarget(UnityEngine.UIElements.EventBase) */, __this, L_36);
|
|
goto IL_010a_1;
|
|
}
|
|
|
|
IL_0102_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(11 /* System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionAtTarget(UnityEngine.UIElements.EventBase) */, __this, L_37);
|
|
}
|
|
|
|
IL_010a_1:
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
}
|
|
|
|
IL_011d:
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = ___0_evt;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2(L_38, NULL);
|
|
V_10 = (bool)((((int32_t)L_39) == ((int32_t)0))? 1 : 0);
|
|
bool L_40 = V_10;
|
|
if (!L_40)
|
|
{
|
|
goto IL_0185;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = ___0_evt;
|
|
EventDebuggerLogExecuteDefaultAction__ctor_m9AF0AC749478DD49D1B611ED1917877F51CF5A69((&V_11), L_41, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0175:
|
|
{// begin finally (depth: 1)
|
|
EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC((&V_11), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_42 = ___0_evt;
|
|
NullCheck(L_42);
|
|
bool L_43;
|
|
L_43 = EventBase_get_skipDisabledElements_m92D25C10EE0BE65D488B27481A746791E7C36814(L_42, NULL);
|
|
if (!L_43)
|
|
{
|
|
goto IL_0159_1;
|
|
}
|
|
}
|
|
{
|
|
V_12 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_44 = V_12;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0159_1;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_45 = V_12;
|
|
NullCheck(L_45);
|
|
bool L_46;
|
|
L_46 = VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412(L_45, NULL);
|
|
G_B40_0 = ((((int32_t)L_46) == ((int32_t)0))? 1 : 0);
|
|
goto IL_015a_1;
|
|
}
|
|
|
|
IL_0159_1:
|
|
{
|
|
G_B40_0 = 0;
|
|
}
|
|
|
|
IL_015a_1:
|
|
{
|
|
V_13 = (bool)G_B40_0;
|
|
bool L_47 = V_13;
|
|
if (!L_47)
|
|
{
|
|
goto IL_016a_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_48 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(14 /* System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionDisabled(UnityEngine.UIElements.EventBase) */, __this, L_48);
|
|
goto IL_0172_1;
|
|
}
|
|
|
|
IL_016a_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_49 = ___0_evt;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(12 /* System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultAction(UnityEngine.UIElements.EventBase) */, __this, L_49);
|
|
}
|
|
|
|
IL_0172_1:
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
}
|
|
|
|
IL_0185:
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.CallbackEventHandler::HasTrickleDownHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallbackEventHandler_HasTrickleDownHandlers_mAC77A79CBA1CDD39444B61175B48FEBC67AEB883 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_0 = __this->___m_CallbackRegistry_0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_1 = __this->___m_CallbackRegistry_0;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = EventCallbackRegistry_HasTrickleDownHandlers_m1586C8C2C02F82AD8A5D6B713F01F8114EE3DE33(L_1, NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.CallbackEventHandler::HasBubbleUpHandlers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallbackEventHandler_HasBubbleUpHandlers_m83DB6DB92A8417EC0EEDEAAB417882152131805C (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_0 = __this->___m_CallbackRegistry_0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* L_1 = __this->___m_CallbackRegistry_0;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = EventCallbackRegistry_HasBubbleHandlers_mB6FC43F1DB308DE15B293B6C0E801A186241F83C(L_1, NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionAtTarget(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_ExecuteDefaultActionAtTarget_m23189F4B408BC9036DF250DE5B2293B9EFF0E3D7 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultAction(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_ExecuteDefaultAction_m35D6E4F88A534B7E254C14960157D3FA47F51A6E (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionDisabledAtTarget(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_ExecuteDefaultActionDisabledAtTarget_m6C80DDEC8408B115F31B967A5E6844EF3982C771 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::ExecuteDefaultActionDisabled(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_ExecuteDefaultActionDisabled_mB48BD30EF278523BB75A33F503666A804AAFAFEC (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler__ctor_m28A3E3AD860D0F5EAC06F6AA0439D47A32C8303E (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __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
|
|
// UnityEngine.UIElements.GeometryChangedEvent UnityEngine.UIElements.GeometryChangedEvent::GetPooled(UnityEngine.Rect,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* GeometryChangedEvent_GetPooled_m519C6F3B7D23F9C52ED1551DA1D2486371769128 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_oldRect, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_newRect, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_GetPooled_m1A01D8B3467862836985A752F41A76010F6F06D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* V_0 = NULL;
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_il2cpp_TypeInfo_var);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_0;
|
|
L_0 = EventBase_1_GetPooled_m1A01D8B3467862836985A752F41A76010F6F06D8(EventBase_1_GetPooled_m1A01D8B3467862836985A752F41A76010F6F06D8_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_1 = V_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2 = ___0_oldRect;
|
|
NullCheck(L_1);
|
|
GeometryChangedEvent_set_oldRect_mEA782D77A997652976CE3517396F2D8973A41742_inline(L_1, L_2, NULL);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_3 = V_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_4 = ___1_newRect;
|
|
NullCheck(L_3);
|
|
GeometryChangedEvent_set_newRect_m3F885B6343894840429DACBBBA8BDFE6CDB78F52_inline(L_3, L_4, NULL);
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_5 = V_0;
|
|
V_1 = L_5;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_Init_m169B22D5E1D8198C02DF028E681D75F4FE1A32C8 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_1_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0(__this, EventBase_1_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0_RuntimeMethod_var);
|
|
GeometryChangedEvent_LocalInit_mCF78204B861F080CBA5E8FCFFCA59B2BEBE88268(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_LocalInit_mCF78204B861F080CBA5E8FCFFCA59B2BEBE88268 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0;
|
|
L_0 = Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D(NULL);
|
|
GeometryChangedEvent_set_oldRect_mEA782D77A997652976CE3517396F2D8973A41742_inline(__this, L_0, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_1;
|
|
L_1 = Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D(NULL);
|
|
GeometryChangedEvent_set_newRect_m3F885B6343894840429DACBBBA8BDFE6CDB78F52_inline(__this, L_1, NULL);
|
|
GeometryChangedEvent_set_layoutPass_mCB48CB5C27EF9B4CCDF45776DCC8C4B35871E6FC_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::get_oldRect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_oldRect_m9961ACE622E851C4770B205C57664F90F3E0E9A7 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3ColdRectU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_oldRect(UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_oldRect_mEA782D77A997652976CE3517396F2D8973A41742 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3ColdRectU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.GeometryChangedEvent::get_newRect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3CnewRectU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_newRect(UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_newRect_m3F885B6343894840429DACBBBA8BDFE6CDB78F52 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3CnewRectU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.GeometryChangedEvent::get_layoutPass()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GeometryChangedEvent_get_layoutPass_mF1D65C18E68AD76A3CECA65EF27FB466048F3F19 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3ClayoutPassU3Ek__BackingField_20;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::set_layoutPass(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_layoutPass_mCB48CB5C27EF9B4CCDF45776DCC8C4B35871E6FC (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3ClayoutPassU3Ek__BackingField_20 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.GeometryChangedEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeometryChangedEvent__ctor_mF5010D3CEAD424AB681E5333205F675FD66A97C1 (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E_il2cpp_TypeInfo_var);
|
|
EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952(__this, EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952_RuntimeMethod_var);
|
|
GeometryChangedEvent_LocalInit_mCF78204B861F080CBA5E8FCFFCA59B2BEBE88268(__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
|
|
// System.Void UnityEngine.UIElements.MouseDownEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseDownEvent_Init_m7AFD0967702DC7D45870364ADD449D2DF08FD06B (MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_m4EC1DC92CBE25F2D096B5F8C553FB4347F6EDE54_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_m4EC1DC92CBE25F2D096B5F8C553FB4347F6EDE54(__this, MouseEventBase_1_Init_m4EC1DC92CBE25F2D096B5F8C553FB4347F6EDE54_RuntimeMethod_var);
|
|
MouseDownEvent_LocalInit_m572FAB81FAD2754FCC34F790390C5A0B33E40B32(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseDownEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseDownEvent_LocalInit_m572FAB81FAD2754FCC34F790390C5A0B33E40B32 (MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseDownEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseDownEvent__ctor_mAB09B2F8A9FC7D65FCA88D32B60A98C98AAB7BD0 (MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m19DE4DD0D8F81992FFEC61A6920378DA6E4BD9C4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m19DE4DD0D8F81992FFEC61A6920378DA6E4BD9C4(__this, MouseEventBase_1__ctor_m19DE4DD0D8F81992FFEC61A6920378DA6E4BD9C4_RuntimeMethod_var);
|
|
MouseDownEvent_LocalInit_m572FAB81FAD2754FCC34F790390C5A0B33E40B32(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::MakeFromPointerEvent(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_MakeFromPointerEvent_mE7E9A57EBC8ED9D11314470C9092364D4E527BAF (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m713CBA226990F6E0FC54AE1E756CB12FCDB33265_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* V_1 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_pointerEvent;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_pointerEvent;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_1);
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
RuntimeObject* L_5 = ___0_pointerEvent;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_5);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_PressButton_mBB102F81A0E72F8A7685E31979C1069FAB22C05F(L_4, L_6, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_7 = ___0_pointerEvent;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_8;
|
|
L_8 = MouseEventBase_1_GetPooled_m713CBA226990F6E0FC54AE1E756CB12FCDB33265(L_7, MouseEventBase_1_GetPooled_m713CBA226990F6E0FC54AE1E756CB12FCDB33265_RuntimeMethod_var);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::GetPooled(UnityEngine.UIElements.PointerDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_GetPooled_m5DB89E406A11788647A9601FC5725F66895DC513 (PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* V_0 = NULL;
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_0 = ___0_pointerEvent;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_1;
|
|
L_1 = MouseDownEvent_MakeFromPointerEvent_mE7E9A57EBC8ED9D11314470C9092364D4E527BAF(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseDownEvent UnityEngine.UIElements.MouseDownEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* MouseDownEvent_GetPooled_m962419D9EB0246EB3C415A9A720BAB5BE470957F (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* V_0 = NULL;
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_0 = ___0_pointerEvent;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_1;
|
|
L_1 = MouseDownEvent_MakeFromPointerEvent_mE7E9A57EBC8ED9D11314470C9092364D4E527BAF(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_2 = V_0;
|
|
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
|
|
// System.Void UnityEngine.UIElements.MouseUpEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseUpEvent_Init_m4A938B62B6C5DEC4129093A2679D69E1D6768EA4 (MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_mADB87BB99F95C493AFE5ACE6377E47F978226453_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_mADB87BB99F95C493AFE5ACE6377E47F978226453(__this, MouseEventBase_1_Init_mADB87BB99F95C493AFE5ACE6377E47F978226453_RuntimeMethod_var);
|
|
MouseUpEvent_LocalInit_m9D4351244B2C35DA661614AF2681EE5375BA0466(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseUpEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseUpEvent_LocalInit_m9D4351244B2C35DA661614AF2681EE5375BA0466 (MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseUpEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseUpEvent__ctor_m04A1E6E5491405D305AC3CC50B4125BDCFE3182C (MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m4A8C93EF6FCE660673064A965E01B031FA8C153D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m4A8C93EF6FCE660673064A965E01B031FA8C153D(__this, MouseEventBase_1__ctor_m4A8C93EF6FCE660673064A965E01B031FA8C153D_RuntimeMethod_var);
|
|
MouseUpEvent_LocalInit_m9D4351244B2C35DA661614AF2681EE5375BA0466(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::MakeFromPointerEvent(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_MakeFromPointerEvent_mD1830A08D58F0D48CF422CF3E453B3C81E0237F4 (RuntimeObject* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m48E23E2CEC51FF7FA6E60C4A4073F3E9075848D9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_1 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_pointerEvent;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_pointerEvent;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_1);
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
RuntimeObject* L_5 = ___0_pointerEvent;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_5);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_ReleaseButton_m37AD62F48C80F0087158DA241DC055703268D494(L_4, L_6, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_7 = ___0_pointerEvent;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_8;
|
|
L_8 = MouseEventBase_1_GetPooled_m48E23E2CEC51FF7FA6E60C4A4073F3E9075848D9(L_7, MouseEventBase_1_GetPooled_m48E23E2CEC51FF7FA6E60C4A4073F3E9075848D9_RuntimeMethod_var);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_mEEAD8C564A22C2CE82AD17A97F0DE7E4370F0669 (PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_0 = NULL;
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_0 = ___0_pointerEvent;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_1;
|
|
L_1 = MouseUpEvent_MakeFromPointerEvent_mD1830A08D58F0D48CF422CF3E453B3C81E0237F4(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_m9CA92EB7E0EAD8BC01901C30E5C496829A3B1D20 (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_0 = NULL;
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_0 = ___0_pointerEvent;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_1;
|
|
L_1 = MouseUpEvent_MakeFromPointerEvent_mD1830A08D58F0D48CF422CF3E453B3C81E0237F4(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseUpEvent UnityEngine.UIElements.MouseUpEvent::GetPooled(UnityEngine.UIElements.PointerCancelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* MouseUpEvent_GetPooled_mADEC2C8C9C69683139A261C5312A679E7F6B1D29 (PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* V_0 = NULL;
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_0 = ___0_pointerEvent;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_1;
|
|
L_1 = MouseUpEvent_MakeFromPointerEvent_mD1830A08D58F0D48CF422CF3E453B3C81E0237F4(L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_2 = V_0;
|
|
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
|
|
// System.Void UnityEngine.UIElements.MouseMoveEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseMoveEvent_Init_m68F14067891E33D47B0A94DC1C50E3AA1B322F6A (MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_mFEAB9B469E99EDAA5E56F540357226049C5B9AFA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_mFEAB9B469E99EDAA5E56F540357226049C5B9AFA(__this, MouseEventBase_1_Init_mFEAB9B469E99EDAA5E56F540357226049C5B9AFA_RuntimeMethod_var);
|
|
MouseMoveEvent_LocalInit_m1159C3B901FC061B77C1C86AF01D4EDA5F779FB4(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseMoveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseMoveEvent_LocalInit_m1159C3B901FC061B77C1C86AF01D4EDA5F779FB4 (MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 7, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseMoveEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseMoveEvent__ctor_m4A63D10DA7CD74EA5822D4B808CDD2F4B9CD2781 (MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mB84A95F11F7DECE44659C5D099FE7C82773A2BB1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mB84A95F11F7DECE44659C5D099FE7C82773A2BB1(__this, MouseEventBase_1__ctor_mB84A95F11F7DECE44659C5D099FE7C82773A2BB1_RuntimeMethod_var);
|
|
MouseMoveEvent_LocalInit_m1159C3B901FC061B77C1C86AF01D4EDA5F779FB4(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseMoveEvent UnityEngine.UIElements.MouseMoveEvent::GetPooled(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* MouseMoveEvent_GetPooled_m6DD3C6A3D681222E98443C2D5483B7537B6E8ACA (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_mC2955840E38CF19566CC2F2D06178101E293F268_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* V_0 = NULL;
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_0 = ___0_pointerEvent;
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_1;
|
|
L_1 = MouseEventBase_1_GetPooled_mC2955840E38CF19566CC2F2D06178101E293F268(L_0, MouseEventBase_1_GetPooled_mC2955840E38CF19566CC2F2D06178101E293F268_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_2 = V_0;
|
|
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
|
|
// System.Void UnityEngine.UIElements.ContextClickEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextClickEvent__ctor_m2B4C8FF4D4BEF932835AE2EED510E07DF0B42E13 (ContextClickEvent_t06F36D1ACA5C8390D5085158C7D7C1BCF9549EA3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mD08FBD2DD5FD68ABF25E50B606C89B3EB46D8C82_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mD08FBD2DD5FD68ABF25E50B606C89B3EB46D8C82(__this, MouseEventBase_1__ctor_mD08FBD2DD5FD68ABF25E50B606C89B3EB46D8C82_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
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.WheelEvent::get_delta()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 WheelEvent_get_delta_mDFB7F45FA5ED7D711EBB3F8FADC88C4F451088B2 (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3CdeltaU3Ek__BackingField_28;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.WheelEvent::set_delta(UnityEngine.Vector3)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92 (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CdeltaU3Ek__BackingField_28 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.WheelEvent UnityEngine.UIElements.WheelEvent::GetPooled(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* WheelEvent_GetPooled_m0012F4C8219EE41BB0C038058C62E47284989F15 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m76E4D98D003541CE0DF10D5800CD7CE4D1BDC6AD_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* V_0 = NULL;
|
|
bool V_1 = false;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* V_2 = NULL;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_systemEvent;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_1;
|
|
L_1 = MouseEventBase_1_GetPooled_m76E4D98D003541CE0DF10D5800CD7CE4D1BDC6AD(L_0, MouseEventBase_1_GetPooled_m76E4D98D003541CE0DF10D5800CD7CE4D1BDC6AD_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_2 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = ___0_systemEvent;
|
|
NullCheck(L_2);
|
|
EventBase_set_imguiEvent_m72FEAD8F7611927C077B45BAA719C15D39E9F4F4(L_2, L_3, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_4 = ___0_systemEvent;
|
|
V_1 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_6 = V_0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_systemEvent;
|
|
NullCheck(L_7);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = Event_get_delta_m1BBF28E2FC379EDD3907DC987E6BD7E6521D69A0(L_7, NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
L_9 = Vector2_op_Implicit_m6D9CABB2C791A192867D7A4559D132BE86DD3EB7_inline(L_8, NULL);
|
|
NullCheck(L_6);
|
|
WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92_inline(L_6, L_9, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_10 = V_0;
|
|
V_2 = L_10;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_11 = V_2;
|
|
return L_11;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.WheelEvent UnityEngine.UIElements.WheelEvent::GetPooled(UnityEngine.Vector3,UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* WheelEvent_GetPooled_m0B52D894574A9F79079C03E54529A1B28D776E85 (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_delta, RuntimeObject* ___1_pointerEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_m4B99E18521DA00391AA9F80D8639D184C9ACA33C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* V_0 = NULL;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_pointerEvent;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_1;
|
|
L_1 = MouseEventBase_1_GetPooled_m4B99E18521DA00391AA9F80D8639D184C9ACA33C(L_0, MouseEventBase_1_GetPooled_m4B99E18521DA00391AA9F80D8639D184C9ACA33C_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_2 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = ___0_delta;
|
|
NullCheck(L_2);
|
|
WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92_inline(L_2, L_3, NULL);
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.WheelEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WheelEvent_Init_mD54725B2612B5A09E26B9A64EB62E467A64874FF (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_mF4545F4BE72A0550BDF8FD5757AC406A1BF716A4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_mF4545F4BE72A0550BDF8FD5757AC406A1BF716A4(__this, MouseEventBase_1_Init_mF4545F4BE72A0550BDF8FD5757AC406A1BF716A4_RuntimeMethod_var);
|
|
WheelEvent_LocalInit_mED59C3380CDBD81DFBAE2DC2458C4118225C7A41(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.WheelEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WheelEvent_LocalInit_mED59C3380CDBD81DFBAE2DC2458C4118225C7A41 (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)15), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
|
|
L_0 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.WheelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WheelEvent__ctor_mD21D4AE005AEB2719EE3B111C4CD7BD75EA19014 (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mB7045D14E46AB980B352B696F07A3DE86F767129_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mB7045D14E46AB980B352B696F07A3DE86F767129(__this, MouseEventBase_1__ctor_mB7045D14E46AB980B352B696F07A3DE86F767129_RuntimeMethod_var);
|
|
WheelEvent_LocalInit_mED59C3380CDBD81DFBAE2DC2458C4118225C7A41(__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
|
|
// System.Void UnityEngine.UIElements.MouseEnterEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterEvent_Init_mA5069A243D11863569AEF6DFFF1E390FAEF92F38 (MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_m0B0AF66EF7846C4FAA09B86D9A04A72AA7559F3A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_m0B0AF66EF7846C4FAA09B86D9A04A72AA7559F3A(__this, MouseEventBase_1_Init_m0B0AF66EF7846C4FAA09B86D9A04A72AA7559F3A_RuntimeMethod_var);
|
|
MouseEnterEvent_LocalInit_mFCFB0E12299ADB33B08857F6D621783E79951123(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterEvent_LocalInit_mFCFB0E12299ADB33B08857F6D621783E79951123 (MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)22), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterEvent__ctor_m9F6B256914C0B653355E841EEDC8BC15B904C6B4 (MouseEnterEvent_t972DD23B5A1EBA882CFC53569413DBFC586A598E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m3C6E232AD6D84E78DDADFCF1186821ED2C5B66FE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m3C6E232AD6D84E78DDADFCF1186821ED2C5B66FE(__this, MouseEventBase_1__ctor_m3C6E232AD6D84E78DDADFCF1186821ED2C5B66FE_RuntimeMethod_var);
|
|
MouseEnterEvent_LocalInit_mFCFB0E12299ADB33B08857F6D621783E79951123(__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
|
|
// System.Void UnityEngine.UIElements.MouseLeaveEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveEvent_Init_m7FBB1CF6C6862C6C0A87919AD24DD34C289634B3 (MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_m5FF50B43F529E49EFB22E44617739B8D414D8D25_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_m5FF50B43F529E49EFB22E44617739B8D414D8D25(__this, MouseEventBase_1_Init_m5FF50B43F529E49EFB22E44617739B8D414D8D25_RuntimeMethod_var);
|
|
MouseLeaveEvent_LocalInit_m5A05E04EC6C8754DE7E7D17EB954D66918E34201(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveEvent_LocalInit_m5A05E04EC6C8754DE7E7D17EB954D66918E34201 (MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, ((int32_t)22), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveEvent__ctor_m33A44A0C82B1C3A6619A9737B8D35FBD5F6378DF (MouseLeaveEvent_tECE38F87AF42C007350618F592806DFCC51B97D9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mD86BD142A6E3495041FBDAB51EAC772A22BEA5EA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mD86BD142A6E3495041FBDAB51EAC772A22BEA5EA(__this, MouseEventBase_1__ctor_mD86BD142A6E3495041FBDAB51EAC772A22BEA5EA_RuntimeMethod_var);
|
|
MouseLeaveEvent_LocalInit_m5A05E04EC6C8754DE7E7D17EB954D66918E34201(__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
|
|
// System.Void UnityEngine.UIElements.MouseEnterWindowEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterWindowEvent_Init_m6FE6557AB2CA3F61DC77EE9B1BBFF8636C859308 (MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_m5172307D4D848585DFF1EB18608B9B26AAAB7A47_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_m5172307D4D848585DFF1EB18608B9B26AAAB7A47(__this, MouseEventBase_1_Init_m5172307D4D848585DFF1EB18608B9B26AAAB7A47_RuntimeMethod_var);
|
|
MouseEnterWindowEvent_LocalInit_mB2A56A4CF9E7BAE2F0E404AE2CA863AA9B9FF262(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterWindowEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterWindowEvent_LocalInit_mB2A56A4CF9E7BAE2F0E404AE2CA863AA9B9FF262 (MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterWindowEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterWindowEvent__ctor_mE3ABCA5310EAC1F3C6121F7131445A3F7BED7853 (MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m604ECC785993566C6DBF24FE55F7050124B365DE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m604ECC785993566C6DBF24FE55F7050124B365DE(__this, MouseEventBase_1__ctor_m604ECC785993566C6DBF24FE55F7050124B365DE_RuntimeMethod_var);
|
|
MouseEnterWindowEvent_LocalInit_mB2A56A4CF9E7BAE2F0E404AE2CA863AA9B9FF262(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEnterWindowEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEnterWindowEvent_PostDispatch_m6AC9564755856642FC19EC771383EF70DB8DC90E (MouseEnterWindowEvent_t35235A8FC26FECB74331E4E5CF5E3ED9BBDD2FA6* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_PostDispatch_m554F8A3B5BB1FF34F91107CD64E9E927546D800D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_0 = NULL;
|
|
bool V_1 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* G_B3_0 = NULL;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* G_B2_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(4 /* UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.IMouseEventInternal::get_sourcePointerEvent() */, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var, __this);
|
|
V_0 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)IsInstClass((RuntimeObject*)L_0, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_panel;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_4 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_3, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
G_B2_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B3_0 = L_4;
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
BaseVisualElementPanel_CommitElementUnderPointers_m627C64420BE261C972B4A9D37E619E9E275EB072(G_B3_0, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
RuntimeObject* L_5 = ___0_panel;
|
|
MouseEventBase_1_PostDispatch_m554F8A3B5BB1FF34F91107CD64E9E927546D800D(__this, L_5, MouseEventBase_1_PostDispatch_m554F8A3B5BB1FF34F91107CD64E9E927546D800D_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
|
|
// System.Void UnityEngine.UIElements.MouseLeaveWindowEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveWindowEvent_Init_m7E432C3F4BF001070B2F87B7A04EA87F7DB83A7C (MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_mFFC1D5A84BBF1E43B3219E043EC13091772C4708_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_mFFC1D5A84BBF1E43B3219E043EC13091772C4708(__this, MouseEventBase_1_Init_mFFC1D5A84BBF1E43B3219E043EC13091772C4708_RuntimeMethod_var);
|
|
MouseLeaveWindowEvent_LocalInit_m2041C8ED9719EA11285AD22A3BD4FE69BE0CDE9B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveWindowEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveWindowEvent_LocalInit_m2041C8ED9719EA11285AD22A3BD4FE69BE0CDE9B (MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 4, NULL);
|
|
InterfaceActionInvoker1< bool >::Invoke(3 /* System.Void UnityEngine.UIElements.IMouseEventInternal::set_recomputeTopElementUnderMouse(System.Boolean) */, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var, __this, (bool)0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveWindowEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveWindowEvent__ctor_m1E173F3A3AFE54BCDF42475D1EBB5218979E885C (MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m6552D6F655A8E0E8C16FD2A907590F97F2DFF8A0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m6552D6F655A8E0E8C16FD2A907590F97F2DFF8A0(__this, MouseEventBase_1__ctor_m6552D6F655A8E0E8C16FD2A907590F97F2DFF8A0_RuntimeMethod_var);
|
|
MouseLeaveWindowEvent_LocalInit_m2041C8ED9719EA11285AD22A3BD4FE69BE0CDE9B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.MouseLeaveWindowEvent UnityEngine.UIElements.MouseLeaveWindowEvent::GetPooled(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* MouseLeaveWindowEvent_GetPooled_mB72EEDAEF5190F1398C2087940F2634BD787A0FE (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_systemEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_GetPooled_mDA2CD5EE5E56FDDF4ECBD5B5BEF7789AD73F52CD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* V_1 = NULL;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_systemEvent;
|
|
V_0 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerDeviceState_tD94EF3C9710026DE8B7E83B6C842524C7C6EBA8C_il2cpp_TypeInfo_var);
|
|
PointerDeviceState_ReleaseAllButtons_mCB608A120B1851402C0300EF8AA95620A1AF86AA(L_2, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = ___0_systemEvent;
|
|
MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* L_4;
|
|
L_4 = MouseEventBase_1_GetPooled_mDA2CD5EE5E56FDDF4ECBD5B5BEF7789AD73F52CD(L_3, MouseEventBase_1_GetPooled_mDA2CD5EE5E56FDDF4ECBD5B5BEF7789AD73F52CD_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseLeaveWindowEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseLeaveWindowEvent_PostDispatch_mCF0B6E80B668835676908D2F97D64B0C91F6AB9D (MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_PostDispatch_mE6988E33474F18D07624B92B3828903754A296E0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_0 = NULL;
|
|
bool V_1 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* G_B3_0 = NULL;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* G_B2_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(4 /* UnityEngine.UIElements.IPointerEvent UnityEngine.UIElements.IMouseEventInternal::get_sourcePointerEvent() */, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var, __this);
|
|
V_0 = ((EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)IsInstClass((RuntimeObject*)L_0, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_panel;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_4 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_3, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
G_B2_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B3_0 = L_4;
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
BaseVisualElementPanel_CommitElementUnderPointers_m627C64420BE261C972B4A9D37E619E9E275EB072(G_B3_0, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
RuntimeObject* L_5 = ___0_panel;
|
|
MouseEventBase_1_PostDispatch_mE6988E33474F18D07624B92B3828903754A296E0(__this, L_5, MouseEventBase_1_PostDispatch_mE6988E33474F18D07624B92B3828903754A296E0_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
|
|
// System.Void UnityEngine.UIElements.MouseOverEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseOverEvent__ctor_mFD3FC107F10118BE04B4E0983B7E1F87982D044F (MouseOverEvent_t7B8F0B26E77632F3A33FDCBD26B39FF74A8558C2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mE970617681C555250ADB957AAAA30CCA8471C99B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mE970617681C555250ADB957AAAA30CCA8471C99B(__this, MouseEventBase_1__ctor_mE970617681C555250ADB957AAAA30CCA8471C99B_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
|
|
// System.Void UnityEngine.UIElements.MouseOutEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseOutEvent__ctor_m05FF30E214AF5C61887B050AA85BEF25B5FB19C0 (MouseOutEvent_t6848AB296F36F86C5E44F248E1BDC10882D8EDBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_m606F1D5F8D2D5C2AB1B3857D1C2C2EBBBF1F0906_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_m606F1D5F8D2D5C2AB1B3857D1C2C2EBBBF1F0906(__this, MouseEventBase_1__ctor_m606F1D5F8D2D5C2AB1B3857D1C2C2EBBBF1F0906_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
|
|
// UnityEngine.UIElements.DropdownMenu UnityEngine.UIElements.ContextualMenuPopulateEvent::get_menu()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ContextualMenuPopulateEvent_get_menu_mDD978E1DE874D04B47708329654A7D37F88C37CA (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_0 = __this->___U3CmenuU3Ek__BackingField_28;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::set_menu(UnityEngine.UIElements.DropdownMenu)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_set_menu_m28709F7A74353EFEECFE1C28D708C6F619E84120 (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_0 = ___0_value;
|
|
__this->___U3CmenuU3Ek__BackingField_28 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CmenuU3Ek__BackingField_28), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.ContextualMenuPopulateEvent::get_triggerEvent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = __this->___U3CtriggerEventU3Ek__BackingField_29;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::set_triggerEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_set_triggerEvent_m6AEDC5CEB93E6A8DA01BD7760D7DE05C90884E3A (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_value;
|
|
__this->___U3CtriggerEventU3Ek__BackingField_29 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtriggerEventU3Ek__BackingField_29), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_Init_mC57C7FBAD8C99FFD4A707187A374AF17F0DE6F42 (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_Init_mB557CC2D817400B27286C2D5FBAB71B25A0A8DD5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1_Init_mB557CC2D817400B27286C2D5FBAB71B25A0A8DD5(__this, MouseEventBase_1_Init_mB557CC2D817400B27286C2D5FBAB71B25A0A8DD5_RuntimeMethod_var);
|
|
ContextualMenuPopulateEvent_LocalInit_m96F892D597CF3A54B393B7B5380800E93E632F3B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_LocalInit_m96F892D597CF3A54B393B7B5380800E93E632F3B (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
ContextualMenuPopulateEvent_set_menu_m28709F7A74353EFEECFE1C28D708C6F619E84120_inline(__this, (DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2*)NULL, NULL);
|
|
__this->___m_ContextualMenuManager_30 = (ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ContextualMenuManager_30), (void*)(ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B*)NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0;
|
|
L_0 = ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline(__this, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2;
|
|
L_2 = ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker0::Invoke(14 /* System.Void UnityEngine.UIElements.EventBase::Dispose() */, L_2);
|
|
ContextualMenuPopulateEvent_set_triggerEvent_m6AEDC5CEB93E6A8DA01BD7760D7DE05C90884E3A_inline(__this, (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)NULL, NULL);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent__ctor_m50FDFA25DF6EAD42A71FDAE40F50758E0E143ACD (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1__ctor_mD3DE0C71E1F39D8D818A1EA52D607369F382C3BF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
MouseEventBase_1__ctor_mD3DE0C71E1F39D8D818A1EA52D607369F382C3BF(__this, MouseEventBase_1__ctor_mD3DE0C71E1F39D8D818A1EA52D607369F382C3BF_RuntimeMethod_var);
|
|
ContextualMenuPopulateEvent_LocalInit_m96F892D597CF3A54B393B7B5380800E93E632F3B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ContextualMenuPopulateEvent::PostDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_PostDispatch_mC423CC15042389F45134C45087909267984894AF (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_PostDispatch_mB75794FD55D2CD0C88E989577B3D4768393F353F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* L_1 = __this->___m_ContextualMenuManager_30;
|
|
G_B3_0 = ((!(((RuntimeObject*)(ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_3;
|
|
L_3 = ContextualMenuPopulateEvent_get_menu_mDD978E1DE874D04B47708329654A7D37F88C37CA_inline(__this, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4;
|
|
L_4 = ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
DropdownMenu_PrepareForDisplay_m7217E1F33CE5D461B41D61239DBB1B8FCAB01DBF(L_3, L_4, NULL);
|
|
ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B* L_5 = __this->___m_ContextualMenuManager_30;
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_6;
|
|
L_6 = ContextualMenuPopulateEvent_get_menu_mDD978E1DE874D04B47708329654A7D37F88C37CA_inline(__this, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7;
|
|
L_7 = ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline(__this, NULL);
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker2< DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2*, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(5 /* System.Void UnityEngine.UIElements.ContextualMenuManager::DoDisplayMenu(UnityEngine.UIElements.DropdownMenu,UnityEngine.UIElements.EventBase) */, L_5, L_6, L_7);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
RuntimeObject* L_8 = ___0_panel;
|
|
MouseEventBase_1_PostDispatch_mB75794FD55D2CD0C88E989577B3D4768393F353F(__this, L_8, MouseEventBase_1_PostDispatch_mB75794FD55D2CD0C88E989577B3D4768393F353F_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
|
|
// System.Void UnityEngine.UIElements.ValidateCommandEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidateCommandEvent__ctor_m00A2D83B05525CD9D1FEA2696CABE6A6DB2B45B3 (ValidateCommandEvent_t0FFED9E9EA11DA2AAB7ACF37C9D0CDB1FD847FDA* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandEventBase_1__ctor_m0EE3ADD730778B7B390BAB028BFE8F01481C2ADD_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CommandEventBase_1__ctor_m0EE3ADD730778B7B390BAB028BFE8F01481C2ADD(__this, CommandEventBase_1__ctor_m0EE3ADD730778B7B390BAB028BFE8F01481C2ADD_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
|
|
// System.Void UnityEngine.UIElements.ExecuteCommandEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteCommandEvent__ctor_m101905839F22DB07F31A7E80C115AD38CC9CE436 (ExecuteCommandEvent_t41D5C771261998F58E01612B66E1EF60C100F6D4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandEventBase_1__ctor_mD1BEBAC533ED3D60C4D7A4587F3BAF7627E3F2E6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CommandEventBase_1__ctor_mD1BEBAC533ED3D60C4D7A4587F3BAF7627E3F2E6(__this, CommandEventBase_1__ctor_mD1BEBAC533ED3D60C4D7A4587F3BAF7627E3F2E6_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
|
|
// System.Void UnityEngine.UIElements.FocusOutEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusOutEvent_Init_mC525B3499EDC0E72E66B01894119631B085A3CA7 (FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_Init_mA72DC669D8659FF07D190ED39EC8AF109B22B2DC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1_Init_mA72DC669D8659FF07D190ED39EC8AF109B22B2DC(__this, FocusEventBase_1_Init_mA72DC669D8659FF07D190ED39EC8AF109B22B2DC_RuntimeMethod_var);
|
|
FocusOutEvent_LocalInit_m360EAB28EF2DB06A8327CEE5CB660354B12FA063(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusOutEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusOutEvent_LocalInit_m360EAB28EF2DB06A8327CEE5CB660354B12FA063 (FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusOutEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusOutEvent__ctor_m1A78C8CA5B40E26B58048C9F8FBC277F6B52B324 (FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1__ctor_m94B8E2FFFA6261D448EFF0A546E833D70F708386_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1__ctor_m94B8E2FFFA6261D448EFF0A546E833D70F708386(__this, FocusEventBase_1__ctor_m94B8E2FFFA6261D448EFF0A546E833D70F708386_RuntimeMethod_var);
|
|
FocusOutEvent_LocalInit_m360EAB28EF2DB06A8327CEE5CB660354B12FA063(__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
|
|
// System.Void UnityEngine.UIElements.BlurEvent::PreDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BlurEvent_PreDispatch_mF615D1681CA592ADB724316D832E68DEB495DB8E (BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_focusController_m9E504BEF59B529FC125693F27E3E1F50495FDCA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
EventBase_PreDispatch_mD788394C54A5400B25B423AF5DC41AA318A33DC4(__this, L_0, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_inline(__this, FocusEventBase_1_get_relatedTarget_mEF884A0DC8D750986502E3CDC0C2E9B5379800D6_RuntimeMethod_var);
|
|
V_0 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = FocusEventBase_1_get_focusController_m9E504BEF59B529FC125693F27E3E1F50495FDCA7_inline(__this, FocusEventBase_1_get_focusController_m9E504BEF59B529FC125693F27E3E1F50495FDCA7_RuntimeMethod_var);
|
|
NullCheck(L_3);
|
|
FocusController_DoFocusChange_mF171453239CB9F0DF03E0E5ABFD48AEC49DF9CB4(L_3, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BlurEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BlurEvent__ctor_m5543F054183CE72E20A1644E91A9C5D68D4FDA73 (BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1__ctor_m1263E69D612CA01C2996B918DF64532FD9FEB498_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1__ctor_m1263E69D612CA01C2996B918DF64532FD9FEB498(__this, FocusEventBase_1__ctor_m1263E69D612CA01C2996B918DF64532FD9FEB498_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
|
|
// System.Void UnityEngine.UIElements.FocusInEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusInEvent_Init_mF344AE017BC7E97AE3F47CE8DB288FF0BA6FFFDF (FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_Init_m2B80A3CB379E144D03568D06FA2216895A7A9804_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1_Init_m2B80A3CB379E144D03568D06FA2216895A7A9804(__this, FocusEventBase_1_Init_m2B80A3CB379E144D03568D06FA2216895A7A9804_RuntimeMethod_var);
|
|
FocusInEvent_LocalInit_m662E1C26A15F66AD72F9D2CE1B867BD9BC69E9B6(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusInEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusInEvent_LocalInit_m662E1C26A15F66AD72F9D2CE1B867BD9BC69E9B6 (FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusInEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusInEvent__ctor_mA8E3F05F55F1794CFC8AA44A55894EB46F3E22EA (FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1__ctor_m4D74FEAC69FD099A561F3E18A97276C34711144D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1__ctor_m4D74FEAC69FD099A561F3E18A97276C34711144D(__this, FocusEventBase_1__ctor_m4D74FEAC69FD099A561F3E18A97276C34711144D_RuntimeMethod_var);
|
|
FocusInEvent_LocalInit_m662E1C26A15F66AD72F9D2CE1B867BD9BC69E9B6(__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
|
|
// System.Void UnityEngine.UIElements.FocusEvent::PreDispatch(UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusEvent_PreDispatch_mA6AC7D3971ADEC01FE35CD4C1AF33DFF50976CE2 (FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* __this, RuntimeObject* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_focusController_m4B3D99989FB7F92066CF64237E637A92A2FCBAA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
EventBase_PreDispatch_mD788394C54A5400B25B423AF5DC41AA318A33DC4(__this, L_0, NULL);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_1;
|
|
L_1 = FocusEventBase_1_get_focusController_m4B3D99989FB7F92066CF64237E637A92A2FCBAA0_inline(__this, FocusEventBase_1_get_focusController_m4B3D99989FB7F92066CF64237E637A92A2FCBAA0_RuntimeMethod_var);
|
|
RuntimeObject* L_2;
|
|
L_2 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(__this, NULL);
|
|
NullCheck(L_1);
|
|
FocusController_DoFocusChange_mF171453239CB9F0DF03E0E5ABFD48AEC49DF9CB4(L_1, ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)IsInstClass((RuntimeObject*)L_2, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var)), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusEvent__ctor_m8A49411C69EC79AA7E17CB3C0ED30B8A7F2E0688 (FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1__ctor_mAA41734F626A8D069318E4C1057CBE5D9C4711C5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusEventBase_1__ctor_mAA41734F626A8D069318E4C1057CBE5D9C4711C5(__this, FocusEventBase_1__ctor_mAA41734F626A8D069318E4C1057CBE5D9C4711C5_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
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_CanDispatchEvent_m681D4E615323B4050C65C8AAEDE2367B7E879573 (MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy_DispatchEvent_mE20F177F14AE30BB04E4520F44A68ACA406B3C7D (MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_iPanel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_iPanel;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_iPanel;
|
|
il2cpp_codegen_runtime_class_init_inline(Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
Assert_IsTrue_mE42C53B7220324D1FBAFB7AE48A7D8DD7796A663((bool)((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)IsInstClass((RuntimeObject*)L_2, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
|
|
RuntimeObject* L_3 = ___1_iPanel;
|
|
V_1 = ((BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)CastclassClass((RuntimeObject*)L_3, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_5 = V_1;
|
|
MouseEventDispatchingStrategy_SetBestTargetForEvent_m5CE6AA02B8DD56733DF12C63016A96073510B758(L_4, L_5, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_7 = V_1;
|
|
bool L_8;
|
|
L_8 = MouseEventDispatchingStrategy_SendEventToTarget_mA0A51B4ED15FC687C4E8767AE7DDEA5C44A935AD(L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_9, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToTarget(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToTarget_mA0A51B4ED15FC687C4E8767AE7DDEA5C44A935AD (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_1 = ___1_panel;
|
|
bool L_2;
|
|
L_2 = MouseEventDispatchingStrategy_SendEventToRegularTarget_m17A8680DC91E0A49168C3AC4ADDBA1B860A74B38(L_0, L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_4 = ___1_panel;
|
|
bool L_5;
|
|
L_5 = MouseEventDispatchingStrategy_SendEventToIMGUIContainer_m34346929F73ECBC91D8520A049BF4B018B7C8010(L_3, L_4, NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToRegularTarget(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToRegularTarget_m17A8680DC91E0A49168C3AC4ADDBA1B860A74B38 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_0, NULL);
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_3, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
bool L_5;
|
|
L_5 = MouseEventDispatchingStrategy_IsDone_mA1ECE68F27613C2E71607AC809D25862526065EF(L_4, NULL);
|
|
V_1 = L_5;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::SendEventToIMGUIContainer(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_SendEventToIMGUIContainer_m34346929F73ECBC91D8520A049BF4B018B7C8010 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_1;
|
|
L_1 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_0, NULL);
|
|
V_1 = (bool)((((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_3 = ___1_panel;
|
|
NullCheck(L_3);
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_4;
|
|
L_4 = VirtualFuncInvoker0< IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* >::Invoke(20 /* UnityEngine.UIElements.IMGUIContainer UnityEngine.UIElements.BaseVisualElementPanel::get_rootIMGUIContainer() */, L_3);
|
|
V_0 = L_4;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_5 = V_0;
|
|
V_3 = (bool)((((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_6 = V_3;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
int64_t L_10;
|
|
L_10 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var);
|
|
int64_t L_11;
|
|
L_11 = EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991(EventBase_1_TypeId_m8552C809034EA01711DE8E6C0B63600457F9A991_RuntimeMethod_var);
|
|
if ((((int64_t)L_10) == ((int64_t)L_11)))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
int64_t L_13;
|
|
L_13 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_12);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
int64_t L_14;
|
|
L_14 = EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B(EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
G_B8_0 = ((((int64_t)L_13) == ((int64_t)L_14))? 1 : 0);
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
G_B8_0 = 1;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
V_4 = (bool)G_B8_0;
|
|
bool L_15 = V_4;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_16 = ___0_evt;
|
|
NullCheck(L_16);
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_17;
|
|
L_17 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(L_16, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_19;
|
|
L_19 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_18, NULL);
|
|
NullCheck(L_17);
|
|
List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_inline(L_17, L_19, List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_20 = ___1_panel;
|
|
NullCheck(L_20);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21;
|
|
L_21 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(35 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::get_visualTree() */, L_20);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_21, L_22, NULL);
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___0_evt;
|
|
bool L_24;
|
|
L_24 = MouseEventDispatchingStrategy_IsDone_mA1ECE68F27613C2E71607AC809D25862526065EF(L_23, NULL);
|
|
V_2 = L_24;
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
bool L_25 = V_2;
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::SetBestTargetForEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy_SetBestTargetForEvent_m5CE6AA02B8DD56733DF12C63016A96073510B758 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B6_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B5_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B7_0 = NULL;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* G_B7_1 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_1 = ___1_panel;
|
|
MouseEventDispatchingStrategy_UpdateElementUnderMouse_m40E22F2B217096A3396C781415BF4C66B60D2C5E(L_0, L_1, (&V_0), NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_2, NULL);
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_5, (bool)0, NULL);
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
V_2 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_8, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_0;
|
|
NullCheck(L_9);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_9, L_10, NULL);
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_12 = ___1_panel;
|
|
G_B5_0 = L_11;
|
|
if (L_12)
|
|
{
|
|
G_B6_0 = L_11;
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_13 = ___1_panel;
|
|
NullCheck(L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(35 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::get_visualTree() */, L_13);
|
|
G_B7_0 = L_14;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
NullCheck(G_B7_1);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(G_B7_1, G_B7_0, NULL);
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::UpdateElementUnderMouse(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.BaseVisualElementPanel,UnityEngine.UIElements.VisualElement&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy_UpdateElementUnderMouse_m40E22F2B217096A3396C781415BF4C66B60D2C5E (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___1_panel, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** ___2_elementUnderMouse, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B5_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B4_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B6_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** G_B6_1 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
RuntimeObject* L_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 1;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IMouseEventInternal::get_recomputeTopElementUnderMouse() */, IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_il2cpp_TypeInfo_var, G_B2_0);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** L_3 = ___2_elementUnderMouse;
|
|
bool L_4 = V_0;
|
|
G_B4_0 = L_3;
|
|
if (L_4)
|
|
{
|
|
G_B5_0 = L_3;
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_5 = ___1_panel;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_6 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
NullCheck(L_5);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = BaseVisualElementPanel_GetTopElementUnderPointer_mDB876CD969BE130AC4E687554E08334ECBEB6B30(L_5, L_6, NULL);
|
|
G_B6_0 = L_7;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_8 = ___1_panel;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_9 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_10, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var)));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = InterfaceFuncInvoker0< Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(1 /* UnityEngine.Vector2 UnityEngine.UIElements.IMouseEvent::get_mousePosition() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var)));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = ___0_evt;
|
|
NullCheck(L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = BaseVisualElementPanel_RecomputeTopElementUnderPointer_mF3D6110A28FCCF72408FE62A21A4F57E4AC717AF(L_8, L_9, L_11, L_12, NULL);
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
*((RuntimeObject**)G_B6_1) = (RuntimeObject*)G_B6_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B6_1, (void*)(RuntimeObject*)G_B6_0);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
NullCheck(L_14);
|
|
int64_t L_15;
|
|
L_15 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_14);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_il2cpp_TypeInfo_var);
|
|
int64_t L_16;
|
|
L_16 = EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B(EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_15) == ((uint64_t)L_16))))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_17 = ___0_evt;
|
|
NullCheck(((MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7*)IsInstClass((RuntimeObject*)L_17, MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7_il2cpp_TypeInfo_var)));
|
|
int32_t L_18;
|
|
L_18 = MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_inline(((MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7*)IsInstClass((RuntimeObject*)L_17, MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7_il2cpp_TypeInfo_var)), MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_RuntimeMethod_var);
|
|
G_B9_0 = ((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
V_1 = (bool)G_B9_0;
|
|
bool L_19 = V_1;
|
|
if (!L_19)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_20 = ___1_panel;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_21 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
NullCheck(L_20);
|
|
BaseVisualElementPanel_ClearCachedElementUnderPointer_m56ED8260C952BAB24740F95B280D2294BCC58539(L_20, L_21, L_22, NULL);
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseEventDispatchingStrategy::IsDone(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_IsDone_mA1ECE68F27613C2E71607AC809D25862526065EF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B2_0 = NULL;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_1;
|
|
L_1 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_0, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
int32_t L_3;
|
|
L_3 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(G_B2_0, NULL);
|
|
G_B3_0 = ((((int32_t)L_3) == ((int32_t)((int32_t)12)))? 1 : 0);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_5, NULL);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_6, NULL);
|
|
V_1 = L_7;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
bool L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy__ctor_m24A76F9817155C0AC9FFFEEB821FD500F84FA408 (MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460* __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
|
|
// System.Boolean UnityEngine.UIElements.IMGUIEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIEventDispatchingStrategy_CanDispatchEvent_m4686352550A0DEE77BF57C34B698CDC4660ED8C0 (IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5*)((IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5*)IsInstClass((RuntimeObject*)L_0, IMGUIEvent_t51059D1DE672CD0F0D4E8CAAD593E3A09FAE52B5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEventDispatchingStrategy_DispatchEvent_m44D6D7A294353BA421EE96E7AA72CAA4355F000C (IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___1_panel;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
NullCheck(L_2);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_2);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_5, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_6, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEventDispatchingStrategy__ctor_m4F8BC966B31710FA705E4585B6A6EC096A24F8BC (IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0* __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
|
|
// System.Void UnityEngine.UIElements.KeyDownEvent::GetEquivalentImguiEvent(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyDownEvent_GetEquivalentImguiEvent_mD7A83FE20A85667D34BAFD1B2D8B985702586A4F (KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_outImguiEvent, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0;
|
|
L_0 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = ___0_outImguiEvent;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3;
|
|
L_3 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(__this, NULL);
|
|
NullCheck(L_2);
|
|
Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5(L_2, L_3, NULL);
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_4 = ___0_outImguiEvent;
|
|
NullCheck(L_4);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_4, 4, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5 = ___0_outImguiEvent;
|
|
int32_t L_6;
|
|
L_6 = KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_inline(__this, KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
Event_set_modifiers_m879319643B5CD23F3223AB8E835C8ABCD3DA72FB(L_5, L_6, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_outImguiEvent;
|
|
Il2CppChar L_8;
|
|
L_8 = KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_inline(__this, KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
Event_set_character_mA159F1742FD9EA968F32556C5FE1A2401069BAF5(L_7, L_8, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_9 = ___0_outImguiEvent;
|
|
int32_t L_10;
|
|
L_10 = KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_inline(__this, KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
Event_set_keyCode_m698D040F2EE0BE55B1B06A3FD865CC0A5D7B1168(L_9, L_10, NULL);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.KeyDownEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyDownEvent__ctor_mB618DF4885F2640228953AB6E95576445AF84505 (KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1__ctor_m81B4CAFCE183DB45ACDB9AF0319476AF0CD969CB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
KeyboardEventBase_1__ctor_m81B4CAFCE183DB45ACDB9AF0319476AF0CD969CB(__this, KeyboardEventBase_1__ctor_m81B4CAFCE183DB45ACDB9AF0319476AF0CD969CB_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
|
|
// System.Void UnityEngine.UIElements.KeyUpEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyUpEvent__ctor_mC3FE99955FFF345F45584273203ACAE764751807 (KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1__ctor_m5DEEB4213631D80690A19ED45C5602BC705CA346_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
KeyboardEventBase_1__ctor_m5DEEB4213631D80690A19ED45C5602BC705CA346(__this, KeyboardEventBase_1__ctor_m5DEEB4213631D80690A19ED45C5602BC705CA346_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
|
|
// System.Void UnityEngine.UIElements.AttachToPanelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttachToPanelEvent__ctor_m2964C6B2FFCFDFE3E3A8218778A72162ABE153C3 (AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelChangedEventBase_1__ctor_m484437AB3FBE0B759ABD36B98022E2ACCECF0311_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PanelChangedEventBase_1__ctor_m484437AB3FBE0B759ABD36B98022E2ACCECF0311(__this, PanelChangedEventBase_1__ctor_m484437AB3FBE0B759ABD36B98022E2ACCECF0311_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
|
|
// System.Void UnityEngine.UIElements.DetachFromPanelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DetachFromPanelEvent__ctor_m49F11872DD57964C4FCB300294308CAC81F1F0FA (DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PanelChangedEventBase_1__ctor_m9205106266852B52BAD4133BC38F6BF8DF28F26E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
PanelChangedEventBase_1__ctor_m9205106266852B52BAD4133BC38F6BF8DF28F26E(__this, PanelChangedEventBase_1__ctor_m9205106266852B52BAD4133BC38F6BF8DF28F26E_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
|
|
// System.Void UnityEngine.UIElements.InputEvent::set_previousData(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_previousData_mB8F0167113616AA99FAB01E99A7CC34D723214DD (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CpreviousDataU3Ek__BackingField_18 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpreviousDataU3Ek__BackingField_18), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InputEvent::set_newData(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_newData_m9ECFA476FF3EE5F711B54E572B5631EA656EA76C (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CnewDataU3Ek__BackingField_19 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CnewDataU3Ek__BackingField_19), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InputEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_Init_m0BDA1B30C3805EC1EFF3C6E976AECB11EAB7BD8C (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_Init_m8131683CEF471879438D67B7856F2A89C63C7929_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EventBase_1_Init_m8131683CEF471879438D67B7856F2A89C63C7929(__this, EventBase_1_Init_m8131683CEF471879438D67B7856F2A89C63C7929_RuntimeMethod_var);
|
|
InputEvent_LocalInit_mE33CB375D1946443F69F84B9E5FCE65D23E65A5F(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InputEvent::LocalInit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_LocalInit_mE33CB375D1946443F69F84B9E5FCE65D23E65A5F (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline(__this, 3, NULL);
|
|
InputEvent_set_previousData_mB8F0167113616AA99FAB01E99A7CC34D723214DD_inline(__this, (String_t*)NULL, NULL);
|
|
InputEvent_set_newData_m9ECFA476FF3EE5F711B54E572B5631EA656EA76C_inline(__this, (String_t*)NULL, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.InputEvent UnityEngine.UIElements.InputEvent::GetPooled(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* InputEvent_GetPooled_mCA1162981528C0506E58F4DC20E11952F1A9A8F6 (String_t* ___0_previousData, String_t* ___1_newData, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_GetPooled_mB5A6FDED5153774180E113D48361FE9036A93B0C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* V_0 = NULL;
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_il2cpp_TypeInfo_var);
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* L_0;
|
|
L_0 = EventBase_1_GetPooled_mB5A6FDED5153774180E113D48361FE9036A93B0C(EventBase_1_GetPooled_mB5A6FDED5153774180E113D48361FE9036A93B0C_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* L_1 = V_0;
|
|
String_t* L_2 = ___0_previousData;
|
|
NullCheck(L_1);
|
|
InputEvent_set_previousData_mB8F0167113616AA99FAB01E99A7CC34D723214DD_inline(L_1, L_2, NULL);
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* L_3 = V_0;
|
|
String_t* L_4 = ___1_newData;
|
|
NullCheck(L_3);
|
|
InputEvent_set_newData_m9ECFA476FF3EE5F711B54E572B5631EA656EA76C_inline(L_3, L_4, NULL);
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* L_5 = V_0;
|
|
V_1 = L_5;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InputEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_m44996EDDAA78EF0B7C48ADEA888293F2292EEB9D (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1__ctor_m146C3FE791CB9769618F8574DE4ADA56F3A3AAA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t416E301952BBA059BBF60E6FB7553B1464DBC0EB_il2cpp_TypeInfo_var);
|
|
EventBase_1__ctor_m146C3FE791CB9769618F8574DE4ADA56F3A3AAA3(__this, EventBase_1__ctor_m146C3FE791CB9769618F8574DE4ADA56F3A3AAA3_RuntimeMethod_var);
|
|
InputEvent_LocalInit_mE33CB375D1946443F69F84B9E5FCE65D23E65A5F(__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
|
|
// UnityEngine.UIElements.NavigationMoveEvent/Direction UnityEngine.UIElements.NavigationMoveEvent::DetermineMoveDirection(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigationMoveEvent_DetermineMoveDirection_mED9C93FCB031403BE1A49CD7010C46A4EC860421 (float ___0_x, float ___1_y, float ___2_deadZone, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
{
|
|
float L_0 = ___0_x;
|
|
float L_1 = ___1_y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_2), L_0, L_1, /*hidden argument*/NULL);
|
|
V_1 = L_2;
|
|
float L_3;
|
|
L_3 = Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline((&V_1), NULL);
|
|
float L_4 = ___2_deadZone;
|
|
float L_5 = ___2_deadZone;
|
|
V_0 = (bool)((((float)L_3) < ((float)((float)il2cpp_codegen_multiply(L_4, L_5))))? 1 : 0);
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_7 = ___0_x;
|
|
float L_8;
|
|
L_8 = fabsf(L_7);
|
|
float L_9 = ___1_y;
|
|
float L_10;
|
|
L_10 = fabsf(L_9);
|
|
V_3 = (bool)((((float)L_8) > ((float)L_10))? 1 : 0);
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
float L_12 = ___0_x;
|
|
V_4 = (bool)((((float)L_12) > ((float)(0.0f)))? 1 : 0);
|
|
bool L_13 = V_4;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 3;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
V_2 = 1;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
float L_14 = ___1_y;
|
|
V_5 = (bool)((((float)L_14) > ((float)(0.0f)))? 1 : 0);
|
|
bool L_15 = V_5;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 2;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
V_2 = 4;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
int32_t L_16 = V_2;
|
|
return L_16;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.NavigationMoveEvent/Direction UnityEngine.UIElements.NavigationMoveEvent::get_direction()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigationMoveEvent_get_direction_m16FD5A515392149F0E1891E69F32B30C49B457D3 (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CdirectionU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::set_direction(UnityEngine.UIElements.NavigationMoveEvent/Direction)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_direction_m712EBADD778DE12FB11A2E35FA160BA321A1804B (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdirectionU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::set_move(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_move_mB6C278D3B4A3FE95F573E3E74DC3BCD066567244 (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CmoveU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.NavigationMoveEvent UnityEngine.UIElements.NavigationMoveEvent::GetPooled(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* NavigationMoveEvent_GetPooled_mA48256D22EF1A03DAC3CF92FF6FD45D7CE0521E4 (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_moveVector, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_GetPooled_mA4352A75E18231B53FD89198374B6EC173D93D78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* V_0 = NULL;
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tD898F1A47C14556B2F1F500078B600221F5D887E_il2cpp_TypeInfo_var);
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_0;
|
|
L_0 = EventBase_1_GetPooled_mA4352A75E18231B53FD89198374B6EC173D93D78(EventBase_1_GetPooled_mA4352A75E18231B53FD89198374B6EC173D93D78_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_1 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_moveVector;
|
|
float L_3 = L_2.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_moveVector;
|
|
float L_5 = L_4.___y_1;
|
|
int32_t L_6;
|
|
L_6 = NavigationMoveEvent_DetermineMoveDirection_mED9C93FCB031403BE1A49CD7010C46A4EC860421(L_3, L_5, (0.600000024f), NULL);
|
|
NullCheck(L_1);
|
|
NavigationMoveEvent_set_direction_m712EBADD778DE12FB11A2E35FA160BA321A1804B_inline(L_1, L_6, NULL);
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_7 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = ___0_moveVector;
|
|
NullCheck(L_7);
|
|
NavigationMoveEvent_set_move_mB6C278D3B4A3FE95F573E3E74DC3BCD066567244_inline(L_7, L_8, NULL);
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_9 = V_0;
|
|
V_1 = L_9;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationMoveEvent_Init_mCBAF5F4A6CD3BDFBEFC2FEFA1E3DBD3BA1E09D98 (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1_Init_m7B60279F83401BB6508A7B2658240EDA30D5EA8F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1_Init_m7B60279F83401BB6508A7B2658240EDA30D5EA8F(__this, NavigationEventBase_1_Init_m7B60279F83401BB6508A7B2658240EDA30D5EA8F_RuntimeMethod_var);
|
|
NavigationMoveEvent_set_direction_m712EBADD778DE12FB11A2E35FA160BA321A1804B_inline(__this, 0, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0;
|
|
L_0 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
NavigationMoveEvent_set_move_mB6C278D3B4A3FE95F573E3E74DC3BCD066567244_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationMoveEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationMoveEvent__ctor_mB523578ACF31ECC0BAEACE592F68F0A4E6534A52 (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1__ctor_m4F9E95BC8D415DE106E1932FF4A82366CD25D8B9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1__ctor_m4F9E95BC8D415DE106E1932FF4A82366CD25D8B9(__this, NavigationEventBase_1__ctor_m4F9E95BC8D415DE106E1932FF4A82366CD25D8B9_RuntimeMethod_var);
|
|
VirtualActionInvoker0::Invoke(12 /* System.Void UnityEngine.UIElements.EventBase::Init() */, __this);
|
|
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
|
|
// System.Void UnityEngine.UIElements.NavigationTabEvent::set_direction(UnityEngine.UIElements.NavigationTabEvent/Direction)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationTabEvent_set_direction_m1CAB1803AA164CAA4D53D4FDFBA012F4148CD59F (NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdirectionU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.NavigationTabEvent/Direction UnityEngine.UIElements.NavigationTabEvent::DetermineMoveDirection(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigationTabEvent_DetermineMoveDirection_m8429257B9CBCE7E40724CE2134A8B315FE525E31 (int32_t ___0_moveValue, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_moveValue;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_moveValue;
|
|
if ((((int32_t)L_1) < ((int32_t)0)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = 0;
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
G_B4_0 = 2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
G_B6_0 = G_B4_0;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B6_0 = 1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = G_B6_0;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.NavigationTabEvent UnityEngine.UIElements.NavigationTabEvent::GetPooled(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* NavigationTabEvent_GetPooled_m005DBE10756CB17653B72DA4904AD8F6EEB2E41C (int32_t ___0_moveValue, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_GetPooled_m513A5D9AE3EC627C07100D4CE41F7A80485BF5EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t3003145BEE9FE8F5AE8C9E13FC4C7D6453201D80_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* V_0 = NULL;
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t3003145BEE9FE8F5AE8C9E13FC4C7D6453201D80_il2cpp_TypeInfo_var);
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* L_0;
|
|
L_0 = EventBase_1_GetPooled_m513A5D9AE3EC627C07100D4CE41F7A80485BF5EB(EventBase_1_GetPooled_m513A5D9AE3EC627C07100D4CE41F7A80485BF5EB_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* L_1 = V_0;
|
|
int32_t L_2 = ___0_moveValue;
|
|
int32_t L_3;
|
|
L_3 = NavigationTabEvent_DetermineMoveDirection_m8429257B9CBCE7E40724CE2134A8B315FE525E31(L_2, NULL);
|
|
NullCheck(L_1);
|
|
NavigationTabEvent_set_direction_m1CAB1803AA164CAA4D53D4FDFBA012F4148CD59F_inline(L_1, L_3, NULL);
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationTabEvent::Init()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationTabEvent_Init_mE37F81F274DF5F35D151EB37B705C16FA6C0C2D6 (NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1_Init_m3C16C9ABDFE7568FE4D45C6C0C16A6A7EE49E223_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1_Init_m3C16C9ABDFE7568FE4D45C6C0C16A6A7EE49E223(__this, NavigationEventBase_1_Init_m3C16C9ABDFE7568FE4D45C6C0C16A6A7EE49E223_RuntimeMethod_var);
|
|
NavigationTabEvent_set_direction_m1CAB1803AA164CAA4D53D4FDFBA012F4148CD59F_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.NavigationTabEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationTabEvent__ctor_m6D3F90AEBF9C0CDD94D5C563F67DC3EAEE780087 (NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1__ctor_mE183BB21D852CC844A54BEE671209231A4B4CC6D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1__ctor_mE183BB21D852CC844A54BEE671209231A4B4CC6D(__this, NavigationEventBase_1__ctor_mE183BB21D852CC844A54BEE671209231A4B4CC6D_RuntimeMethod_var);
|
|
VirtualActionInvoker0::Invoke(12 /* System.Void UnityEngine.UIElements.EventBase::Init() */, __this);
|
|
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
|
|
// System.Void UnityEngine.UIElements.NavigationCancelEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationCancelEvent__ctor_m612A9638DEA5D850A2119CA7A992C03619ACA03F (NavigationCancelEvent_tB8811EBDC85FD365D1034AEA30F07CBC3161E59E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1__ctor_mECD273E7B651E2DE0CB6D4F2AC99578358CF2D75_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1__ctor_mECD273E7B651E2DE0CB6D4F2AC99578358CF2D75(__this, NavigationEventBase_1__ctor_mECD273E7B651E2DE0CB6D4F2AC99578358CF2D75_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
|
|
// System.Void UnityEngine.UIElements.NavigationSubmitEvent::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigationSubmitEvent__ctor_m5A434BC4053B7763045411ECBBD525FFC2DEC206 (NavigationSubmitEvent_t193DCBDB6CBC8FF9F0A545B48962188505665BB1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigationEventBase_1__ctor_m364A946C798C642694D607BD7C3CB5B91A1DE34F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
NavigationEventBase_1__ctor_m364A946C798C642694D607BD7C3CB5B91A1DE34F(__this, NavigationEventBase_1__ctor_m364A946C798C642694D607BD7C3CB5B91A1DE34F_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
|
|
// System.Boolean UnityEngine.UIElements.CommandEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CommandEventDispatchingStrategy_CanDispatchEvent_m19A39CFF058149054AA8B3EBDB4D71446CCFF181 (CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICommandEvent_t59A6B5E93C0DC08F217BE914D3C5A460096EAA0F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, ICommandEvent_t59A6B5E93C0DC08F217BE914D3C5A460096EAA0F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CommandEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandEventDispatchingStrategy_DispatchEvent_mEA6BA4CACE195D525762AF6F37E6FDBC1F28E62F (CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_panel;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_00f0;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
NullCheck(L_2);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_3;
|
|
L_3 = InterfaceFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(3 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.IPanel::get_focusController() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_2);
|
|
NullCheck(L_3);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4;
|
|
L_4 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_3, NULL);
|
|
V_1 = L_4;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_1;
|
|
V_2 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
bool L_8 = L_7->___isIMGUIContainer_5;
|
|
V_3 = L_8;
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10 = V_1;
|
|
V_4 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)CastclassClass((RuntimeObject*)L_10, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_12 = V_4;
|
|
NullCheck(L_11);
|
|
bool L_13;
|
|
L_13 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_11, L_12, NULL);
|
|
if (L_13)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_14 = V_4;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_14);
|
|
bool L_16;
|
|
L_16 = IMGUIContainer_SendEventToIMGUI_m3D953957F70AB7A0AA0F528D134AEB8177033271(L_14, L_15, (bool)1, (bool)1, NULL);
|
|
G_B6_0 = ((int32_t)(L_16));
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_5 = (bool)G_B6_0;
|
|
bool L_17 = V_5;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_18, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296(L_19, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_20, NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4(L_22, NULL);
|
|
G_B11_0 = ((int32_t)(L_23));
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
G_B11_0 = 0;
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
V_6 = (bool)G_B11_0;
|
|
bool L_24 = V_6;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___0_evt;
|
|
NullCheck(L_25);
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_26;
|
|
L_26 = EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline(L_25, NULL);
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_27 = V_4;
|
|
NullCheck(L_26);
|
|
List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_inline(L_26, L_27, List_1_Add_m6DA75B130104121AA765F375B948065381AED1D4_RuntimeMethod_var);
|
|
RuntimeObject* L_28 = ___1_panel;
|
|
NullCheck(L_28);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29;
|
|
L_29 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_28);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_29, L_30, NULL);
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = ___0_evt;
|
|
RuntimeObject* L_32 = ___1_panel;
|
|
NullCheck(L_32);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_33;
|
|
L_33 = InterfaceFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(3 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.IPanel::get_focusController() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_32);
|
|
NullCheck(L_33);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_34;
|
|
L_34 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_33, NULL);
|
|
NullCheck(L_31);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_31, L_34, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = ___0_evt;
|
|
EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC(L_35, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = ___0_evt;
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_36, NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = ___0_evt;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = EventBase_get_propagateToIMGUI_m59D28D93C3A147615075F78237CA478A4930ABF4(L_38, NULL);
|
|
G_B17_0 = ((int32_t)(L_39));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
G_B17_0 = 0;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
V_7 = (bool)G_B17_0;
|
|
bool L_40 = V_7;
|
|
if (!L_40)
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_41 = ___1_panel;
|
|
NullCheck(L_41);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_42;
|
|
L_42 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_41);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_43 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_42, L_43, NULL);
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
RuntimeObject* L_44 = ___1_panel;
|
|
NullCheck(L_44);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_45;
|
|
L_45 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_44);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_46 = ___0_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_45, L_46, NULL);
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_47 = ___0_evt;
|
|
NullCheck(L_47);
|
|
EventBase_set_propagateToIMGUI_mEE39524D804DF059C390FBC08462CC2892770981(L_47, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_48 = ___0_evt;
|
|
NullCheck(L_48);
|
|
EventBase_set_stopDispatch_m4B24B3101AADAEAAEAB2617E3AF8ED4257681870(L_48, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CommandEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandEventDispatchingStrategy__ctor_m27457609CA672B11FC670BAC2B64E2C0D71E8DEE (CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520* __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
|
|
// System.Void UnityEngine.UIElements.EventDispatchUtilities::PropagateEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatchUtilities_PropagateEvent_mD485FF9B77C66DF959832C41519DC93C29D43CFC (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m76A83B76330D385CC22ECE544729CDD0FCEAFECC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36FD478DDC94C05200062D752D6D9D1031578883);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_7 = NULL;
|
|
bool V_8 = false;
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_10 = NULL;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_14 = NULL;
|
|
bool V_15 = false;
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* G_B3_0 = NULL;
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* G_B2_0 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventBase_get_dispatch_mD276B79138918A551A035A384CB801D17166406F(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0), _stringLiteral36FD478DDC94C05200062D752D6D9D1031578883, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_2, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_4;
|
|
L_4 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_3, NULL);
|
|
V_0 = (bool)((((RuntimeObject*)(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_6, NULL);
|
|
CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* L_8 = ((CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*)IsInstClass((RuntimeObject*)L_7, CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var));
|
|
G_B2_0 = L_8;
|
|
if (L_8)
|
|
{
|
|
G_B3_0 = L_8;
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
NullCheck(G_B3_0);
|
|
CallbackEventHandler_HandleEventAtTargetPhase_m681B23C2CCCF3064FEC2DFF49645043E7F909B18(G_B3_0, L_9, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
goto IL_024b;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
bool L_11;
|
|
L_11 = EventBase_get_tricklesDown_m8AA6FDD44359CE2C3BF327D510B49E6C48D5CFF3(L_10, NULL);
|
|
V_1 = L_11;
|
|
bool L_12 = V_1;
|
|
if (!L_12)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_13, 1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
NullCheck(L_14);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_15;
|
|
L_15 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_14, NULL);
|
|
NullCheck(L_15);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_16 = L_15->___trickleDownPath_1;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = List_1_get_Count_m76A83B76330D385CC22ECE544729CDD0FCEAFECC_inline(L_16, List_1_get_Count_m76A83B76330D385CC22ECE544729CDD0FCEAFECC_RuntimeMethod_var);
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
bool L_19;
|
|
L_19 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_18, NULL);
|
|
V_3 = L_19;
|
|
bool L_20 = V_3;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_21 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_23;
|
|
L_23 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_22, NULL);
|
|
NullCheck(L_23);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_24 = L_23->___trickleDownPath_1;
|
|
int32_t L_25 = V_2;
|
|
NullCheck(L_24);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26;
|
|
L_26 = List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092(L_24, L_25, List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092_RuntimeMethod_var);
|
|
NullCheck(L_21);
|
|
bool L_27;
|
|
L_27 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_21, L_26, NULL);
|
|
V_4 = L_27;
|
|
bool L_28 = V_4;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
NullCheck(L_30);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_31;
|
|
L_31 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_30, NULL);
|
|
NullCheck(L_31);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_32 = L_31->___trickleDownPath_1;
|
|
int32_t L_33 = V_2;
|
|
NullCheck(L_32);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092(L_32, L_33, List_1_get_Item_mF58794633948FE8284FCDACC4456686548388092_RuntimeMethod_var);
|
|
NullCheck(L_29);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_29, L_34);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_35 = ___0_evt;
|
|
NullCheck(L_35);
|
|
RuntimeObject* L_36;
|
|
L_36 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_35);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_37 = ___0_evt;
|
|
NullCheck(L_36);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_36, L_37);
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
int32_t L_38 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_38, 1));
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
int32_t L_39 = V_2;
|
|
V_5 = (bool)((((int32_t)((((int32_t)L_39) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_40 = V_5;
|
|
if (L_40)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = ___0_evt;
|
|
NullCheck(L_41);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_41, 2, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_42 = ___0_evt;
|
|
NullCheck(L_42);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_43;
|
|
L_43 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_42, NULL);
|
|
NullCheck(L_43);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_44 = L_43->___targetElements_2;
|
|
NullCheck(L_44);
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 L_45;
|
|
L_45 = List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF(L_44, List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
V_6 = L_45;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0141:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4((&V_6), Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0136_1;
|
|
}
|
|
|
|
IL_00f7_1:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_46;
|
|
L_46 = Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_inline((&V_6), Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var);
|
|
V_7 = L_46;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_47 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_48 = V_7;
|
|
NullCheck(L_47);
|
|
bool L_49;
|
|
L_49 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_47, L_48, NULL);
|
|
V_8 = L_49;
|
|
bool L_50 = V_8;
|
|
if (!L_50)
|
|
{
|
|
goto IL_0112_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0136_1;
|
|
}
|
|
|
|
IL_0112_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_51 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_52 = V_7;
|
|
NullCheck(L_51);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_51, L_52, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_53 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_54 = ___0_evt;
|
|
NullCheck(L_54);
|
|
RuntimeObject* L_55;
|
|
L_55 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_54, NULL);
|
|
NullCheck(L_53);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_53, L_55);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_56 = ___0_evt;
|
|
NullCheck(L_56);
|
|
RuntimeObject* L_57;
|
|
L_57 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_56);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_58 = ___0_evt;
|
|
NullCheck(L_57);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_57, L_58);
|
|
}
|
|
|
|
IL_0136_1:
|
|
{
|
|
bool L_59;
|
|
L_59 = Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844((&V_6), Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var);
|
|
if (L_59)
|
|
{
|
|
goto IL_00f7_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_60 = ___0_evt;
|
|
NullCheck(L_60);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_60, 5, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_61 = ___0_evt;
|
|
NullCheck(L_61);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_62;
|
|
L_62 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_61, NULL);
|
|
NullCheck(L_62);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_63 = L_62->___targetElements_2;
|
|
NullCheck(L_63);
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 L_64;
|
|
L_64 = List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF(L_63, List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
V_9 = L_64;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01b7:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4((&V_9), Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_01ac_1;
|
|
}
|
|
|
|
IL_016d_1:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_65;
|
|
L_65 = Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_inline((&V_9), Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var);
|
|
V_10 = L_65;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_66 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_67 = V_10;
|
|
NullCheck(L_66);
|
|
bool L_68;
|
|
L_68 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_66, L_67, NULL);
|
|
V_11 = L_68;
|
|
bool L_69 = V_11;
|
|
if (!L_69)
|
|
{
|
|
goto IL_0188_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01ac_1;
|
|
}
|
|
|
|
IL_0188_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_70 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_71 = V_10;
|
|
NullCheck(L_70);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_70, L_71, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_72 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_73 = ___0_evt;
|
|
NullCheck(L_73);
|
|
RuntimeObject* L_74;
|
|
L_74 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_73, NULL);
|
|
NullCheck(L_72);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_72, L_74);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_75 = ___0_evt;
|
|
NullCheck(L_75);
|
|
RuntimeObject* L_76;
|
|
L_76 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_75);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_77 = ___0_evt;
|
|
NullCheck(L_76);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_76, L_77);
|
|
}
|
|
|
|
IL_01ac_1:
|
|
{
|
|
bool L_78;
|
|
L_78 = Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844((&V_9), Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var);
|
|
if (L_78)
|
|
{
|
|
goto IL_016d_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01c6;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01c6:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_79 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_80 = ___0_evt;
|
|
NullCheck(L_80);
|
|
RuntimeObject* L_81;
|
|
L_81 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(L_80, NULL);
|
|
NullCheck(L_79);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_79, L_81, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_82 = ___0_evt;
|
|
NullCheck(L_82);
|
|
bool L_83;
|
|
L_83 = EventBase_get_bubbles_mE2783C986742080BD0744DAF34D367B72F85FFAE(L_82, NULL);
|
|
V_12 = L_83;
|
|
bool L_84 = V_12;
|
|
if (!L_84)
|
|
{
|
|
goto IL_024a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_85 = ___0_evt;
|
|
NullCheck(L_85);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_85, 3, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_86 = ___0_evt;
|
|
NullCheck(L_86);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_87;
|
|
L_87 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_86, NULL);
|
|
NullCheck(L_87);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_88 = L_87->___bubbleUpPath_3;
|
|
NullCheck(L_88);
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 L_89;
|
|
L_89 = List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF(L_88, List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
V_13 = L_89;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_023a:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4((&V_13), Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_022f_1;
|
|
}
|
|
|
|
IL_01fd_1:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_90;
|
|
L_90 = Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_inline((&V_13), Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var);
|
|
V_14 = L_90;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_91 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_92 = V_14;
|
|
NullCheck(L_91);
|
|
bool L_93;
|
|
L_93 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_91, L_92, NULL);
|
|
V_15 = L_93;
|
|
bool L_94 = V_15;
|
|
if (!L_94)
|
|
{
|
|
goto IL_0218_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_022f_1;
|
|
}
|
|
|
|
IL_0218_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_95 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_96 = V_14;
|
|
NullCheck(L_95);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_95, L_96);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_97 = ___0_evt;
|
|
NullCheck(L_97);
|
|
RuntimeObject* L_98;
|
|
L_98 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_97);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_99 = ___0_evt;
|
|
NullCheck(L_98);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_98, L_99);
|
|
}
|
|
|
|
IL_022f_1:
|
|
{
|
|
bool L_100;
|
|
L_100 = Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844((&V_13), Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var);
|
|
if (L_100)
|
|
{
|
|
goto IL_01fd_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0249;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0249:
|
|
{
|
|
}
|
|
|
|
IL_024a:
|
|
{
|
|
}
|
|
|
|
IL_024b:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_101 = ___0_evt;
|
|
NullCheck(L_101);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_101, (bool)0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_102 = ___0_evt;
|
|
NullCheck(L_102);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_102, 0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_103 = ___0_evt;
|
|
NullCheck(L_103);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_103, (RuntimeObject*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatchUtilities::PropagateToIMGUIContainer(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_root, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t V_8 = 0;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t G_B3_0 = 0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B10_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B9_0 = NULL;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___1_evt;
|
|
NullCheck(L_0);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_1;
|
|
L_1 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = ___0_root;
|
|
NullCheck(L_2);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_3;
|
|
L_3 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(L_2, NULL);
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(41 /* UnityEngine.UIElements.ContextType UnityEngine.UIElements.BaseVisualElementPanel::get_contextType() */, L_3);
|
|
G_B3_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_root;
|
|
NullCheck(L_6);
|
|
bool L_7 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6)->___isIMGUIContainer_5;
|
|
V_1 = L_7;
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ___0_root;
|
|
V_2 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_9, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___1_evt;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_11 = V_2;
|
|
NullCheck(L_10);
|
|
bool L_12;
|
|
L_12 = EventBase_Skip_m63795C0012AD0F36A95467C55BC06931F98F7298(L_10, L_11, NULL);
|
|
V_4 = L_12;
|
|
bool L_13 = V_4;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___1_evt;
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_14, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_16 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)IsInstClass((RuntimeObject*)L_15, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var));
|
|
G_B9_0 = L_16;
|
|
if (L_16)
|
|
{
|
|
G_B10_0 = L_16;
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
G_B11_0 = 0;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
NullCheck(G_B10_0);
|
|
bool L_17;
|
|
L_17 = Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline(G_B10_0, NULL);
|
|
G_B11_0 = ((int32_t)(L_17));
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
V_3 = (bool)G_B11_0;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_18 = V_2;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___1_evt;
|
|
bool L_20 = V_3;
|
|
NullCheck(L_18);
|
|
bool L_21;
|
|
L_21 = IMGUIContainer_SendEventToIMGUI_m3D953957F70AB7A0AA0F528D134AEB8177033271(L_18, L_19, (bool)((((int32_t)L_20) == ((int32_t)0))? 1 : 0), (bool)1, NULL);
|
|
V_5 = L_21;
|
|
bool L_22 = V_5;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___1_evt;
|
|
NullCheck(L_23);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_23, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = ___1_evt;
|
|
NullCheck(L_24);
|
|
EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296(L_24, NULL);
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___1_evt;
|
|
NullCheck(L_25);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_26;
|
|
L_26 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_25, NULL);
|
|
NullCheck(L_26);
|
|
int32_t L_27;
|
|
L_27 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_26, NULL);
|
|
V_6 = (bool)((((int32_t)L_27) == ((int32_t)((int32_t)12)))? 1 : 0);
|
|
bool L_28 = V_6;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29 = ___1_evt;
|
|
NullCheck(L_29);
|
|
bool L_30;
|
|
L_30 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_29, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D(L_30, NULL);
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = ___0_root;
|
|
NullCheck(L_31);
|
|
int32_t L_32 = L_31->___imguiContainerDescendantCount_41;
|
|
V_7 = (bool)((((int32_t)L_32) > ((int32_t)0))? 1 : 0);
|
|
bool L_33 = V_7;
|
|
if (!L_33)
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = ___0_root;
|
|
NullCheck(L_34);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_35;
|
|
L_35 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_34, NULL);
|
|
V_9 = L_35;
|
|
int32_t L_36;
|
|
L_36 = Hierarchy_get_childCount_mAD31B42C0FF9B64AAF6A8CF23F22024B3F9542D5((&V_9), NULL);
|
|
V_8 = L_36;
|
|
V_10 = 0;
|
|
goto IL_00f9;
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = ___0_root;
|
|
NullCheck(L_37);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_38;
|
|
L_38 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_37, NULL);
|
|
V_9 = L_38;
|
|
int32_t L_39 = V_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_40;
|
|
L_40 = Hierarchy_get_Item_mBA5811C28D9E7FA48D0F10603A95F8CF248C3467((&V_9), L_39, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_41 = ___1_evt;
|
|
EventDispatchUtilities_PropagateToIMGUIContainer_mE670EED1892A6C6C0607048813E7102E243164D3(L_40, L_41, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_42 = ___1_evt;
|
|
NullCheck(L_42);
|
|
bool L_43;
|
|
L_43 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_42, NULL);
|
|
V_11 = L_43;
|
|
bool L_44 = V_11;
|
|
if (!L_44)
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
int32_t L_45 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_45, 1));
|
|
}
|
|
|
|
IL_00f9:
|
|
{
|
|
int32_t L_46 = V_10;
|
|
int32_t L_47 = V_8;
|
|
V_12 = (bool)((((int32_t)L_46) < ((int32_t)L_47))? 1 : 0);
|
|
bool L_48 = V_12;
|
|
if (L_48)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
}
|
|
|
|
IL_0106:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatchUtilities::ExecuteDefaultAction(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatchUtilities_ExecuteDefaultAction_mFC9D0F0C79521D3F0AE30AC147E4686395BC1F94 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_panel;
|
|
G_B3_0 = ((!(((RuntimeObject*)(RuntimeObject*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
RuntimeObject* L_5 = ___1_panel;
|
|
NullCheck(L_5);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IPanel::get_visualTree() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_5);
|
|
NullCheck(L_4);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_4, L_6, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_7, NULL);
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_8) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_10, (bool)1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_13;
|
|
L_13 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_12, NULL);
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_11, L_13);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
NullCheck(L_14);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_14, 4, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
RuntimeObject* L_16;
|
|
L_16 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_15);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_17 = ___0_evt;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventHandler::HandleEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_16, L_17);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline(L_18, 0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void UnityEngine.UIElements.EventBase::set_currentTarget(UnityEngine.UIElements.IEventHandler) */, L_19, (RuntimeObject*)NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
EventBase_set_dispatch_m6FFDCFE9444A5C96E0511099D29F2CE72D8EAAD5(L_20, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
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
|
|
// System.Int32 UnityEngine.UIElements.StyleComplexSelector::get_specificity()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleComplexSelector_get_specificity_m4D01C31D74954FD8343C7ABA54DBA9B46697A6FC (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_Specificity_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleRule UnityEngine.UIElements.StyleComplexSelector::get_rule()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* StyleComplexSelector_get_rule_mAF9DD60454448AC54378E3ECB3D59D045663C820 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_0 = __this->___U3CruleU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::set_rule(UnityEngine.UIElements.StyleRule)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleComplexSelector_set_rule_mE207BC9F10AF99952A9D149A0982E98B999F98D1 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_0 = ___0_value;
|
|
__this->___U3CruleU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CruleU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSelector[] UnityEngine.UIElements.StyleComplexSelector::get_selectors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* V_0 = NULL;
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_0 = __this->___m_Selectors_2;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::set_selectors(UnityEngine.UIElements.StyleSelector[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleComplexSelector_set_selectors_m1BFD896C3E328E5FFFB650E4B8CEC38FF954D171 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_0 = ___0_value;
|
|
__this->___m_Selectors_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Selectors_2), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::CachePseudoStateMasks()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleComplexSelector_CachePseudoStateMasks_m67F9A45E8E150C5152DA810E446FE94CCD85DDC1 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0770C8A4CE7977C0CF704EEA0FE098E008D76600);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0C7F57443E21815E0C0D281629845C1805E8DDBD);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral734D834219E25F6AC949E3C4A33AA80BB578DC1A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9611837DC9F59CE850732A48008AE16B5242C6BE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB71620C733E44991BE845B6E0C4D9177EE70446D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCC2E1BA4F9F2F93ECDA07A8BE9F28DE602D58F75);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE3462A03B08A009FA9FA7FB7EFF46E75F55260CF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF9D225733E1D10F9344C755C4A9C0870CD1DE97B);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* V_3 = NULL;
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
bool V_8 = false;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
{
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_0 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
V_0 = (bool)((((RuntimeObject*)(Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_00f2;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_2 = (Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834*)il2cpp_codegen_object_new(Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42(L_2, Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42_RuntimeMethod_var);
|
|
((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6), (void*)L_2);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_3 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_4), 1, (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_3);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_3, _stringLiteral734D834219E25F6AC949E3C4A33AA80BB578DC1A, L_4, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_5 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_6), 2, (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_5);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_5, _stringLiteralCC2E1BA4F9F2F93ECDA07A8BE9F28DE602D58F75, L_6, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_7 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_8), 8, (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_7);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_7, _stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1, L_8, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_9 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_10), 8, (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_9);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_9, _stringLiteralB71620C733E44991BE845B6E0C4D9177EE70446D, L_10, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_11 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_12), ((int32_t)32), (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_11);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_11, _stringLiteral0C7F57443E21815E0C0D281629845C1805E8DDBD, L_12, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_13 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_14), ((int32_t)64), (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_13);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_13, _stringLiteral0770C8A4CE7977C0CF704EEA0FE098E008D76600, L_14, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_15 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_16), ((int32_t)128), (bool)0, /*hidden argument*/NULL);
|
|
NullCheck(L_15);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_15, _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C, L_16, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_17 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_18), 1, (bool)1, /*hidden argument*/NULL);
|
|
NullCheck(L_17);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_17, _stringLiteral9611837DC9F59CE850732A48008AE16B5242C6BE, L_18, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_19 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_20;
|
|
memset((&L_20), 0, sizeof(L_20));
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27((&L_20), ((int32_t)32), (bool)1, /*hidden argument*/NULL);
|
|
NullCheck(L_19);
|
|
Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525(L_19, _stringLiteralF9D225733E1D10F9344C755C4A9C0870CD1DE97B, L_20, Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00f2:
|
|
{
|
|
V_1 = 0;
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_21;
|
|
L_21 = StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02(__this, NULL);
|
|
NullCheck(L_21);
|
|
V_2 = ((int32_t)(((RuntimeArray*)L_21)->max_length));
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_22;
|
|
L_22 = StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02(__this, NULL);
|
|
int32_t L_23 = V_1;
|
|
NullCheck(L_22);
|
|
int32_t L_24 = L_23;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
|
|
V_3 = L_25;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_26 = V_3;
|
|
NullCheck(L_26);
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_27;
|
|
L_27 = StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF(L_26, NULL);
|
|
V_4 = L_27;
|
|
V_5 = 0;
|
|
V_6 = 0;
|
|
V_7 = 0;
|
|
goto IL_01b9;
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_28 = V_3;
|
|
NullCheck(L_28);
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_29;
|
|
L_29 = StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF(L_28, NULL);
|
|
int32_t L_30 = V_7;
|
|
NullCheck(L_29);
|
|
int32_t L_31;
|
|
L_31 = StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818(((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30))), NULL);
|
|
V_8 = (bool)((((int32_t)L_31) == ((int32_t)4))? 1 : 0);
|
|
bool L_32 = V_8;
|
|
if (!L_32)
|
|
{
|
|
goto IL_01b2;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834* L_33 = ((StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_StaticFields*)il2cpp_codegen_static_fields_for(StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD_il2cpp_TypeInfo_var))->___s_PseudoStates_6;
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_34 = V_4;
|
|
int32_t L_35 = V_7;
|
|
NullCheck(L_34);
|
|
String_t* L_36;
|
|
L_36 = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8(((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35))), NULL);
|
|
NullCheck(L_33);
|
|
bool L_37;
|
|
L_37 = Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE(L_33, L_36, (&V_9), Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE_RuntimeMethod_var);
|
|
V_10 = L_37;
|
|
bool L_38 = V_10;
|
|
if (!L_38)
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
}
|
|
{
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_39 = V_9;
|
|
bool L_40 = L_39.___negate_1;
|
|
V_11 = (bool)((((int32_t)L_40) == ((int32_t)0))? 1 : 0);
|
|
bool L_41 = V_11;
|
|
if (!L_41)
|
|
{
|
|
goto IL_017e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_42 = V_5;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_43 = V_9;
|
|
int32_t L_44 = L_43.___state_0;
|
|
V_5 = ((int32_t)((int32_t)L_42|(int32_t)L_44));
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_017e:
|
|
{
|
|
int32_t L_45 = V_6;
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8 L_46 = V_9;
|
|
int32_t L_47 = L_46.___state_0;
|
|
V_6 = ((int32_t)((int32_t)L_45|(int32_t)L_47));
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_48 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = L_48;
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_50 = V_4;
|
|
int32_t L_51 = V_7;
|
|
NullCheck(L_50);
|
|
String_t* L_52;
|
|
L_52 = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8(((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51))), NULL);
|
|
NullCheck(L_49);
|
|
ArrayElementTypeCheck (L_49, L_52);
|
|
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_52);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarningFormat_mD8224DEBCB6050F4E2BF55151F0C6A29B87DEFBC(_stringLiteralE3462A03B08A009FA9FA7FB7EFF46E75F55260CF, L_49, NULL);
|
|
}
|
|
|
|
IL_01b1:
|
|
{
|
|
}
|
|
|
|
IL_01b2:
|
|
{
|
|
int32_t L_53 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_53, 1));
|
|
}
|
|
|
|
IL_01b9:
|
|
{
|
|
int32_t L_54 = V_7;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_55 = V_3;
|
|
NullCheck(L_55);
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_56;
|
|
L_56 = StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF(L_55, NULL);
|
|
NullCheck(L_56);
|
|
V_12 = (bool)((((int32_t)L_54) < ((int32_t)((int32_t)(((RuntimeArray*)L_56)->max_length))))? 1 : 0);
|
|
bool L_57 = V_12;
|
|
if (L_57)
|
|
{
|
|
goto IL_0122;
|
|
}
|
|
}
|
|
{
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_58 = V_3;
|
|
int32_t L_59 = V_5;
|
|
NullCheck(L_58);
|
|
L_58->___pseudoStateMask_2 = L_59;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_60 = V_3;
|
|
int32_t L_61 = V_6;
|
|
NullCheck(L_60);
|
|
L_60->___negatedPseudoStateMask_3 = L_61;
|
|
int32_t L_62 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_62, 1));
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
int32_t L_63 = V_1;
|
|
int32_t L_64 = V_2;
|
|
V_13 = (bool)((((int32_t)L_63) < ((int32_t)L_64))? 1 : 0);
|
|
bool L_65 = V_13;
|
|
if (L_65)
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleComplexSelector::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleComplexSelector_ToString_mFFF369A5245D6F443E211BD3036FA09104FF55D5 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisStyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362_TisString_t_m79C46127F42BF97331248F9BBB8216CBAE3B0FE5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToArray_TisString_t_m3B23EE2DD15B2996E7D2ECA6E74696DA892AA194_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToStringU3Eb__20_0_m2C10A6584006D32F230D68FB1DB5E7EDC6BAE421_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* G_B2_0 = NULL;
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* G_B2_1 = NULL;
|
|
String_t* G_B2_2 = NULL;
|
|
String_t* G_B2_3 = NULL;
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* G_B1_0 = NULL;
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* G_B1_1 = NULL;
|
|
String_t* G_B1_2 = NULL;
|
|
String_t* G_B1_3 = NULL;
|
|
{
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_0 = __this->___m_Selectors_2;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var);
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* L_1 = ((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9__20_0_1;
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
G_B1_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
G_B1_3 = _stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
G_B2_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
G_B2_3 = _stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE;
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* L_3 = ((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* L_4 = (Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59*)il2cpp_codegen_object_new(Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
Func_2__ctor_m13E7564459EAE64DC03D66DA40D517179E0FFEA8(L_4, L_3, (intptr_t)((void*)U3CU3Ec_U3CToStringU3Eb__20_0_m2C10A6584006D32F230D68FB1DB5E7EDC6BAE421_RuntimeMethod_var), NULL);
|
|
Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59* L_5 = L_4;
|
|
((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9__20_0_1 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9__20_0_1), (void*)L_5);
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
G_B2_3 = G_B1_3;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = Enumerable_Select_TisStyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362_TisString_t_m79C46127F42BF97331248F9BBB8216CBAE3B0FE5((RuntimeObject*)G_B2_1, G_B2_0, Enumerable_Select_TisStyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362_TisString_t_m79C46127F42BF97331248F9BBB8216CBAE3B0FE5_RuntimeMethod_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7;
|
|
L_7 = Enumerable_ToArray_TisString_t_m3B23EE2DD15B2996E7D2ECA6E74696DA892AA194(L_6, Enumerable_ToArray_TisString_t_m3B23EE2DD15B2996E7D2ECA6E74696DA892AA194_RuntimeMethod_var);
|
|
String_t* L_8;
|
|
L_8 = String_Join_m557B6B554B87C1742FA0B128500073B421ED0BFD(G_B2_2, L_7, NULL);
|
|
String_t* L_9;
|
|
L_9 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(G_B2_3, L_8, NULL);
|
|
V_0 = L_9;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
String_t* L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleComplexSelector__ctor_m0F68D626FD86D6BF1E91C8653BAF4351A0DA104A (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline (UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CnameU3Ek__BackingField_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CnameU3Ek__BackingField_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_0 = __this->___U3ChierarchyU3Ek__BackingField_51;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* BaseVerticalCollectionView_get_viewController_m31FB4608049318BAFF48CA9C922797A0CA59264F_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* L_0 = __this->___m_ViewController_86;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_ItemsSource_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float BaseVerticalCollectionView_get_fixedItemHeight_m7478BCCFEB566DBC1FF0D99BA0357D12FF8BC481_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_FixedItemHeight_82;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ListViewDragger_get_dragAndDropController_mA5270D767C750674CEAEBB7A21E586B549B5488F_inline (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CdragAndDropControllerU3Ek__BackingField_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListViewDragger_set_dragAndDropController_m8E8172E3015EE8DAD69597B8FADC95BE5D271943_inline (ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CdragAndDropControllerU3Ek__BackingField_7 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CdragAndDropControllerU3Ek__BackingField_7), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
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_2;
|
|
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 Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ScrollView_get_verticalScroller_mDCBC1E09B2754C31BF917818CB07E5F36EC0D13A_inline (ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* L_0 = __this->___U3CverticalScrollerU3Ek__BackingField_79;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfocusableU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_0 = __this->___m_MakeItem_73;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = __this->___m_BindItem_74;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BindableElement_get_binding_m6175B80F3A495FAE7155D19DB30D155B583B9302_inline (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CbindingU3Ek__BackingField_65;
|
|
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_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
float L_0 = ___0_f;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(L_0, NULL);
|
|
return (bool)((((int32_t)((int32_t)(L_1&((int32_t)2147483647LL)))) > ((int32_t)((int32_t)2139095040)))? 1 : 0);
|
|
}
|
|
}
|
|
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 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 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_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___0_v;
|
|
float L_3 = L_2.___y_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_4), L_1, L_3, /*hidden argument*/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 Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_op_Subtraction_mE42023FF80067CB44A1D4A27EB7CF2B24CABB828_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_b;
|
|
float L_3 = L_2.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_a;
|
|
float L_5 = L_4.___y_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6 = ___1_b;
|
|
float L_7 = L_6.___y_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8 = ___0_a;
|
|
float L_9 = L_8.___z_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = ___1_b;
|
|
float L_11 = L_10.___z_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_12), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), ((float)il2cpp_codegen_subtract(L_9, L_11)), /*hidden argument*/NULL);
|
|
V_0 = L_12;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_sqrMagnitude_m43C27DEC47C4811FB30AB474FF2131A963B66FC8_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x_2;
|
|
float L_1 = __this->___x_2;
|
|
float L_2 = __this->___y_3;
|
|
float L_3 = __this->___y_3;
|
|
float L_4 = __this->___z_4;
|
|
float L_5 = __this->___z_4;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3)))), ((float)il2cpp_codegen_multiply(L_4, L_5))));
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CidU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CleafTargetU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_newRect_mF2297BA96DD0F80412FF5FA99654FA176E8ACD15_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3CnewRectU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D GeometryChangedEvent_get_oldRect_m9961ACE622E851C4770B205C57664F90F3E0E9A7_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3ColdRectU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___1_b;
|
|
float L_1 = ___0_a;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___0_a;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___1_b;
|
|
float L_6;
|
|
L_6 = fabsf(L_5);
|
|
float L_7;
|
|
L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
|
|
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon_0;
|
|
float L_9;
|
|
L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
|
|
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t GeometryChangedEvent_get_layoutPass_mF1D65C18E68AD76A3CECA65EF27FB466048F3F19_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3ClayoutPassU3Ek__BackingField_20;
|
|
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_0 = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y_1 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_MeasuredSizes_m273263B31820AB79C738CBD08B73FEF4B2AAD3AF_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextCoreHandle_set_MeasuredSizes_m0D35266865CEB419A5A1B0456D995B2D8F8834D0_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CMeasuredSizesU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextCoreHandle_get_RoundedSizes_mB47732F650F6B89C148ADF0699E3BF3A40505499_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CRoundedSizesU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextCoreHandle_set_RoundedSizes_m36D2C29C8D224E9784440773B0CE9A36DDF579F1_inline (TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CRoundedSizesU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* TextAsset_get_material_m4B9C02D34426436FDB01F1963A9FDC11D75604EF_inline (TextAsset_tB28F1843A877CCA74B89DC4F63EA532618B049B8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_Material_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_Value_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_MeasuredSizes_mFE87FB484F80445C4B41776B9D5DB1BA99A98275_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CMeasuredSizesU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextNativeHandle_set_MeasuredSizes_m795ED9C20B5F8383F49521E4B201C5290D6BF5CF_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CMeasuredSizesU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextNativeHandle_get_RoundedSizes_m61AC0D7244896E3C68A3918D5EB4F96F6F1373D8_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CRoundedSizesU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextNativeHandle_set_RoundedSizes_m622EA4AF8D5211BD07D79E9B3E1D824A5A50B720_inline (TextNativeHandle_t395D81DA6D082099C05B04608D954C9616A254E2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CRoundedSizesU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
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_2 = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y_3 = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z_4 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector3_get_magnitude_mF0D6017E90B345F1F52D1CC564C640F1A847AF2D_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x_2;
|
|
float L_1 = __this->___x_2;
|
|
float L_2 = __this->___y_3;
|
|
float L_3 = __this->___y_3;
|
|
float L_4 = __this->___z_4;
|
|
float L_5 = __this->___z_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_6;
|
|
L_6 = sqrt(((double)((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3)))), ((float)il2cpp_codegen_multiply(L_4, L_5))))));
|
|
V_0 = ((float)L_6);
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
float L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
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 PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* RuntimePanel_get_panelSettings_mB9679B0ECC5D26BF090043809C8099F561325C8C_inline (RuntimePanel_t2ED2270758B54860F1289847C0C78A7D31565346* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PanelSettings_t0621207D5DD3BB89DB587440E8F9E07234283DEC* L_0 = __this->___m_PanelSettings_59;
|
|
return L_0;
|
|
}
|
|
}
|
|
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_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, float ___1_d, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x_0;
|
|
float L_2 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___0_a;
|
|
float L_4 = L_3.___y_1;
|
|
float L_5 = ___1_d;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* TextSettings_get_fallbackFontAssets_m332526E834C994425141A58C968FD40320573F98_inline (TextSettings_tB7F55685AFFD4A96F714427BCACFD6958E357D64* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t55B85B981AC5FD6A5358491F90FE354F78BB97DE* L_0 = __this->___m_FallbackFontAssets_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_propagation_m1F5D2A6582B8A4D64F84F0B71F90790FA2BF7E8C_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpropagationU3Ek__BackingField_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PointerLocation_get_Panel_m98ADE82AC6E0AD97D77AEFD68D843055EC8C66ED_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CPanelU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerLocation_get_Position_mF010FE8FB93408B8CDAB3A2B5267524A47B77B10_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CPositionU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerLocation_get_Flags_m35F86278157895BCFF255C505899A2211981CDD7_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CFlagsU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Position_m1CB43FF172D0FBA620DEFA42CCCD3C3EC144F0FA_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CPositionU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Panel_mEA8913E86ADBAF5849A43C543A77CCBC68458403_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CPanelU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPanelU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerLocation_set_Flags_mF339F491768FF5FD71CF1AFF3138BEFE6C81C91C_inline (PointerLocation_t4E582463D283A22822997C2841D5E1A30D16FCF6* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CFlagsU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_propagationPhase_mC66AE0DFD3D62A90A809387B2BF2833F5CED3B8B_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpropagationPhaseU3Ek__BackingField_11 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventCallbackList_set_trickleDownCallbackCount_m87AB073C4E113113FA6FD6B0BA38D58DDFA0CEEA_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtrickleDownCallbackCountU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventCallbackList_set_bubbleUpCallbackCount_m488C47D2EB79DB2E319694D410E824FB1196F38C_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbubbleUpCallbackCountU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_trickleDownCallbackCount_mB15325BC8826D78ACF282A456C32539298124125_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CtrickleDownCallbackCountU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackList_get_bubbleUpCallbackCount_m073F16607621FF243A112CC1B11AE164217F027B_inline (EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CbubbleUpCallbackCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_phase_mB0C93FAA42FD2881BF6FFFD6F1F4CCF355FC6DD6_inline (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CphaseU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventCallbackFunctorBase_get_invokePolicy_m7465E70C33AC6326DCA4F9C3C9A4BC7671930053_inline (EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CinvokePolicyU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TooltipEvent_set_rect_mCD96D19C063247F8DE3B8553843C27611286A5FD_inline (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3CrectU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TooltipEvent_set_tooltip_m989CA98943B7E44DDCC4FFC4940F8701A65C4980_inline (TooltipEvent_t48F59E9AFAADF9D1B8A7A3A5CB8A49DA6D3E7187* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CtooltipU3Ek__BackingField_18 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtooltipU3Ek__BackingField_18), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* EventBase_get_skipElements_mAF08DF55E115F65F6256966A2A5307194DD49DDE_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3* L_0 = __this->___U3CskipElementsU3Ek__BackingField_10;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_triggerEventId_m00372E494A55D3121585C1BB431E45CE5A7BB69E_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = ___0_value;
|
|
__this->___U3CtriggerEventIdU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_propagation_mDA91DA1DF79ADD616C28F6DE7F575E05AA45F5B9_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpropagationU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_leafTarget_mA88E8A073861DE9C4EADF3E9898B3BF66C17E426_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___U3CleafTargetU3Ek__BackingField_8 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CleafTargetU3Ek__BackingField_8), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_lifeCycleStatus_m0A5CDD25F202EF2C67A6D8925CAF2CE410A6F755_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3ClifeCycleStatusU3Ek__BackingField_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_lifeCycleStatus_m435BA627636683E2DC4DAD7ABCBA79B9B6138300_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3ClifeCycleStatusU3Ek__BackingField_7 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CoriginalMousePositionU3Ek__BackingField_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_originalMousePosition_m5374CBDE6D514D283709EE51F513B54A3423A81A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CoriginalMousePositionU3Ek__BackingField_14 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_timestamp_m03956857630FFA7521D46FE9FE41184B267B67A8_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CtimestampU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventBase_set_eventId_m0DE45A9CAAD8F63AEC11C42B62647136232EDEB7_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, uint64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint64_t L_0 = ___0_value;
|
|
__this->___U3CeventIdU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerMoveEvent_set_isHandledByDraggable_m24AE525901E56FE8A7936EDA8F2046862BB3660D_inline (PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisHandledByDraggableU3Ek__BackingField_38 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpropagationPhaseU3Ek__BackingField_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_oldRect_mEA782D77A997652976CE3517396F2D8973A41742_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3ColdRectU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_newRect_m3F885B6343894840429DACBBBA8BDFE6CDB78F52_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3CnewRectU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void GeometryChangedEvent_set_layoutPass_mCB48CB5C27EF9B4CCDF45776DCC8C4B35871E6FC_inline (GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3ClayoutPassU3Ek__BackingField_20 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
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_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_v;
|
|
float L_3 = L_2.___y_1;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_4), L_1, L_3, (0.0f), /*hidden argument*/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 void WheelEvent_set_delta_mF5242D2BF69D54052C8CCE4AA44BE4D591569B92_inline (WheelEvent_tDD5DB3A6F5F6FDB59AD7FF27491502FF18B9775E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_value;
|
|
__this->___U3CdeltaU3Ek__BackingField_28 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
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_5;
|
|
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 void ContextualMenuPopulateEvent_set_menu_m28709F7A74353EFEECFE1C28D708C6F619E84120_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_0 = ___0_value;
|
|
__this->___U3CmenuU3Ek__BackingField_28 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CmenuU3Ek__BackingField_28), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ContextualMenuPopulateEvent_get_triggerEvent_m305F0D2BD526250F749DF3B293ED234D9940C6AB_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = __this->___U3CtriggerEventU3Ek__BackingField_29;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ContextualMenuPopulateEvent_set_triggerEvent_m6AEDC5CEB93E6A8DA01BD7760D7DE05C90884E3A_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_value;
|
|
__this->___U3CtriggerEventU3Ek__BackingField_29 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtriggerEventU3Ek__BackingField_29), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* ContextualMenuPopulateEvent_get_menu_mDD978E1DE874D04B47708329654A7D37F88C37CA_inline (ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2* L_0 = __this->___U3CmenuU3Ek__BackingField_28;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEvent_set_previousData_mB8F0167113616AA99FAB01E99A7CC34D723214DD_inline (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CpreviousDataU3Ek__BackingField_18 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpreviousDataU3Ek__BackingField_18), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEvent_set_newData_m9ECFA476FF3EE5F711B54E572B5631EA656EA76C_inline (InputEvent_t7C4CFCDF49880FB8473340D0BFD298EEA49ECCCF* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CnewDataU3Ek__BackingField_19 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CnewDataU3Ek__BackingField_19), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_sqrMagnitude_mA16336720C14EEF8BA9B55AE33B98C9EE2082BDC_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x_0;
|
|
float L_1 = __this->___x_0;
|
|
float L_2 = __this->___y_1;
|
|
float L_3 = __this->___y_1;
|
|
V_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3))));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_direction_m712EBADD778DE12FB11A2E35FA160BA321A1804B_inline (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdirectionU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationMoveEvent_set_move_mB6C278D3B4A3FE95F573E3E74DC3BCD066567244_inline (NavigationMoveEvent_t70F4AAAE0B5287449430A2A7A2DC78A2AF1364DF* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3CmoveU3Ek__BackingField_19 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NavigationTabEvent_set_direction_m1CAB1803AA164CAA4D53D4FDFBA012F4148CD59F_inline (NavigationTabEvent_t8FEFFA10A773425C471E7B88B3498C64A8247DF7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdirectionU3Ek__BackingField_18 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0 = __this->___U3CelementPanelU3Ek__BackingField_58;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CfocusableU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_gshared_inline (TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdefaultValueU3Ek__BackingField_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_m79AF47A81305A712EECAA1732B7F0D328C0BD9EB_gshared_inline (TypedUxmlAttributeDescription_1_t9D2289098FC52844881F6536BCAA110E7F1D5B9C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdefaultValueU3Ek__BackingField_6 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = (bool)__this->___value_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m728A2437F181FBC56F4D617249B47F513AC9FC43_gshared_inline (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* __this, int32_t ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, int32_t, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
if (!false)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = (int32_t)__this->____size_2;
|
|
V_0 = L_1;
|
|
__this->____size_2 = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
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 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
if (!true)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = (int32_t)__this->____size_2;
|
|
V_0 = L_1;
|
|
__this->____size_2 = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = (int32_t)__this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* 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_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___0_item;
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = (int32_t)__this->____size_2;
|
|
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_2 = ((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;
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PanelChangedEventBase_1_get_destinationPanel_m7F1989B93B498769D6A6EB6A5CB991AB3B4D8FD2_gshared_inline (PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)__this->___U3CdestinationPanelU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PanelChangedEventBase_1_get_originPanel_m3E8443C7EDD04BA92941A896405FB221339A39B5_gshared_inline (PanelChangedEventBase_1_tBD261468FE94C0F11CE3EE232C78393DEB70F0E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)__this->___U3CoriginPanelU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
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_1)((Il2CppObject*)__this->___method_code_6, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_button_m3FC007A6430390DB59817E93D8AB324EC13FE995_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CbuttonU3Ek__BackingField_21;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pressedButtons_mD44593EB9F5A5992961586234A01D44B871A1F64_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CpressedButtonsU3Ek__BackingField_22;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* PointerEventBase_1_get_pointerType_m05EB5D56224F7A7A190AAFBBD622113A7A704F7C_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = (String_t*)__this->___U3CpointerTypeU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CpointerIdU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventBase_1_get_isPrimary_m0F266CD0EEF96089B726E1E69A8A07029685E95B_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = (bool)__this->___U3CisPrimaryU3Ek__BackingField_20;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusEventBase_1_get_relatedTarget_m4D8C2900A27846F2A108FB515602553CB75C180F_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)__this->___U3CrelatedTargetU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_1_Invoke_m9ED2CAC2A2096B0FA42F20B76DCE0CFD80228DE6_gshared_inline (Func_1_tA8F91C23675D323D5C9C1F3D2FAA8008CB1EF551* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
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 = (int32_t)__this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____size_1;
|
|
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 = (RuntimeObject*)__this->____current_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF Enumerator_get_Current_m4D5DE6032D2FE13FEB8F9A24DD665F4E7EAA3931_gshared_inline (Enumerator_t72FA0BD85114201DF7DC6AB5CD84F383CA13B94D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF L_0 = (StylePropertyName_tCBE2B561C690538C8514BF56426AC486DC35B6FF)__this->____current_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PointerEventBase_1_set_clickCount_m951FFA44DA701FFDDB0784EC6EC325293D671DD0_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CclickCountU3Ek__BackingField_27 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* FocusEventBase_1_get_focusController_mBF86C2859478BA0F9C7B3FE06F0F124733C0A298_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_0 = (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)__this->___U3CfocusControllerU3Ek__BackingField_20;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseEventBase_1_get_pressedButtons_mE1BB0319BD4FC0790C886E984B48E75000C464AC_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CpressedButtonsU3Ek__BackingField_24;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyboardEventBase_1_get_modifiers_m3854A98D9AB58D771AA688360DB63B5D22DEA9DE_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CmodifiersU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar KeyboardEventBase_1_get_character_mA9CEB62FCAB60DB09B83D5502FE84DE4B70D3727_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = (Il2CppChar)__this->___U3CcharacterU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyboardEventBase_1_get_keyCode_m416D85227006AA4A4F4A20396D2291068AA4916F_gshared_inline (KeyboardEventBase_1_tB4DAE7BE749F5CB0E5230FC31380D5BD30259B0C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->___U3CkeyCodeU3Ek__BackingField_20;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((int32_t*)((uintptr_t)(&___0_value)));
|
|
return L_0;
|
|
}
|
|
}
|