37261 lines
1.9 MiB
37261 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 T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
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);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
struct Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9;
|
|
// 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<UnityEngine.UIElements.Panel>
|
|
struct Action_1_tEFD4B3570567C07AE1CC4A2D290987F4347F2F01;
|
|
// System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09;
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3;
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99;
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
struct Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem>
|
|
struct Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct Action_2_tCFAD9DC5CF83678682A1102DCD1B12DE9FCA395A;
|
|
// System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8;
|
|
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
|
|
struct AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD;
|
|
// UnityEngine.UIElements.UIR.BasicNode`1<UnityEngine.UIElements.UIR.TextureEntry>
|
|
struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB;
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.Boolean>
|
|
struct ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B;
|
|
// UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3;
|
|
// 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.UIElements.TreeItem>
|
|
struct Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleSheets.Syntax.Expression>
|
|
struct Dictionary_2_t41A97B6849DA9B80390BF3C8A232EC503E0314E6;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
struct Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F;
|
|
// 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<System.Type,UnityEngine.UIElements.VisualElement/TypeData>
|
|
struct Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8;
|
|
// System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E;
|
|
// 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<System.Object>
|
|
struct EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
struct EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>>
|
|
struct EventCallback_1_t424C96066075D21342F190671F3D0ED8AB5900D6;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA;
|
|
// UnityEngine.UIElements.EventCallback`1<System.Object>
|
|
struct EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913;
|
|
// UnityEngine.UIElements.EventCallback`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6;
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
struct Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2;
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431;
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
struct Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354;
|
|
// System.Func`2<System.Single,System.Single>
|
|
struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2;
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
struct Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59;
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String>
|
|
struct Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359;
|
|
// System.Func`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct Func_2_t87FB5A45506EB8DF671CF8BEB31A0FD5A00FA227;
|
|
// System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0;
|
|
// System.Func`4<UnityEngine.UIElements.Experimental.StyleValues,UnityEngine.UIElements.Experimental.StyleValues,System.Single,UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct Func_4_t93A2D1B3300415C1167923C629725F6A8758E6B5;
|
|
// System.Collections.Generic.HashSet`1<System.Int32>
|
|
struct HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2;
|
|
// System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.EasingFunction>
|
|
struct IEnumerable_1_tFF6333EF4E62C3D678BBD8D277CFC0CE36E49CF6;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct IEnumerable_1_t4A530B6122A42A4EB890555FF299CCA20FD44A8F;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>
|
|
struct IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369;
|
|
// 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<System.String>
|
|
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StylePropertyName>
|
|
struct IEnumerable_1_t0BB33773BAD1888C9043D60F8CAC4EC0F6BAAFD8;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelector>
|
|
struct IEnumerable_1_t57169610600DACD33A68F924240E9E9B6E637F74;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleSelectorPart>
|
|
struct IEnumerable_1_tE925592D6CE31E7FA5349FCEE9007F3DF53409FD;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.StyleVariable>
|
|
struct IEnumerable_1_t51D5C91DA217ADA1B24D5142C3CA3833384F5CA3;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.TimeValue>
|
|
struct IEnumerable_1_t7BCB520B93E2321C3968BB4F6C74B9AF0518A176;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.TreeViewItemWrapper>
|
|
struct IEnumerable_1_t16B1D443BFD62A743A2892A816F54B04E5AD7BCC;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.VisualElement>
|
|
struct IEnumerable_1_tCEF1F6C69EA77DC2CEFABB0AC09506F177DC9164;
|
|
// System.Collections.Generic.IEnumerable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>
|
|
struct IEnumerable_1_t39CE18DC20924FF80062EA2FE9CF6258B0DC6E4E;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>
|
|
struct IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
|
|
struct IEqualityComparer_1_tDBFC8496F14612776AF930DBF84AFE7D06D1F0E9;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.String>
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
// System.Collections.Generic.IEqualityComparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct IEqualityComparer_1_t47CC0B235E693652D181B679FF6D61A469ECC122;
|
|
// System.Collections.Generic.IList`1<UnityEngine.UIElements.ITreeViewItem>
|
|
struct IList_1_t53C614936769F7B26ECA418B9BCAC2AD97900D90;
|
|
// System.Collections.Generic.IList`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>
|
|
struct IList_1_t4A9A4A4522238CC06724A58FE97BCC6029EA9F08;
|
|
// UnityEngine.UIElements.INotifyValueChanged`1<System.Boolean>
|
|
struct INotifyValueChanged_1_t688BCC3C6D1DB1A3415DB438063ADD73883ABF14;
|
|
// UnityEngine.UIElements.INotifyValueChanged`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct INotifyValueChanged_1_t905ACE09F3F199E97F63DC27F2EE138ACA0E1DF8;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,UnityEngine.UIElements.TreeItem>
|
|
struct KeyCollection_t4C3104A7A88CC245D53DE5A532A1B112638121B8;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
struct KeyCollection_t9D0AA6C6242A0E182B1BE5CF8346949901EB2330;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct KeyCollection_tF7FF5198CA7D5A910663B1577CD0FFDA83EA7A71;
|
|
// 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.UIElements.DropdownMenuItem>
|
|
struct List_1_t98556D08ADC95F025E529036B8FB0403DC53D789;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>
|
|
struct List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EventCallbackFunctorBase>
|
|
struct List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.Syntax.Expression>
|
|
struct List_1_tCBE9E2C63706FE0CD9A6D23B9402AD482BFFDC48;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem>
|
|
struct List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5;
|
|
// 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<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
// 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<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.StyleSheets.StylePropertyValue>
|
|
struct List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>
|
|
struct List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>
|
|
struct List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>
|
|
struct List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95;
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>
|
|
struct List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>
|
|
struct List_1_t0BE12F16A937298114B20824E93D706BCA5214D5;
|
|
// 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.ObjectPool`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
struct ObjectPool_1_t8BEC5A7E2986A02A5A01CD523423A728794BD0E1;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>>
|
|
struct ObjectPool_1_t7225A2BF0516EA3EA0D9F1730D7A0FDCA63F8031;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>>
|
|
struct ObjectPool_1_t048E004E7532AED8FD10569876C6065B7527D2AE;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct ObjectPool_1_t7FDDBA964772905A89719355C6E4F07922AA0C78;
|
|
// 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.GeometryChangedEvent>
|
|
struct ObjectPool_1_tC6626AC387E62EDBD0EA56924280D44E6476EC67;
|
|
// 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<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.ValidateCommandEvent>
|
|
struct ObjectPool_1_tC020A5F878E420221282228F0D54930B0296FE7C;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.WheelEvent>
|
|
struct ObjectPool_1_t625CC081156CCA83AF28F9AC872DA35BC4C19D8B;
|
|
// UnityEngine.UIElements.ObjectPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9;
|
|
// 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;
|
|
// 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<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
struct Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
struct Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.Syntax.Expression>
|
|
struct Stack_1_tD6DF477EB7585D1F4442F510885CD1D22250BA56;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.Syntax.ExpressionCombinator>
|
|
struct Stack_1_t0D47F5E9B4943D4CBCB9CFA4B59EB251D28E5747;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.PropagationPaths>
|
|
struct Stack_1_t853F0A5AE8C58989DE55C33158952AB6D8D18DE7;
|
|
// System.Collections.Generic.Stack`1<System.String>
|
|
struct Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094;
|
|
// System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.BaseStyleMatcher/MatchContext>
|
|
struct Stack_1_tB568ED1852EE70A3EECA2CD66F2AB41DDEC262FA;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>
|
|
struct Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
struct TypedUxmlAttributeDescription_1_t25B132C34C584D3489CCD7BFC0A63B087E892795;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>
|
|
struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
struct TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
struct TypedUxmlAttributeDescription_1_tB4C3196F5E6941A87CE165C3C9E3611D98CD3354;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
struct UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.PickingMode>
|
|
struct UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
struct UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.UsageHints>
|
|
struct UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
struct UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.InternalTreeView,UnityEngine.UIElements.InternalTreeView/UxmlTraits>
|
|
struct UxmlFactory_2_t30BFB002F45F67A8D7068C7AAAFCA5CBAF712EA0;
|
|
// UnityEngine.UIElements.UxmlFactory`2<System.Object,System.Object>
|
|
struct UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2;
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,UnityEngine.UIElements.TreeItem>
|
|
struct ValueCollection_tAFC71A786C2AFB2819F23435C7A6B0E83925D468;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
struct ValueCollection_t922832094E5F2A84659A466E8A5D720D004654C5;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>
|
|
struct ValueCollection_t023DC1C66123EE3E4EE4B59B1D1154B572FFC20D;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,UnityEngine.UIElements.TreeItem>[]
|
|
struct EntryU5BU5D_tAB3F6A4535D4446C00D5BB409CF38ADF253E977D;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,UnityEngine.UIElements.StyleComplexSelector>[]
|
|
struct EntryU5BU5D_t036BFAA1D42DC0A7C6666D9CEECE10EAA5D07FF8;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,UnityEngine.UIElements.StyleComplexSelector/PseudoStateData>[]
|
|
struct EntryU5BU5D_t05C1C77038E962562627C6A37AC846338771129E;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>[]
|
|
struct IEnumerator_1U5BU5D_t848E987CA70E0A4E6DFC0EA6A8A22CC8EBD3CEDA;
|
|
// System.Collections.Generic.HashSet`1/Slot<System.Int32>[]
|
|
struct SlotU5BU5D_tC4D7CD3E804DC835CCF2F990797BC1D9AE4330D7;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
// UnityEngine.Color[]
|
|
struct ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389;
|
|
// UnityEngine.UIElements.ComputedTransitionProperty[]
|
|
struct ComputedTransitionPropertyU5BU5D_t25B9E78F5276CDA297C8215C316452CAB8219E82;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
// UnityEngine.UIElements.StyleSheets.Dimension[]
|
|
struct DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B;
|
|
// UnityEngine.UIElements.EasingFunction[]
|
|
struct EasingFunctionU5BU5D_t3EEBBFFAD92EA74C3960D5F78D2A98BCEEA62E49;
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase[]
|
|
struct EventCallbackFunctorBaseU5BU5D_tDD22888A8C0E1D7F5FF2E417BE833FE4122228C7;
|
|
// UnityEngine.UIElements.EventCallbackList[]
|
|
struct EventCallbackListU5BU5D_t3970F59A704458C0AFD5D9084426FCE6769C8769;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression[]
|
|
struct ExpressionU5BU5D_tD46A409FDDFCA9729C58372D8A196785A7816170;
|
|
// UnityEngine.UIElements.IEventHandler[]
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D;
|
|
// UnityEngine.UIElements.ITreeViewItem[]
|
|
struct ITreeViewItemU5BU5D_t5DABAF3A22375E19C4108E522B4820D3BE068EBA;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// UnityEngine.Object[]
|
|
struct ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A;
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage[]
|
|
struct ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52;
|
|
// System.Single[]
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// UnityEngine.UIElements.StyleComplexSelector[]
|
|
struct StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857;
|
|
// UnityEngine.UIElements.StyleProperty[]
|
|
struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783;
|
|
// UnityEngine.UIElements.StylePropertyName[]
|
|
struct StylePropertyNameU5BU5D_t531626CF806E3F3D348D1F38A9109767014C35F8;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValue[]
|
|
struct StylePropertyValueU5BU5D_t4DE6509822A9A487529DC8DC8C08CB8822CE8688;
|
|
// UnityEngine.UIElements.StyleRule[]
|
|
struct StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3;
|
|
// UnityEngine.UIElements.StyleSelector[]
|
|
struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D;
|
|
// UnityEngine.UIElements.StyleSelectorPart[]
|
|
struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
|
|
// UnityEngine.UIElements.StyleSheet[]
|
|
struct StyleSheetU5BU5D_tFFAA0F92657246FFBFE954290B305CCCBA9DD1A7;
|
|
// UnityEngine.UIElements.StyleValueHandle[]
|
|
struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE;
|
|
// UnityEngine.UIElements.StyleVariable[]
|
|
struct StyleVariableU5BU5D_tFE786BD2C1F914C1605C072F0BB10C405C0B4D96;
|
|
// UnityEngine.UIElements.TimeValue[]
|
|
struct TimeValueU5BU5D_t3EB79C5975D39A0E711250FD8A9547F5312746DE;
|
|
// UnityEngine.UIElements.TreeViewItemWrapper[]
|
|
struct TreeViewItemWrapperU5BU5D_t64703F6E179A23C62A7DBA2486D76B1F7091C5AF;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
// UnityEngine.UIElements.VisualElement[]
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF;
|
|
// Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType[]
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
// UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper[]
|
|
struct TreeViewItemWrapperU5BU5D_tA8CE70B133105201BE01C82F78D06FACBBDBF55A;
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct[]
|
|
struct ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9;
|
|
// UnityEngine.UIElements.StyleVariableResolver/ResolveContext[]
|
|
struct ResolveContextU5BU5D_tA44F71F5EFF2CE305C748D326687E840F314B3FB;
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo[]
|
|
struct BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA;
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
// UnityEngine.UIElements.AtlasBase
|
|
struct AtlasBase_t196C45243F41C19DC6258965057BBAA150D278BC;
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28;
|
|
// UnityEngine.UIElements.Background
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8;
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
struct BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303;
|
|
// System.Reflection.Binder
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
// UnityEngine.UIElements.Button
|
|
struct Button_t8EC3B431665F84C0B637C11B0EA29236828646C2;
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4;
|
|
// UnityEngine.UIElements.ClickEvent
|
|
struct ClickEvent_t30651949F0BA68E61187B63F5D325323E92CC318;
|
|
// UnityEngine.UIElements.Clickable
|
|
struct Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834;
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
struct CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
struct CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801;
|
|
// UnityEngine.UIElements.ContextClickEvent
|
|
struct ContextClickEvent_t06F36D1ACA5C8390D5085158C7D7C1BCF9549EA3;
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B;
|
|
// UnityEngine.UIElements.ContextualMenuPopulateEvent
|
|
struct ContextualMenuPopulateEvent_t72C856D9B3951E3AA5901442A98BF6DE7F4258FB;
|
|
// System.CultureAwareComparer
|
|
struct CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
// UnityEngine.UIElements.Cursor
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82;
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
struct CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496;
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
struct DropdownMenu_tCC0483D2EB24641C3ADAE4BC122C92ABCFB186D2;
|
|
// UnityEngine.UIElements.DropdownMenuEventInfo
|
|
struct DropdownMenuEventInfo_t6118D88BC1584748707C62A0F91938760E4665CF;
|
|
// 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;
|
|
// System.Threading.ExecutionContext
|
|
struct ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression
|
|
struct Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6;
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF;
|
|
// UnityEngine.UIElements.FocusController
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A;
|
|
// UnityEngine.UIElements.Focusable
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0;
|
|
// UnityEngine.UIElements.Foldout
|
|
struct Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3;
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6;
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958;
|
|
// UnityEngine.UIElements.FontDefinition
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C;
|
|
// 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.ICursorManager
|
|
struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B;
|
|
// UnityEngine.UIElements.ICustomStyle
|
|
struct ICustomStyle_t4385916BE4168875B5CC8B442752D4A1A6A69026;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.IDisposable
|
|
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
|
|
// 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.IPanel
|
|
struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5;
|
|
// UnityEngine.UIElements.IPointerEvent
|
|
struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7;
|
|
// System.Security.Principal.IPrincipal
|
|
struct IPrincipal_tE7AF5096287F6C3472585E124CB38FF2A51EAB5F;
|
|
// UnityEngine.UIElements.IStyle
|
|
struct IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7;
|
|
// UnityEngine.UIElements.IStylePropertyAnimationSystem
|
|
struct IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2;
|
|
// UnityEngine.UIElements.ITextHandle
|
|
struct ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4;
|
|
// UnityEngine.UIElements.ITreeViewItem
|
|
struct ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC;
|
|
// UnityEngine.UIElements.IUxmlAttributes
|
|
struct IUxmlAttributes_t9B6679F04874117C59014DE49C35B1841F9A1DDE;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem
|
|
struct IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F;
|
|
// UnityEngine.UIElements.InlineStyleAccess
|
|
struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165;
|
|
// System.Threading.InternalThread
|
|
struct InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687;
|
|
// UnityEngine.UIElements.InternalTreeView
|
|
struct InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D;
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C;
|
|
// UnityEngine.UIElements.KeyUpEvent
|
|
struct KeyUpEvent_tA037C42AEA6A8E0919BA60BD796B3AD1DA506394;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3;
|
|
// UnityEngine.UIElements.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70;
|
|
// UnityEngine.UIElements.ListView
|
|
struct ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD;
|
|
// UnityEngine.UIElements.ListViewController
|
|
struct ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E;
|
|
// UnityEngine.UIElements.ListViewDragger
|
|
struct ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD;
|
|
// UnityEngine.UIElements.LoadResourceFunction
|
|
struct LoadResourceFunction_tA999A2DDCB9CDCF68E4274A58336A39ABB7AF850;
|
|
// System.LocalDataStoreHolder
|
|
struct LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F;
|
|
// System.LocalDataStoreMgr
|
|
struct LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E;
|
|
// UnityEngine.Material
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
// UnityEngine.MaterialPropertyBlock
|
|
struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
// UnityEngine.UIElements.UIR.MeshHandle
|
|
struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// 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;
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t;
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
struct NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE;
|
|
// System.NotImplementedException
|
|
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
// UnityEngine.ObjectGUIState
|
|
struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15;
|
|
// System.OrdinalCaseSensitiveComparer
|
|
struct OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A;
|
|
// System.OrdinalIgnoreCaseComparer
|
|
struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0;
|
|
// 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.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;
|
|
// 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.ReusableCollectionItem
|
|
struct ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086;
|
|
// UnityEngine.UIElements.ReusableListViewItem
|
|
struct ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5;
|
|
// UnityEngine.UIElements.Rotate
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// UnityEngine.UIElements.SavePersistentViewData
|
|
struct SavePersistentViewData_tFE77B8450170D95B16B3017D62F81F2139D4F716;
|
|
// UnityEngine.UIElements.Scale
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7;
|
|
// UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A;
|
|
// UnityEngine.UIElements.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9;
|
|
// UnityEngine.UIElements.Scroller
|
|
struct Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
// UnityEngine.UIElements.SerializedVirtualizationData
|
|
struct SerializedVirtualizationData_t8EA4D4340BC124E7FC98396C263F0FEC091B53CB;
|
|
// UnityEngine.Shader
|
|
struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692;
|
|
// UnityEngine.Sprite
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99;
|
|
// System.String
|
|
struct String_t;
|
|
// System.StringComparer
|
|
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06;
|
|
// UnityEngine.UIElements.StyleComplexSelector
|
|
struct StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD;
|
|
// UnityEngine.UIElements.StyleProperty
|
|
struct StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher
|
|
struct StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248;
|
|
// UnityEngine.UIElements.StyleRule
|
|
struct StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E;
|
|
// UnityEngine.UIElements.StyleSelector
|
|
struct StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362;
|
|
// UnityEngine.UIElements.StyleSheet
|
|
struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser
|
|
struct StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263;
|
|
// UnityEngine.UIElements.StyleValueCollection
|
|
struct StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377;
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527;
|
|
// UnityEngine.UIElements.StyleVariableResolver
|
|
struct StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185;
|
|
// UnityEngine.UIElements.TextField
|
|
struct TextField_tDB34369F9468D7F02670087D9444EC23115827D9;
|
|
// UnityEngine.Texture
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700;
|
|
// UnityEngine.Texture2D
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
// UnityEngine.UIElements.UIR.TextureBlitter
|
|
struct TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7;
|
|
// UnityEngine.UIElements.ThemeStyleSheet
|
|
struct ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553;
|
|
// System.Threading.Thread
|
|
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F;
|
|
// UnityEngine.UIElements.TimeMsFunction
|
|
struct TimeMsFunction_t1893856976EB95CF5608ACC3642AD8B79994CA2B;
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862;
|
|
// UnityEngine.UIElements.Toggle
|
|
struct Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C;
|
|
// UnityEngine.UIElements.Translate
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E;
|
|
// UnityEngine.UIElements.Experimental.TreeView
|
|
struct TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2;
|
|
// UnityEngine.UIElements.TreeViewController
|
|
struct TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A;
|
|
// System.Type
|
|
struct Type_t;
|
|
// 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.VectorImage
|
|
struct VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC;
|
|
// 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.InternalTreeView/<GetAllItems>d__64
|
|
struct U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5;
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlFactory
|
|
struct UxmlFactory_t8C0CFA338F9D59EB753E147466CE3C307797B50B;
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlTraits
|
|
struct UxmlTraits_t6A5EA2E9F2DB65C27764862855EB4B3F02FD9C34;
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c
|
|
struct U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850;
|
|
// UnityEngine.UIElements.StyleSelector/<>c
|
|
struct U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E;
|
|
// 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_t6043513E89820190529C82ABBDD8FD0BB2A9AC09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88_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* BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t29D782BF5D0A26D11A04865B4306B86575506834_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_t4813BB5FE5327C33AA6E02463510E8D2AA3721BA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t49C5D050F7E36AA2230E042A0ACB06DE32E81034_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_tE1B3E6721ACE88C9A37AC57EDA370CC77ED38B6E_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_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tAE76549282407BAEF1D73046665FE2FA3E0FFC16_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_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_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD_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* IList_1_t4A9A4A4522238CC06724A58FE97BCC6029EA9F08_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMouseEventInternal_t9CCC5FB939D4B7586931387A44F1B1BA76D02F43_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* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEventInternal_tF0950F230320BC22B077741EA08AC538EE878833_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t0BE12F16A937298114B20824E93D706BCA5214D5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t3D72E539CB95E6031583970D3E5187DDB5EC674C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseLeaveWindowEvent_t29DA8DE08DB54EC65B5D52A2C149C761D7D113C7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_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* Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_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* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t52852EDE00B2551DBCE3A3A6D570785860FD252F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_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* StylePropertyCache_t026956492B146632E15AD91F6AC0793E64D8CF00_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleValueFunction_t6A7C77404C9BD98781B216CB2459C11962259F12_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleValueKeyword_tD99A58D549C3614460643F9ED4C5D7B373E1B9E5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0770C8A4CE7977C0CF704EEA0FE098E008D76600;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0A452795E040C66D151B05EE8648BF3F8016F207;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0AEA2C46AAEB233C6D2DF0275EF92FB2E56BAFE9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0C7F57443E21815E0C0D281629845C1805E8DDBD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0E65690939804B15F12B14D2152EA638DCB3BF40;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1FB906945123593B19B612B455B918878DCC1588;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral21901F110A9EF6EE4BF90EC534066C1066EB8DDC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral30F4592FAA87F5A071ECFA5A1419274E1E2B465F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral34ACA25DBF2A2F2A6404B2727F20D4415EF95FD6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral36FD478DDC94C05200062D752D6D9D1031578883;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3D0EB3CBA89AE2908A58BA8E0FAF3D64EE450369;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4C828D22EA1BC44F928A150AD9B5EBE43CC0B847;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral514F7AE67AA46F6564845DA7FFDF058F997B4817;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral537FFA4677C3012810F3AAAC6D89BB2919ADD36F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral55E606CEDF36876109C1C2004C2DCF1B25DE95A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral55F1C75AA70A7E5742E7E2237B02C64D5D311233;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral581430FB5E2AB80389A430804CEF0F2382806766;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral606CFCEF059936E75E875E2B8EF9F56D7C369C29;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral68D8319E1BA348F308A9B257F3AB19FBB0ADE8C0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6A6344B3113734F6F0041E886A4E2FDFD6FC9FBC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6B6FF442851FEAB9E21EF5124A38B0DC49AD47FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6F3A8CC0D1341CC2058A61F50C7E55491AC61AF4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral734D834219E25F6AC949E3C4A33AA80BB578DC1A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral75C34C3EEB198D3EF05D02CDDC06335417B86081;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7A38E1BCE1E9AFE87F2A65EDDA3B0BDE6D8838DF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9120CE52729063099E1090CC0F02B702F2D1EFA7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9611837DC9F59CE850732A48008AE16B5242C6BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral96E1A4EC563403BF571F34B1058DFBDA1A660176;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9A333134A0DD04C4501260DDF33B2CBE68C45322;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9EC74C84E81C86699198C668FD02886EC7ED89EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA44385FDC0E1CFDC42C0F0E68C2FBEE25FDB4FFC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA8104AF9ED983BC3636015A3F5EE0BC29ADE71F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB1B3E69DA55CFB97DB529ABA6F16920A49FA4B51;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB6EC324CECDA4F5EFE8BDB0781C279DFADEC6B75;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB71620C733E44991BE845B6E0C4D9177EE70446D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCC2E1BA4F9F2F93ECDA07A8BE9F28DE602D58F75;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCEE4BEC9969079A1DA2F65E0F044E4FF1AF5EEAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD8899F53C545899EB5B4B4EE963A8A9B987E7DE5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9F6B690E16E25915983F3E6C7BE53DDCC99D060;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE2DC374FD848D9CCD14547A479C8B7F3C1C05DA4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE3462A03B08A009FA9FA7FB7EFF46E75F55260CF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE4351F4420DAC70B43EE9931A2C0D31288835FC4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE8EE39FC7B687281047DBD20AA11E9FDC82A3B8E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEA9090AFE82E5E36A3F986207EB9613D71234988;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF02EA19AA3262DA0B2230BAF7AE43B794BFFC3FC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF152B296BCB34070EE69020F0A59C611E4BBA10F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF3FEA1B7EED06B84D345A14D3BB9E817F4B9EAFE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF5B39063A519F09357D03E2CC5A61560903D499C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF9D225733E1D10F9344C755C4A9C0870CD1DE97B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFDA6291E0E4690DCC3108860A93498AAA843209C;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Assert_AreNotEqual_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mC857334D41CB0182D0EBF516EDB7C88F2917AAEA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Assert_IsNotNull_TisBaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_m82FCBFE93613E21A21DDE783C6A8DCFE7B0DB7B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ChangeEvent_1_get_newValue_m0D62ED9449CF3368792D1D5BBC7839722E995776_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionViewController_BindItem_mB6AF270AB4CF22A7A782270A27DEE72E3ADE81CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionViewController_MakeItem_m2FE0B4239826C82CF5C8BFA22FA9D1BD79507093_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* Dictionary_2_Add_m80E83C8F4CAA1AE4265DA6B826FFD60A5E0A26E5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m5053DE4A6501FDA7668CDA192619ADA3CCFCE5FD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m66B2DAB3FD9D00B7968907AE37116ACE44A0508F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mEE379F3884C35EBD73E4D9074EF9F537721C40EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6B4A8DB6187A02774375A4DD2D7F0EDEC7AD5E42_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m1B1147E192920AA737BB7BA42906DAFF28053E68_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m2AB6C74C5C86BFFFDB7F80E387E9613DAAB38525_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Contains_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m62FB3DBA3F73FEBF64FEAD95645C625ADFB2B178_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Select_TisStyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_TisString_t_mEDFF65C0AFD98860FCC02DAD70AB5CAEADC0FAC7_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* Enumerable_ToList_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m3E9A8F467117CBA5D91E50BC524DEA85E532EAAC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m8838B6011414E5599ED47F5F5B1942A983EEBDAC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB934AD2F9937B5874A11C644C941A77277693D36_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE4B1DA9E18413CDCF7F24EF487770F803566B16A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEF06EAF6BE78DD9CB877599E4DC205DD1587A71A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB01CAB67AAFD4D1DBD35911A2AA6C3442801D332_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_Init_m1F5590060695388CE63D493F277EB7FB86E3D0E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m2495A371F7B354A94F5EACBE7B8D97A2B3BDB38B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m7AE234E99435C4E00BF686FA957F859C1E6FFDB1_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_mECB64534E7784E4F149108516B906000134DA10E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m0DAB54A390BB87E02F7708C90F9C4DBB74F6F9DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1__ctor_m4A1FF501C503BCBA06AC50C98926B7121D64F952_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_m88C3BA6617F6667126635140414D44D76C42AE92_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m98A9F88FF94538B5EECB0F87E1E3B3572E02ACA1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m3F29A5426149F521CEE6900B9A4097810124ED8E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* INotifyValueChangedExtensions_RegisterValueChangedCallback_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m21346157EFCB13A3F77EDC25116E4898A4C1FB90_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_BindTreeItem_m857379544B0260386A81D9F9BA47A96E671082A1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_GetItemId_m677EB88DED8F23B1D63F31AFB85E95D37609FCB6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_MakeTreeItem_m9D3B207009C95919BC8EBCB15B4405AF6137072B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnCustomStyleResolved_mE1716300CCAF189071740EA28C7719FB3A57A9C5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnItemMouseUp_m80FBB2D24871F66087E2A1180A312A925E2AFEC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnItemsChosen_mE6FE7556190C365FEBD9A778006A20916C28D943_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnKeyDown_m8F8BA42BE0060AD32E949F02073ABFD3621F0189_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnSelectionChange_m45D7C7D2717B082839A2AE8CCC15219B6C8AE9BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_OnTreeViewMouseUp_mD677316216EE636C9FFFC1E22988B70B6E3C88B8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_ToggleExpandedState_m47FB929714A43D85B2F7E6E45B5C7EE3AA188D37_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InternalTreeView_UnbindTreeItem_mB379B33187EF4C6EA7F38250F3ECB26AAD87DDA3_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* ListViewController_AddToArray_m3631BF842C1449B40BCED0E3A23343D44F208899_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ListViewController_RemoveFromArray_mD1DD74E39EC554A772DA23FAAB80DAA69FA60EE9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m1A10E697703D67F6551D47C603FFE78E16CE4204_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m3FAF7B4CABAC116EF9E3084CD51B79BC9BF921EA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB_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_AddRange_mC10AB6995B62FFCB7480E88ADA61465B0644FC36_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mFC68F05E4252312CF997EF77D05B91BEEB8CC00A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3BDBC6797E58BA17ADF8679ED9156D5CD6D2FCDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4E186A9A5675BFA7E92BF5C08FDD6BC6F034A11B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m5A36B75E5CA8E1C05E38BEBED22E42C9085DF149_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_mB41E8724CA0DDBEBD2EA8379D51E13F23F49176E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC287B445E45444960741C56A73B1C60B39B20449_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_BinarySearch_mE81A25C14E61997621A470D09BB4BAE1F8CF98F2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m00AFA4A0337BBF3DC699C14107B3594CA904E971_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m02854A6986DEFDEC2E4B791FD155C5D7FCBB8842_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m3E84B69EE9B9769288CFB4645CFF7F401F82C989_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m51A5D7D883AF79511066B64E4CBC23C3DB6CCF54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m65AF27AF349D5AD5EB39FAA6836FA296600DA6FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m9F679D4FCF712F1BF2A9E1E311DA554FCDE9348C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mACEF452653CD84830D1C884CC5AB8AC460301A92_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mC94BDA7971ECE1D983E3904F1A38903AF450EC6F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_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_GetEnumerator_m027A4516F38616D10A6379EB3544BB8348BDA5AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE8313336244D14561C5ADA76ECF119365C5F10FB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_InsertRange_m536E608D8CA599643DA6502B482B93B588957C21_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_InsertRange_m72CEB2CF00535CD03F0B0E21E16BE247647FBEA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_mC1B6D4E6CC94D8BA82A60B2F80CE9684D9345AAE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mBC0CF16789761FC25B6244FAB1CFF6C933C13FE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m15B78CA8F6C94A17CB48014CE1B2D2DA3C8BECAD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m6DA897B8E2A3434A84E3529FE9850B2773D88B65_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m060EF7FCB53AEB890C2D6DB7596B9E50500235CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0C25EDC3BBFEAFC872D99F3EFF19813AA75D02C6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3A1D78F766364DE1EABDE6A34F5E55E1B50096E0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4B50EBA8EF0848A08901DC4BB6C4371C9B7939B1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4B55D26AC4826CFF1DE9D6B3BFA517E7AEECF9D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5DEA6A9EF0E521472F19D3A747780F7274B36F04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m78A69AEA3549E5A337F4A31901E489EF7FD0FE45_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mAB2B123AE51CDC79605EF4A41537BADA1774F2CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCC0E71080DE343C1A527526A1AC2DBEC355CEA6C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE716C60A18D9455EF0C58216ECCE11441F8EA90B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_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_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFCF2B2ECBAC0430A3776BA1C3AE0B4B59733CB85_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_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* 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_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_modifiers_mBCB36BF375976B2E6CE9390CECCC21E5A35934D5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_pressedButtons_m8ED52FD85DF854AB58002D2C73701D3DE177A657_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* 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_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_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_m8817EEF724FE7CE591C159986B913554E98E939A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_set_clickCount_m4D763377D2198E24049E18C07D680F3D5A858246_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReusableCollectionItem_OnGeometryChanged_m5887D8D48E1708EC472796E143A0F11F171B5F30_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_mA8BCDF8A5DC47FB9DC9967E8423955DD37F0F190_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Clear_mB5DD9A67516D41D7A82FD1B0ABFA38AAA8593C0E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Contains_m2295EAFF1463FC139CCF3E975EC2B7000B18CE7A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_m011BD98974FC916CFDA7912EAC8C9D363A0F8928_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m14715B4FC2BB6B1734951F96041B24D0EDCAD133_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m65349BF61582D9D047A8D6F160A750AF79C6957D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mAE40922A25FDBA7867C019085CE230FAAF51A70B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mFE7E2A46CC49662C0B06E3F80D39FA8986EE690D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m20B8F6926877157FC7CA556376F45B0FB4BB779A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m554FC36FDE2574A73A5A61A5BA5977BDF6FF341B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m6735A1D45311268768814737E1F1884B3615CA20_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_mE94B7F59312A16974D63836B201A850AA5B3D7CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m114B389DBA17B72470237C3ED999DBC3AB6BA390_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m335E848ED0B875E3163CBDF6F077EF89DE99D59E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_mC5657DF3C282DA5CDD0BBD6368F49EC16FDC47CB_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* Stack_1_get_Count_m71CCBD64C52834EAFA609D5A8FD9BA5A1B5D6980_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleEnum_1_op_Implicit_m3CDF632B66BE956AED4D451BF8A5C2F7F1B7B48D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE7B6BBAB85E97D0515E5CB66187B7739F212B8EA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_m8B81FC876E83BF5262CC7EC3B100A34B5F2E9C95_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_m9588FA67E7A0E35C8F8A011AEA44E7424D5AF181_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_TryCheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m9263AEE145ED330DD7C6B42A0C9364BD3DA985D0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_TryCheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_mFFB0D1A6D60B98AC0BBC5CA36A7E035DDF33EBFE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleValueFunctionExtension_ToUssString_mEA908E13522D1848C3530DAC54A7B02C6F13177C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StyleValueKeywordExtension_ToUssString_m14BE58E94EF31E8F61F98C2A235EAAABC97E3DC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_m396CE8DBEB33097C72955E72BC61FF8116890A56_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_m6C7A6564E2433A152B5E820242C98F939D400D75_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CGetAllItemsU3Ed__64_System_Collections_IEnumerator_Reset_m20FDA24DCBCB3AA7ACCEFD8DD9175E509CAC6C02_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__10_0_mF7DFBDC92140F5A0C6C3470E89847FC906A88379_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__20_0_m2C10A6584006D32F230D68FB1DB5E7EDC6BAE421_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlEnumAttributeDescription_1__ctor_m7BEBF12D3F3F60FBEAB82EC2A25063BB9A98B4F4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlEnumAttributeDescription_1__ctor_mB098781FD9AFFEAE0E69A10F4837BF2CEAD7FFCC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_mE5749865C77DEAF2FAE6B6BA4DAE9EEF7913F380_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var;
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8;;
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com;
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com;;
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke;
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke;;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke;
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82;;
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com;
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com;;
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke;
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke;;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C;;
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com;
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com;;
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke;
|
|
struct FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke;;
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7;;
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com;
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com;;
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke;
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke;;
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7;;
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com;
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com;;
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke;
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke;;
|
|
struct StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D;
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E;;
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com;
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com;;
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke;
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke;;
|
|
|
|
struct ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389;
|
|
struct DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A;
|
|
struct ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857;
|
|
struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783;
|
|
struct StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3;
|
|
struct StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D;
|
|
struct StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B;
|
|
struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9;
|
|
struct BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA;
|
|
|
|
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.Int32,UnityEngine.UIElements.TreeItem>
|
|
struct Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054 : 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_tAB3F6A4535D4446C00D5BB409CF38ADF253E977D* ____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_t4C3104A7A88CC245D53DE5A532A1B112638121B8* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_tAFC71A786C2AFB2819F23435C7A6B0E83925D468* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
struct Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F : 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_t036BFAA1D42DC0A7C6666D9CEECE10EAA5D07FF8* ____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_t9D0AA6C6242A0E182B1BE5CF8346949901EB2330* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t922832094E5F2A84659A466E8A5D720D004654C5* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// 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.HashSet`1<System.Int32>
|
|
struct HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_7;
|
|
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
|
|
SlotU5BU5D_tC4D7CD3E804DC835CCF2F990797BC1D9AE4330D7* ____slots_8;
|
|
// System.Int32 System.Collections.Generic.HashSet`1::_count
|
|
int32_t ____count_9;
|
|
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
|
|
int32_t ____lastIndex_10;
|
|
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
|
|
int32_t ____freeList_11;
|
|
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
|
|
RuntimeObject* ____comparer_12;
|
|
// System.Int32 System.Collections.Generic.HashSet`1::_version
|
|
int32_t ____version_13;
|
|
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
|
|
SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ____siInfo_14;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>
|
|
struct List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
EasingFunctionU5BU5D_t3EEBBFFAD92EA74C3960D5F78D2A98BCEEA62E49* ____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.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.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<UnityEngine.UIElements.ITreeViewItem>
|
|
struct List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ITreeViewItemU5BU5D_t5DABAF3A22375E19C4108E522B4820D3BE068EBA* ____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<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.StyleSheets.StylePropertyValue>
|
|
struct List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StylePropertyValueU5BU5D_t4DE6509822A9A487529DC8DC8C08CB8822CE8688* ____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.StyleSheet>
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StyleSheetU5BU5D_tFFAA0F92657246FFBFE954290B305CCCBA9DD1A7* ____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.StyleVariable>
|
|
struct List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StyleVariableU5BU5D_tFE786BD2C1F914C1605C072F0BB10C405C0B4D96* ____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.TimeValue>
|
|
struct List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
TimeValueU5BU5D_t3EB79C5975D39A0E711250FD8A9547F5312746DE* ____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.TreeViewItemWrapper>
|
|
struct List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
TreeViewItemWrapperU5BU5D_t64703F6E179A23C62A7DBA2486D76B1F7091C5AF* ____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;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____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.InternalTreeView/TreeViewItemWrapper>
|
|
struct List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
TreeViewItemWrapperU5BU5D_tA8CE70B133105201BE01C82F78D06FACBBDBF55A* ____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.UIR.TextureBlitter/BlitInfo>
|
|
struct List_1_t0BE12F16A937298114B20824E93D706BCA5214D5 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* ____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<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
struct Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
IEnumerator_1U5BU5D_t848E987CA70E0A4E6DFC0EA6A8A22CC8EBD3CEDA* ____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<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.String>
|
|
struct Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____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<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____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<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>
|
|
struct Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
ResolveContextU5BU5D_tA44F71F5EFF2CE305C748D326687E840F314B3FB* ____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.InternalTreeView,UnityEngine.UIElements.InternalTreeView/UxmlTraits>
|
|
struct UxmlFactory_2_t30BFB002F45F67A8D7068C7AAAFCA5CBAF712EA0 : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_t6A5EA2E9F2DB65C27764862855EB4B3F02FD9C34* ___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.ContextualMenuManager
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B : public RuntimeObject
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.ContextualMenuManager::<displayMenuHandledOSX>k__BackingField
|
|
bool ___U3CdisplayMenuHandledOSXU3Ek__BackingField_0;
|
|
};
|
|
|
|
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
|
|
struct CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9 : 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.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.EventDebugger
|
|
struct EventDebugger_t268B7F1A30D10873FF30BB7BEC71666BB3712130 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
struct EventDispatchUtilities_t1D4C3D963EC4896C3D004D5EAE765177362A8A69 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
struct NavigationEventDispatchingStrategy_t0DC489A185593493955F67D8BA84B6F79A2A5FBE : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F : 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.Boolean UnityEngine.UIElements.ReusableCollectionItem::<isDragGhost>k__BackingField
|
|
bool ___U3CisDragGhostU3Ek__BackingField_4;
|
|
// System.Action`1<UnityEngine.UIElements.ReusableCollectionItem> UnityEngine.UIElements.ReusableCollectionItem::onGeometryChanged
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* ___onGeometryChanged_5;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent> UnityEngine.UIElements.ReusableCollectionItem::m_GeometryChangedEventCallback
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* ___m_GeometryChangedEventCallback_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.Shaders
|
|
struct Shaders_t84A2F64B101E87AC42866AA74DC014837843389D : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
// System.StringComparer
|
|
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// 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.StyleProperty
|
|
struct StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83 : public RuntimeObject
|
|
{
|
|
// System.String UnityEngine.UIElements.StyleProperty::m_Name
|
|
String_t* ___m_Name_0;
|
|
// System.Int32 UnityEngine.UIElements.StyleProperty::m_Line
|
|
int32_t ___m_Line_1;
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleProperty::m_Values
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___m_Values_2;
|
|
// System.Boolean UnityEngine.UIElements.StyleProperty::isCustomProperty
|
|
bool ___isCustomProperty_3;
|
|
// System.Boolean UnityEngine.UIElements.StyleProperty::requireVariableResolve
|
|
bool ___requireVariableResolve_4;
|
|
};
|
|
|
|
// 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.StyleSheets.Syntax.StyleSyntaxParser
|
|
struct StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.Syntax.Expression> UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::m_ProcessExpressionList
|
|
List_1_tCBE9E2C63706FE0CD9A6D23B9402AD482BFFDC48* ___m_ProcessExpressionList_0;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.Syntax.Expression> UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::m_ExpressionStack
|
|
Stack_1_tD6DF477EB7585D1F4442F510885CD1D22250BA56* ___m_ExpressionStack_1;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.Syntax.ExpressionCombinator> UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::m_CombinatorStack
|
|
Stack_1_t0D47F5E9B4943D4CBCB9CFA4B59EB251D28E5747* ___m_CombinatorStack_2;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleSheets.Syntax.Expression> UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::m_ParsedExpressionCache
|
|
Dictionary_2_t41A97B6849DA9B80390BF3C8A232EC503E0314E6* ___m_ParsedExpressionCache_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueFunctionExtension
|
|
struct StyleValueFunctionExtension_t282074E4A26B3CC7B72729E27861D116F54FD7EA : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueKeywordExtension
|
|
struct StyleValueKeywordExtension_t5F428E0EAD62B8F60F8ED80243419FFDA818C6EB : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527 : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleVariableContext::m_VariableHash
|
|
int32_t ___m_VariableHash_1;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable> UnityEngine.UIElements.StyleVariableContext::m_Variables
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* ___m_Variables_2;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.StyleVariableContext::m_SortedHash
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SortedHash_3;
|
|
};
|
|
|
|
// 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.InternalTreeView/<GetAllItems>d__64
|
|
struct U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5 : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<>1__state
|
|
int32_t ___U3CU3E1__state_0;
|
|
// UnityEngine.UIElements.ITreeViewItem UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<>2__current
|
|
RuntimeObject* ___U3CU3E2__current_1;
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<>l__initialThreadId
|
|
int32_t ___U3CU3El__initialThreadId_2;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::rootItems
|
|
RuntimeObject* ___rootItems_3;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<>3__rootItems
|
|
RuntimeObject* ___U3CU3E3__rootItems_4;
|
|
// System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<iteratorStack>5__1
|
|
Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* ___U3CiteratorStackU3E5__1_5;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<currentIterator>5__2
|
|
RuntimeObject* ___U3CcurrentIteratorU3E5__2_6;
|
|
// System.Boolean UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<hasNext>5__3
|
|
bool ___U3ChasNextU3E5__3_7;
|
|
// UnityEngine.UIElements.ITreeViewItem UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::<currentItem>5__4
|
|
RuntimeObject* ___U3CcurrentItemU3E5__4_8;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/<>c
|
|
struct U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelector/<>c
|
|
struct U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E : 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
|
|
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Single>
|
|
struct CustomStyleProperty_1_t21332918528099194FD36C74FF0FA14696F39493
|
|
{
|
|
// 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<UnityEngine.UIElements.StyleSheet>
|
|
struct Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ____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
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ____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;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF;
|
|
|
|
// 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.Background
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8
|
|
{
|
|
// UnityEngine.Texture2D UnityEngine.UIElements.Background::m_Texture
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0;
|
|
// UnityEngine.Sprite UnityEngine.UIElements.Background::m_Sprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1;
|
|
// UnityEngine.RenderTexture UnityEngine.UIElements.Background::m_RenderTexture
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2;
|
|
// UnityEngine.UIElements.VectorImage UnityEngine.UIElements.Background::m_VectorImage
|
|
VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Background
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2;
|
|
VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Background
|
|
struct Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___m_Texture_0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_1;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_RenderTexture_2;
|
|
VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC* ___m_VectorImage_3;
|
|
};
|
|
|
|
// 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.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.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Enum
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogCall
|
|
struct EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
struct EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogIMGUICall
|
|
struct EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8__padding[1];
|
|
};
|
|
};
|
|
|
|
// 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.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.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.ListViewController
|
|
struct ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E : public CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768
|
|
{
|
|
// System.Action UnityEngine.UIElements.ListViewController::itemsSourceSizeChanged
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___itemsSourceSizeChanged_4;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListViewController::itemsAdded
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___itemsAdded_5;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListViewController::itemsRemoved
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___itemsRemoved_6;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// System.OrdinalComparer
|
|
struct OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 : public StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06
|
|
{
|
|
// System.Boolean System.OrdinalComparer::_ignoreCase
|
|
bool ____ignoreCase_4;
|
|
};
|
|
|
|
// Unity.Profiling.ProfilerCategory
|
|
struct ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.UInt16 Unity.Profiling.ProfilerCategory::m_CategoryId
|
|
uint16_t ___m_CategoryId_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint16_t ___m_CategoryId_0_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC__padding[2];
|
|
};
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// UnityEngine.RectInt
|
|
struct RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8
|
|
{
|
|
// System.Int32 UnityEngine.RectInt::m_XMin
|
|
int32_t ___m_XMin_0;
|
|
// System.Int32 UnityEngine.RectInt::m_YMin
|
|
int32_t ___m_YMin_1;
|
|
// System.Int32 UnityEngine.RectInt::m_Width
|
|
int32_t ___m_Width_2;
|
|
// System.Int32 UnityEngine.RectInt::m_Height
|
|
int32_t ___m_Height_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ReusableListViewItem
|
|
struct ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5 : public ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableListViewItem::m_Container
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Container_7;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableListViewItem::m_DragHandle
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_DragHandle_8;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableListViewItem::m_ItemContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ItemContainer_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage
|
|
struct ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F
|
|
{
|
|
// UnityEngine.Texture2D UnityEngine.UIElements.StyleSheets.ScalableImage::normalImage
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___normalImage_0;
|
|
// UnityEngine.Texture2D UnityEngine.UIElements.StyleSheets.ScalableImage::highResolutionImage
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___highResolutionImage_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSheets.ScalableImage
|
|
struct ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_marshaled_pinvoke
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___normalImage_0;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___highResolutionImage_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleSheets.ScalableImage
|
|
struct ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_marshaled_com
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___normalImage_0;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___highResolutionImage_1;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Experimental.StyleValues
|
|
struct StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A
|
|
{
|
|
// UnityEngine.UIElements.StyleValueCollection UnityEngine.UIElements.Experimental.StyleValues::m_StyleValues
|
|
StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377* ___m_StyleValues_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Experimental.StyleValues
|
|
struct StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A_marshaled_pinvoke
|
|
{
|
|
StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377* ___m_StyleValues_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Experimental.StyleValues
|
|
struct StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A_marshaled_com
|
|
{
|
|
StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377* ___m_StyleValues_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariable
|
|
struct StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269
|
|
{
|
|
// System.String UnityEngine.UIElements.StyleVariable::name
|
|
String_t* ___name_0;
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleVariable::sheet
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_1;
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleVariable::handles
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___handles_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleVariable
|
|
struct StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_pinvoke
|
|
{
|
|
char* ___name_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_1;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* ___handles_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleVariable
|
|
struct StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_com
|
|
{
|
|
Il2CppChar* ___name_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_1;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* ___handles_2;
|
|
};
|
|
|
|
// System.Threading.Thread
|
|
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F : public CriticalFinalizerObject_t1DCAB623CAEA6529A96F5F3EDE3C7048A6E313C9
|
|
{
|
|
// System.Threading.InternalThread System.Threading.Thread::internal_thread
|
|
InternalThread_tF40B7BFCBD60C82BD8475A22FF5186CA10293687* ___internal_thread_6;
|
|
// System.Object System.Threading.Thread::m_ThreadStartArg
|
|
RuntimeObject* ___m_ThreadStartArg_7;
|
|
// System.Object System.Threading.Thread::pending_exception
|
|
RuntimeObject* ___pending_exception_8;
|
|
// System.MulticastDelegate System.Threading.Thread::m_Delegate
|
|
MulticastDelegate_t* ___m_Delegate_10;
|
|
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
|
|
ExecutionContext_t9D6EDFD92F0B2D391751963E2D77A8B03CB81710* ___m_ExecutionContext_11;
|
|
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
|
|
bool ___m_ExecutionContextBelongsToOuterScope_12;
|
|
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
|
|
RuntimeObject* ___principal_13;
|
|
// System.Int32 System.Threading.Thread::principal_version
|
|
int32_t ___principal_version_14;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionData
|
|
struct TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue> UnityEngine.UIElements.TransitionData::transitionDelay
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDelay_0;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue> UnityEngine.UIElements.TransitionData::transitionDuration
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDuration_1;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName> UnityEngine.UIElements.TransitionData::transitionProperty
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___transitionProperty_2;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction> UnityEngine.UIElements.TransitionData::transitionTimingFunction
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* ___transitionTimingFunction_3;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TransitionData
|
|
struct TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_pinvoke
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDelay_0;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDuration_1;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___transitionProperty_2;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* ___transitionTimingFunction_3;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TransitionData
|
|
struct TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_com
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDelay_0;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* ___transitionDuration_1;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* ___transitionProperty_2;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* ___transitionTimingFunction_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TreeItem
|
|
struct TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TreeItem::<id>k__BackingField
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
// System.Int32 UnityEngine.UIElements.TreeItem::<parentId>k__BackingField
|
|
int32_t ___U3CparentIdU3Ek__BackingField_1;
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeItem::<childrenIds>k__BackingField
|
|
RuntimeObject* ___U3CchildrenIdsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TreeItem
|
|
struct TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
int32_t ___U3CparentIdU3Ek__BackingField_1;
|
|
RuntimeObject* ___U3CchildrenIdsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TreeItem
|
|
struct TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90_marshaled_com
|
|
{
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
int32_t ___U3CparentIdU3Ek__BackingField_1;
|
|
RuntimeObject* ___U3CchildrenIdsU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TreeViewController
|
|
struct TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A : public CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768
|
|
{
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem> UnityEngine.UIElements.TreeViewController::m_TreeItems
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* ___m_TreeItems_4;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.TreeViewController::m_RootIndices
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_RootIndices_5;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper> UnityEngine.UIElements.TreeViewController::m_ItemWrappers
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* ___m_ItemWrappers_6;
|
|
// System.Collections.Generic.HashSet`1<System.Int32> UnityEngine.UIElements.TreeViewController::m_TreeItemIdsWithItemWrappers
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* ___m_TreeItemIdsWithItemWrappers_7;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper> UnityEngine.UIElements.TreeViewController::m_WrapperInsertionList
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* ___m_WrapperInsertionList_8;
|
|
};
|
|
|
|
// System.UInt16
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
// System.UInt16 System.UInt16::m_value
|
|
uint16_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.StyleSheets.BaseStyleMatcher/MatchContext
|
|
struct MatchContext_t04110FFA271D89A23BC1918BE657634A7DC06253
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.BaseStyleMatcher/MatchContext::valueIndex
|
|
int32_t ___valueIndex_0;
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.BaseStyleMatcher/MatchContext::matchedVariableCount
|
|
int32_t ___matchedVariableCount_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper::depth
|
|
int32_t ___depth_0;
|
|
// UnityEngine.UIElements.ITreeViewItem UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper::item
|
|
RuntimeObject* ___item_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_pinvoke
|
|
{
|
|
int32_t ___depth_0;
|
|
RuntimeObject* ___item_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_com
|
|
{
|
|
int32_t ___depth_0;
|
|
RuntimeObject* ___item_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlFactory
|
|
struct UxmlFactory_t8C0CFA338F9D59EB753E147466CE3C307797B50B : public UxmlFactory_2_t30BFB002F45F67A8D7068C7AAAFCA5CBAF712EA0
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
struct ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1
|
|
{
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleSheet/ImportStruct::styleSheet
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___styleSheet_0;
|
|
// System.String[] UnityEngine.UIElements.StyleSheet/ImportStruct::mediaQueries
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___mediaQueries_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
struct ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_pinvoke
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___styleSheet_0;
|
|
char** ___mediaQueries_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
struct ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_com
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___styleSheet_0;
|
|
Il2CppChar** ___mediaQueries_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
struct ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992
|
|
{
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleVariableResolver/ResolveContext::sheet
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleVariableResolver/ResolveContext::handles
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___handles_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
struct ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_pinvoke
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* ___handles_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
struct ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_com
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* ___handles_1;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC : public RuntimeObject
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.Experimental.ValueAnimation`1::m_StartTimeMs
|
|
int64_t ___m_StartTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.Experimental.ValueAnimation`1::m_DurationMs
|
|
int32_t ___m_DurationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.Experimental.ValueAnimation`1::<easingCurve>k__BackingField
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___U3CeasingCurveU3Ek__BackingField_2;
|
|
// System.Boolean UnityEngine.UIElements.Experimental.ValueAnimation`1::<isRunning>k__BackingField
|
|
bool ___U3CisRunningU3Ek__BackingField_3;
|
|
// System.Action UnityEngine.UIElements.Experimental.ValueAnimation`1::<onAnimationCompleted>k__BackingField
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3ConAnimationCompletedU3Ek__BackingField_4;
|
|
// System.Boolean UnityEngine.UIElements.Experimental.ValueAnimation`1::<autoRecycle>k__BackingField
|
|
bool ___U3CautoRecycleU3Ek__BackingField_5;
|
|
// System.Boolean UnityEngine.UIElements.Experimental.ValueAnimation`1::<recycled>k__BackingField
|
|
bool ___U3CrecycledU3Ek__BackingField_6;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Experimental.ValueAnimation`1::<owner>k__BackingField
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CownerU3Ek__BackingField_8;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,T> UnityEngine.UIElements.Experimental.ValueAnimation`1::<valueUpdated>k__BackingField
|
|
Action_2_tCFAD9DC5CF83678682A1102DCD1B12DE9FCA395A* ___U3CvalueUpdatedU3Ek__BackingField_9;
|
|
// System.Func`2<UnityEngine.UIElements.VisualElement,T> UnityEngine.UIElements.Experimental.ValueAnimation`1::<initialValue>k__BackingField
|
|
Func_2_t87FB5A45506EB8DF671CF8BEB31A0FD5A00FA227* ___U3CinitialValueU3Ek__BackingField_10;
|
|
// System.Func`4<T,T,System.Single,T> UnityEngine.UIElements.Experimental.ValueAnimation`1::<interpolator>k__BackingField
|
|
Func_4_t93A2D1B3300415C1167923C629725F6A8758E6B5* ___U3CinterpolatorU3Ek__BackingField_11;
|
|
// T UnityEngine.UIElements.Experimental.ValueAnimation`1::_from
|
|
StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A ____from_12;
|
|
// System.Boolean UnityEngine.UIElements.Experimental.ValueAnimation`1::fromValueSet
|
|
bool ___fromValueSet_13;
|
|
// T UnityEngine.UIElements.Experimental.ValueAnimation`1::<to>k__BackingField
|
|
StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A ___U3CtoU3Ek__BackingField_14;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Align
|
|
struct Align_t293AAB5F8D4239F304F48DA84CAAB4071C78902C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Align::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.AlternatingRowBackground
|
|
struct AlternatingRowBackground_t5970E82515609444BB4F9E993645CA4A9A9803E5
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.AlternatingRowBackground::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.BaseStyleMatcher
|
|
struct BaseStyleMatcher_tFD6EA6826D257F17BCF152BD6C76D9E154D23ECE : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleSheets.BaseStyleMatcher/MatchContext> UnityEngine.UIElements.StyleSheets.BaseStyleMatcher::m_ContextStack
|
|
Stack_1_tB568ED1852EE70A3EECA2CD66F2AB41DDEC262FA* ___m_ContextStack_1;
|
|
// UnityEngine.UIElements.StyleSheets.BaseStyleMatcher/MatchContext UnityEngine.UIElements.StyleSheets.BaseStyleMatcher::m_CurrentContext
|
|
MatchContext_t04110FFA271D89A23BC1918BE657634A7DC06253 ___m_CurrentContext_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CallbackPhase
|
|
struct CallbackPhase_t15EDFA9D179FFB21CAF3C1557809204A07B4FB26
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.CallbackPhase::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.Implementation.ClipMethod
|
|
struct ClipMethod_t576E65D24928AB1D0072DB926DDFA98B84FBCEDB
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.UIR.Implementation.ClipMethod::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationMethod
|
|
struct CollectionVirtualizationMethod_tF4A3B1303302D2B17F74CDB7D8A5287C8B056C88
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.CollectionVirtualizationMethod::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.ContextType
|
|
struct ContextType_t50FAC10DB1D4E29B37E532DED9CAA804FC4E59A0
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ContextType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Cursor
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82
|
|
{
|
|
// UnityEngine.Texture2D UnityEngine.UIElements.Cursor::<texture>k__BackingField
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.Cursor::<hotspot>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.Cursor::<defaultCursorId>k__BackingField
|
|
int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Cursor
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1;
|
|
int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Cursor
|
|
struct Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___U3CtextureU3Ek__BackingField_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ChotspotU3Ek__BackingField_1;
|
|
int32_t ___U3CdefaultCursorIdU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.DataType
|
|
struct DataType_tB1CE55CBDC1B9C7ED5D732F01851648E9150C680
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.DataType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
intptr_t ___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.DisplayStyle
|
|
struct DisplayStyle_t87BEDA2F78F764785ED41FC5E622ECB0091B2459
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.DisplayStyle::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.EventModifiers
|
|
struct EventModifiers_t48244B043FBB42CDD555C6AC43279EC7158777AC
|
|
{
|
|
// System.Int32 UnityEngine.EventModifiers::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.EventType
|
|
struct EventType_tC62F0D77DB08D7326B58B2D8CF43BD45CFD3203E
|
|
{
|
|
// System.Int32 UnityEngine.EventType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.UIElements.StyleSheets.Syntax.ExpressionCombinator
|
|
struct ExpressionCombinator_t30A2FA84A493FBBFE7ABE93C8DDA3D65FD939D01
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.ExpressionCombinator::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplierType
|
|
struct ExpressionMultiplierType_tB36824E33AA1299392D0197DE73657F275727E3D
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplierType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionType
|
|
struct ExpressionType_t43EEAE0B049C35B9DED55B0598AC8A78623A0781
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.ExpressionType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FlexDirection
|
|
struct FlexDirection_t0B086E97C9B1B8F1D94B51CBEAE6564B2A7C15DC
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.FlexDirection::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.FontStyle
|
|
struct FontStyle_tDD46734FA9BCB99FB315CD7CAD1137EE536136D1
|
|
{
|
|
// System.Int32 UnityEngine.FontStyle::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.HideFlags
|
|
struct HideFlags_tC514182ACEFD3B847988C45D5DB812FF6DB1BF4A
|
|
{
|
|
// System.Int32 UnityEngine.HideFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.InvokePolicy
|
|
struct InvokePolicy_t35E3E36A3D113CBFFEB13243E17691CBBDF1ED9B
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.InvokePolicy::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Justify
|
|
struct Justify_t91B96D47B47940372289EFCB244DDB5F1F7BD057
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Justify::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.KeyCode
|
|
struct KeyCode_t75B9ECCC26D858F55040DDFF9523681E996D17E9
|
|
{
|
|
// System.Int32 UnityEngine.KeyCode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ListViewReorderMode
|
|
struct ListViewReorderMode_t52F3FB550A16B2560273C1ED260D46A2871548CE
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ListViewReorderMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// Unity.Profiling.LowLevel.MarkerFlags
|
|
struct MarkerFlags_t58228A99AC6567F565911ED792189DBBDFF83E30
|
|
{
|
|
// System.UInt16 Unity.Profiling.LowLevel.MarkerFlags::value__
|
|
uint16_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.MatchResultErrorCode
|
|
struct MatchResultErrorCode_tE376B4B5B6BD32C191C0CA740038BEE2C9BC3996
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.MatchResultErrorCode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.MaterialPropertyBlock
|
|
struct MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.MaterialPropertyBlock::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// System.OrdinalCaseSensitiveComparer
|
|
struct OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A : public OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.OverflowClipBox
|
|
struct OverflowClipBox_t216E14FDAB321AF2B7F0DB6E22760D7724BDAA83
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.OverflowClipBox::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.OverflowInternal
|
|
struct OverflowInternal_t6A74561363466CCB7905A65D3E5E24887AE0F11F
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.OverflowInternal::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.OwnedState
|
|
struct OwnedState_t0957CA36E21DE8A443B616EBE83B25CCCA70B5A4
|
|
{
|
|
// System.Byte UnityEngine.UIElements.UIR.OwnedState::value__
|
|
uint8_t ___value___2;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PickingMode
|
|
struct PickingMode_t5699BF9E5F2587E0D297984D5BF5B63B768E66AC
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PickingMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Position
|
|
struct Position_t066B59B8657DAFCFBEDDAE8CBCE96E88796E1319
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Position::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// Unity.Profiling.ProfilerMarker
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
// System.IntPtr Unity.Profiling.ProfilerMarker::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PropagationPhase
|
|
struct PropagationPhase_tF3BE8BF5ED45FC52A828B7B6F078B64F01FAE6D6
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PropagationPhase::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PseudoStates
|
|
struct PseudoStates_tF4AB056E8743741BCE464A0983A060A53AAB7E4D
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PseudoStates::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.RenderDataDirtyTypes
|
|
struct RenderDataDirtyTypes_tEF0AE4EB7DF790A711AA45103050432B8FEDB907
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderDataDirtyTypes::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RenderHints
|
|
struct RenderHints_t4032FC4AB3FD946FD2A484865B8861730D9035E7
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.RenderHints::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Scale
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.Scale::m_Scale
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Scale_0;
|
|
// System.Boolean UnityEngine.UIElements.Scale::m_IsNone
|
|
bool ___m_IsNone_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Scale
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Scale_0;
|
|
int32_t ___m_IsNone_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Scale
|
|
struct Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Scale_0;
|
|
int32_t ___m_IsNone_1;
|
|
};
|
|
|
|
// UnityEngine.ScaleMode
|
|
struct ScaleMode_t16AD656758EE54C56B3DA34FE4F2033C9C2EE13D
|
|
{
|
|
// System.Int32 UnityEngine.ScaleMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollViewMode
|
|
struct ScrollViewMode_t6968C4B2BB3C46CF458E96BCE644E88B6893DE17
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ScrollViewMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollerVisibility
|
|
struct ScrollerVisibility_t92D9B3B68D98EF2FBB3B743F7D5CF140CA3C0778
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ScrollerVisibility::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.SelectionType
|
|
struct SelectionType_t606E5DED60240D7E52388344A8A1EF4EC4E54079
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.SelectionType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleKeyword
|
|
struct StyleKeyword_t2812E72266C15CBA8927586972DC2FD27B10E705
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleKeyword::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelectorRelationship
|
|
struct StyleSelectorRelationship_tAABCDC80BF87B347ACE1C64B32C85B05268A7F9E
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSelectorRelationship::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelectorType
|
|
struct StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSelectorType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueFunction
|
|
struct StyleValueFunction_t6A7C77404C9BD98781B216CB2459C11962259F12
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleValueFunction::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueKeyword
|
|
struct StyleValueKeyword_tD99A58D549C3614460643F9ED4C5D7B373E1B9E5
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleValueKeyword::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueType
|
|
struct StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleValueType::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver
|
|
struct StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher UnityEngine.UIElements.StyleVariableResolver::m_Matcher
|
|
StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248* ___m_Matcher_2;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue> UnityEngine.UIElements.StyleVariableResolver::m_ResolvedValues
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* ___m_ResolvedValues_3;
|
|
// System.Collections.Generic.Stack`1<System.String> UnityEngine.UIElements.StyleVariableResolver::m_ResolvedVarStack
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* ___m_ResolvedVarStack_4;
|
|
// UnityEngine.UIElements.StyleProperty UnityEngine.UIElements.StyleVariableResolver::m_Property
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* ___m_Property_5;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext> UnityEngine.UIElements.StyleVariableResolver::m_ContextStack
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* ___m_ContextStack_6;
|
|
// UnityEngine.UIElements.StyleVariableResolver/ResolveContext UnityEngine.UIElements.StyleVariableResolver::m_CurrentContext
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 ___m_CurrentContext_7;
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.StyleVariableResolver::<variableContext>k__BackingField
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___U3CvariableContextU3Ek__BackingField_8;
|
|
};
|
|
|
|
// UnityEngine.TextAnchor
|
|
struct TextAnchor_tA46E794186AC1CD0F22888652F589EBF7DFDF830
|
|
{
|
|
// System.Int32 UnityEngine.TextAnchor::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextOverflow
|
|
struct TextOverflow_tF5F972A9B8C1DF48FD3E878216CE6B4F94B94ADA
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TextOverflow::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextOverflowPosition
|
|
struct TextOverflowPosition_tB30616AE6E61CCEF425E41C8CD5110EC2547DF02
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TextOverflowPosition::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.UIElements.UIR.TextureBlitter
|
|
struct TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo[] UnityEngine.UIElements.UIR.TextureBlitter::m_SingleBlit
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* ___m_SingleBlit_2;
|
|
// UnityEngine.Material UnityEngine.UIElements.UIR.TextureBlitter::m_BlitMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_BlitMaterial_3;
|
|
// UnityEngine.MaterialPropertyBlock UnityEngine.UIElements.UIR.TextureBlitter::m_Properties
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___m_Properties_4;
|
|
// UnityEngine.RectInt UnityEngine.UIElements.UIR.TextureBlitter::m_Viewport
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___m_Viewport_5;
|
|
// UnityEngine.RenderTexture UnityEngine.UIElements.UIR.TextureBlitter::m_PrevRT
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___m_PrevRT_6;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo> UnityEngine.UIElements.UIR.TextureBlitter::m_PendingBlits
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* ___m_PendingBlits_7;
|
|
// System.Boolean UnityEngine.UIElements.UIR.TextureBlitter::<disposed>k__BackingField
|
|
bool ___U3CdisposedU3Ek__BackingField_8;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839
|
|
{
|
|
// UnityEngine.UIElements.TreeItem UnityEngine.UIElements.TreeViewItemWrapper::item
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 ___item_0;
|
|
// System.Int32 UnityEngine.UIElements.TreeViewItemWrapper::depth
|
|
int32_t ___depth_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839_marshaled_pinvoke
|
|
{
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90_marshaled_pinvoke ___item_0;
|
|
int32_t ___depth_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TreeViewItemWrapper
|
|
struct TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839_marshaled_com
|
|
{
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90_marshaled_com ___item_0;
|
|
int32_t ___depth_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
struct TrickleDown_t862EABE449B6C94F79F2B1D713990C35ABADDF38
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TrickleDown::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Visibility
|
|
struct Visibility_t1AEE2D871B126DD95D6F1D3B36EC92FE0D489F47
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Visibility::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFlags
|
|
struct VisualElementFlags_t4D1066E11400967A1A2DA7331391ACDC4AA14409
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFlags::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.WhiteSpace
|
|
struct WhiteSpace_t05265AA4B0C087FAE778422383EA36AF84EDCDD2
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.WhiteSpace::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Wrap
|
|
struct Wrap_tDDCA30F27EC4967717380ECCC67C0818EFA8BC53
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Wrap::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Angle/Unit
|
|
struct Unit_t21DCD5C095F7DC1A0B9A47CAF8CAD3E7776CD3DB
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Angle/Unit::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Dimension/Unit
|
|
struct Unit_tAE6456027618FB5F9E5CCB6E5C209250AC5695CC
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Dimension/Unit::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase/EventPropagation
|
|
struct EventPropagation_t024AF56F7A787C03AA21B065B624553EF52E7B83
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase/EventPropagation::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus
|
|
struct LifeCycleStatus_tEE500629F5431B574B8047EB70864747D348D38C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase/LifeCycleStatus::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.InternalTreeView/UxmlTraits
|
|
struct UxmlTraits_t6A5EA2E9F2DB65C27764862855EB4B3F02FD9C34 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B
|
|
{
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.InternalTreeView/UxmlTraits::m_ItemHeight
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_ItemHeight_12;
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription UnityEngine.UIElements.InternalTreeView/UxmlTraits::m_ShowBorder
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* ___m_ShowBorder_13;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType> UnityEngine.UIElements.InternalTreeView/UxmlTraits::m_SelectionType
|
|
UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* ___m_SelectionType_14;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground> UnityEngine.UIElements.InternalTreeView/UxmlTraits::m_ShowAlternatingRowBackgrounds
|
|
UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* ___m_ShowAlternatingRowBackgrounds_15;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Length/Unit
|
|
struct Unit_t7A9C3ABB0618BEBFDC1813D07080CE0C145448ED
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Length/Unit::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// Unity.Profiling.ProfilerMarker/AutoScope
|
|
struct AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139
|
|
{
|
|
// System.IntPtr Unity.Profiling.ProfilerMarker/AutoScope::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.PropagationPaths/Type
|
|
struct Type_tD53E080CC5AC8595BBFD93ED1C3C9DDE819526C8
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PropagationPaths/Type::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollView/NestedInteractionKind
|
|
struct NestedInteractionKind_tB05346E2CBA2B1468842CC149E572071F6BF123A
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ScrollView/NestedInteractionKind::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollView/TouchScrollBehavior
|
|
struct TouchScrollBehavior_tDFF4DB42BA6E5CFD89F263270DEBDB5E6CF4E66E
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ScrollView/TouchScrollBehavior::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result
|
|
struct Result_t42BB8D38B4EB21132ACD5E02F101485AAA287D38
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleVariableResolver/Result::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo
|
|
struct BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357
|
|
{
|
|
// UnityEngine.Texture UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo::src
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___src_0;
|
|
// UnityEngine.RectInt UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo::srcRect
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___srcRect_1;
|
|
// UnityEngine.Vector2Int UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo::dstPos
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___dstPos_2;
|
|
// System.Int32 UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo::border
|
|
int32_t ___border_3;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo::tint
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___tint_4;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo
|
|
struct BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357_marshaled_pinvoke
|
|
{
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___src_0;
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___srcRect_1;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___dstPos_2;
|
|
int32_t ___border_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___tint_4;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo
|
|
struct BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357_marshaled_com
|
|
{
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___src_0;
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___srcRect_1;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___dstPos_2;
|
|
int32_t ___border_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___tint_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription/Use
|
|
struct Use_tB32C57550EDF1A878B28A5BD90C918FFBD876670
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.UxmlAttributeDescription/Use::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/RenderTargetMode
|
|
struct RenderTargetMode_tAE75E29BB61A64BDE7646D5CBD353B64BCFA9F3A
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElement/RenderTargetMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>
|
|
struct StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69
|
|
{
|
|
// T UnityEngine.UIElements.StyleEnum`1::m_Value
|
|
int32_t ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleEnum`1::m_Keyword
|
|
int32_t ___m_Keyword_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>
|
|
struct StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE
|
|
{
|
|
// T UnityEngine.UIElements.StyleEnum`1::m_Value
|
|
int32_t ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleEnum`1::m_Keyword
|
|
int32_t ___m_Keyword_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.Position>
|
|
struct StyleEnum_1_tDDEAB09F1AAFEA72821D32D702E5349040FF46D9
|
|
{
|
|
// T UnityEngine.UIElements.StyleEnum`1::m_Value
|
|
int32_t ___m_Value_0;
|
|
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleEnum`1::m_Keyword
|
|
int32_t ___m_Keyword_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
typedef Il2CppFullySharedGenericStruct StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5;
|
|
|
|
// UnityEngine.UIElements.Angle
|
|
struct Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC
|
|
{
|
|
// System.Single UnityEngine.UIElements.Angle::m_Value
|
|
float ___m_Value_0;
|
|
// UnityEngine.UIElements.Angle/Unit UnityEngine.UIElements.Angle::m_Unit
|
|
int32_t ___m_Unit_1;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// 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.UIElements.StyleSheets.Dimension
|
|
struct Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.Dimension/Unit UnityEngine.UIElements.StyleSheets.Dimension::unit
|
|
int32_t ___unit_0;
|
|
// System.Single UnityEngine.UIElements.StyleSheets.Dimension::value
|
|
float ___value_1;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// 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.StyleSheets.Syntax.ExpressionMultiplier
|
|
struct ExpressionMultiplier_tE91EF712DEC648CB4C4EB7657AF65BE9F6F1A8DB
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplierType UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplier::m_Type
|
|
int32_t ___m_Type_1;
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplier::min
|
|
int32_t ___min_2;
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplier::max
|
|
int32_t ___max_3;
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
// UnityEngine.Font/FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
|
|
FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* ___m_FontTextureRebuildCallback_5;
|
|
};
|
|
|
|
// 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.StyleSheets.MatchResult
|
|
struct MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.MatchResultErrorCode UnityEngine.UIElements.StyleSheets.MatchResult::errorCode
|
|
int32_t ___errorCode_0;
|
|
// System.String UnityEngine.UIElements.StyleSheets.MatchResult::errorValue
|
|
String_t* ___errorValue_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSheets.MatchResult
|
|
struct MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A_marshaled_pinvoke
|
|
{
|
|
int32_t ___errorCode_0;
|
|
char* ___errorValue_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleSheets.MatchResult
|
|
struct MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A_marshaled_com
|
|
{
|
|
int32_t ___errorCode_0;
|
|
Il2CppChar* ___errorValue_1;
|
|
};
|
|
|
|
// 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.RareData
|
|
struct RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26
|
|
{
|
|
// UnityEngine.UIElements.Cursor UnityEngine.UIElements.RareData::cursor
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 ___cursor_0;
|
|
// UnityEngine.UIElements.TextOverflow UnityEngine.UIElements.RareData::textOverflow
|
|
int32_t ___textOverflow_1;
|
|
// UnityEngine.Color UnityEngine.UIElements.RareData::unityBackgroundImageTintColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityBackgroundImageTintColor_2;
|
|
// UnityEngine.ScaleMode UnityEngine.UIElements.RareData::unityBackgroundScaleMode
|
|
int32_t ___unityBackgroundScaleMode_3;
|
|
// UnityEngine.UIElements.OverflowClipBox UnityEngine.UIElements.RareData::unityOverflowClipBox
|
|
int32_t ___unityOverflowClipBox_4;
|
|
// System.Int32 UnityEngine.UIElements.RareData::unitySliceBottom
|
|
int32_t ___unitySliceBottom_5;
|
|
// System.Int32 UnityEngine.UIElements.RareData::unitySliceLeft
|
|
int32_t ___unitySliceLeft_6;
|
|
// System.Int32 UnityEngine.UIElements.RareData::unitySliceRight
|
|
int32_t ___unitySliceRight_7;
|
|
// System.Int32 UnityEngine.UIElements.RareData::unitySliceTop
|
|
int32_t ___unitySliceTop_8;
|
|
// UnityEngine.UIElements.TextOverflowPosition UnityEngine.UIElements.RareData::unityTextOverflowPosition
|
|
int32_t ___unityTextOverflowPosition_9;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.RareData
|
|
struct RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_pinvoke
|
|
{
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke ___cursor_0;
|
|
int32_t ___textOverflow_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityBackgroundImageTintColor_2;
|
|
int32_t ___unityBackgroundScaleMode_3;
|
|
int32_t ___unityOverflowClipBox_4;
|
|
int32_t ___unitySliceBottom_5;
|
|
int32_t ___unitySliceLeft_6;
|
|
int32_t ___unitySliceRight_7;
|
|
int32_t ___unitySliceTop_8;
|
|
int32_t ___unityTextOverflowPosition_9;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.RareData
|
|
struct RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_com
|
|
{
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com ___cursor_0;
|
|
int32_t ___textOverflow_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityBackgroundImageTintColor_2;
|
|
int32_t ___unityBackgroundScaleMode_3;
|
|
int32_t ___unityOverflowClipBox_4;
|
|
int32_t ___unitySliceBottom_5;
|
|
int32_t ___unitySliceLeft_6;
|
|
int32_t ___unitySliceRight_7;
|
|
int32_t ___unitySliceTop_8;
|
|
int32_t ___unityTextOverflowPosition_9;
|
|
};
|
|
|
|
// 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
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Shader
|
|
struct Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// 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.StyleSheets.StylePropertyValueMatcher
|
|
struct StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248 : public BaseStyleMatcher_tFD6EA6826D257F17BCF152BD6C76D9E154D23ECE
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue> UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher::m_Values
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* ___m_Values_3;
|
|
};
|
|
|
|
// 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.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;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleValueHandle
|
|
struct StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D
|
|
{
|
|
// UnityEngine.UIElements.StyleValueType UnityEngine.UIElements.StyleValueHandle::m_ValueType
|
|
int32_t ___m_ValueType_0;
|
|
// System.Int32 UnityEngine.UIElements.StyleValueHandle::valueIndex
|
|
int32_t ___valueIndex_1;
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Texture
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
|
};
|
|
|
|
// 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.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;
|
|
};
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
struct Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// 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<UnityEngine.UIElements.ReusableCollectionItem>
|
|
struct Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
struct Action_1_t66B514BE877E216616DEDD40416127189FE16FA3 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
struct Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem>
|
|
struct Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
struct Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
struct EventBase_1_tBA26F1F71F5552622D291E958C5BAAF8FC084715 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>>
|
|
struct EventBase_1_t8F2F1D9AFA0135C6A2C8450AC50D706047340414 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// 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.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.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.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<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.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.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
struct EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
struct EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
struct Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
struct Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
struct Func_2_tCCD9285ED7257102C8EE45B514FB667F28CFDE59 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String>
|
|
struct Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
struct TypedUxmlAttributeDescription_1_t25B132C34C584D3489CCD7BFC0A63B087E892795 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
int32_t ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>
|
|
struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
bool ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// 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<UnityEngine.UIElements.SelectionType>
|
|
struct TypedUxmlAttributeDescription_1_tB4C3196F5E6941A87CE165C3C9E3611D98CD3354 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
int32_t ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2 {};
|
|
|
|
// 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.StyleSheets.Syntax.Expression
|
|
struct Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionType UnityEngine.UIElements.StyleSheets.Syntax.Expression::type
|
|
int32_t ___type_0;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionMultiplier UnityEngine.UIElements.StyleSheets.Syntax.Expression::multiplier
|
|
ExpressionMultiplier_tE91EF712DEC648CB4C4EB7657AF65BE9F6F1A8DB ___multiplier_1;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.DataType UnityEngine.UIElements.StyleSheets.Syntax.Expression::dataType
|
|
int32_t ___dataType_2;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.ExpressionCombinator UnityEngine.UIElements.StyleSheets.Syntax.Expression::combinator
|
|
int32_t ___combinator_3;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression[] UnityEngine.UIElements.StyleSheets.Syntax.Expression::subExpressions
|
|
ExpressionU5BU5D_tD46A409FDDFCA9729C58372D8A196785A7816170* ___subExpressions_4;
|
|
// System.String UnityEngine.UIElements.StyleSheets.Syntax.Expression::keyword
|
|
String_t* ___keyword_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.InheritedData
|
|
struct InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67
|
|
{
|
|
// UnityEngine.Color UnityEngine.UIElements.InheritedData::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_0;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.InheritedData::fontSize
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___fontSize_1;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.InheritedData::letterSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_2;
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.InheritedData::textShadow
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___textShadow_3;
|
|
// UnityEngine.Font UnityEngine.UIElements.InheritedData::unityFont
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___unityFont_4;
|
|
// UnityEngine.UIElements.FontDefinition UnityEngine.UIElements.InheritedData::unityFontDefinition
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___unityFontDefinition_5;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.InheritedData::unityFontStyleAndWeight
|
|
int32_t ___unityFontStyleAndWeight_6;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.InheritedData::unityParagraphSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___unityParagraphSpacing_7;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.InheritedData::unityTextAlign
|
|
int32_t ___unityTextAlign_8;
|
|
// UnityEngine.Color UnityEngine.UIElements.InheritedData::unityTextOutlineColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityTextOutlineColor_9;
|
|
// System.Single UnityEngine.UIElements.InheritedData::unityTextOutlineWidth
|
|
float ___unityTextOutlineWidth_10;
|
|
// UnityEngine.UIElements.Visibility UnityEngine.UIElements.InheritedData::visibility
|
|
int32_t ___visibility_11;
|
|
// UnityEngine.UIElements.WhiteSpace UnityEngine.UIElements.InheritedData::whiteSpace
|
|
int32_t ___whiteSpace_12;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.InheritedData::wordSpacing
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_13;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.InheritedData
|
|
struct InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_pinvoke
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___fontSize_1;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_2;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___textShadow_3;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___unityFont_4;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke ___unityFontDefinition_5;
|
|
int32_t ___unityFontStyleAndWeight_6;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___unityParagraphSpacing_7;
|
|
int32_t ___unityTextAlign_8;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityTextOutlineColor_9;
|
|
float ___unityTextOutlineWidth_10;
|
|
int32_t ___visibility_11;
|
|
int32_t ___whiteSpace_12;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_13;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.InheritedData
|
|
struct InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_com
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___fontSize_1;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___letterSpacing_2;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___textShadow_3;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___unityFont_4;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com ___unityFontDefinition_5;
|
|
int32_t ___unityFontStyleAndWeight_6;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___unityParagraphSpacing_7;
|
|
int32_t ___unityTextAlign_8;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___unityTextOutlineColor_9;
|
|
float ___unityTextOutlineWidth_10;
|
|
int32_t ___visibility_11;
|
|
int32_t ___whiteSpace_12;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___wordSpacing_13;
|
|
};
|
|
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.LayoutData
|
|
struct LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440
|
|
{
|
|
// UnityEngine.UIElements.Align UnityEngine.UIElements.LayoutData::alignContent
|
|
int32_t ___alignContent_0;
|
|
// UnityEngine.UIElements.Align UnityEngine.UIElements.LayoutData::alignItems
|
|
int32_t ___alignItems_1;
|
|
// UnityEngine.UIElements.Align UnityEngine.UIElements.LayoutData::alignSelf
|
|
int32_t ___alignSelf_2;
|
|
// System.Single UnityEngine.UIElements.LayoutData::borderBottomWidth
|
|
float ___borderBottomWidth_3;
|
|
// System.Single UnityEngine.UIElements.LayoutData::borderLeftWidth
|
|
float ___borderLeftWidth_4;
|
|
// System.Single UnityEngine.UIElements.LayoutData::borderRightWidth
|
|
float ___borderRightWidth_5;
|
|
// System.Single UnityEngine.UIElements.LayoutData::borderTopWidth
|
|
float ___borderTopWidth_6;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::bottom
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___bottom_7;
|
|
// UnityEngine.UIElements.DisplayStyle UnityEngine.UIElements.LayoutData::display
|
|
int32_t ___display_8;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::flexBasis
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___flexBasis_9;
|
|
// UnityEngine.UIElements.FlexDirection UnityEngine.UIElements.LayoutData::flexDirection
|
|
int32_t ___flexDirection_10;
|
|
// System.Single UnityEngine.UIElements.LayoutData::flexGrow
|
|
float ___flexGrow_11;
|
|
// System.Single UnityEngine.UIElements.LayoutData::flexShrink
|
|
float ___flexShrink_12;
|
|
// UnityEngine.UIElements.Wrap UnityEngine.UIElements.LayoutData::flexWrap
|
|
int32_t ___flexWrap_13;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::height
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___height_14;
|
|
// UnityEngine.UIElements.Justify UnityEngine.UIElements.LayoutData::justifyContent
|
|
int32_t ___justifyContent_15;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::left
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___left_16;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::marginBottom
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___marginBottom_17;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::marginLeft
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___marginLeft_18;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::marginRight
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___marginRight_19;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::marginTop
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___marginTop_20;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::maxHeight
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___maxHeight_21;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::maxWidth
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___maxWidth_22;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::minHeight
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___minHeight_23;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::minWidth
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___minWidth_24;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::paddingBottom
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paddingBottom_25;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::paddingLeft
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paddingLeft_26;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::paddingRight
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paddingRight_27;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::paddingTop
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___paddingTop_28;
|
|
// UnityEngine.UIElements.Position UnityEngine.UIElements.LayoutData::position
|
|
int32_t ___position_29;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::right
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___right_30;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::top
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___top_31;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.LayoutData::width
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___width_32;
|
|
};
|
|
|
|
// System.NotImplementedException
|
|
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// 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.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.RenderTexture
|
|
struct RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27 : public Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.Rotate
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7
|
|
{
|
|
// UnityEngine.UIElements.Angle UnityEngine.UIElements.Rotate::m_Angle
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC ___m_Angle_0;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.Rotate::m_Axis
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Axis_1;
|
|
// System.Boolean UnityEngine.UIElements.Rotate::m_IsNone
|
|
bool ___m_IsNone_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Rotate
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke
|
|
{
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC ___m_Angle_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Axis_1;
|
|
int32_t ___m_IsNone_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Rotate
|
|
struct Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com
|
|
{
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC ___m_Angle_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Axis_1;
|
|
int32_t ___m_IsNone_2;
|
|
};
|
|
|
|
// 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.StyleSheets.StylePropertyValue
|
|
struct StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2
|
|
{
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleSheets.StylePropertyValue::sheet
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
// UnityEngine.UIElements.StyleValueHandle UnityEngine.UIElements.StyleSheets.StylePropertyValue::handle
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___handle_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StyleSheets.StylePropertyValue
|
|
struct StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2_marshaled_pinvoke
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___handle_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StyleSheets.StylePropertyValue
|
|
struct StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2_marshaled_com
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___sheet_0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___handle_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheet
|
|
struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428 : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::m_ImportedWithErrors
|
|
bool ___m_ImportedWithErrors_4;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::m_ImportedWithWarnings
|
|
bool ___m_ImportedWithWarnings_5;
|
|
// UnityEngine.UIElements.StyleRule[] UnityEngine.UIElements.StyleSheet::m_Rules
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* ___m_Rules_6;
|
|
// UnityEngine.UIElements.StyleComplexSelector[] UnityEngine.UIElements.StyleSheet::m_ComplexSelectors
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* ___m_ComplexSelectors_7;
|
|
// System.Single[] UnityEngine.UIElements.StyleSheet::floats
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___floats_8;
|
|
// UnityEngine.UIElements.StyleSheets.Dimension[] UnityEngine.UIElements.StyleSheet::dimensions
|
|
DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* ___dimensions_9;
|
|
// UnityEngine.Color[] UnityEngine.UIElements.StyleSheet::colors
|
|
ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* ___colors_10;
|
|
// System.String[] UnityEngine.UIElements.StyleSheet::strings
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___strings_11;
|
|
// UnityEngine.Object[] UnityEngine.UIElements.StyleSheet::assets
|
|
ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* ___assets_12;
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct[] UnityEngine.UIElements.StyleSheet::imports
|
|
ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9* ___imports_13;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.StyleSheet::m_FlattenedImportedStyleSheets
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___m_FlattenedImportedStyleSheets_14;
|
|
// System.Int32 UnityEngine.UIElements.StyleSheet::m_ContentHash
|
|
int32_t ___m_ContentHash_15;
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage[] UnityEngine.UIElements.StyleSheet::scalableImages
|
|
ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52* ___scalableImages_16;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector> UnityEngine.UIElements.StyleSheet::orderedNameSelectors
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* ___orderedNameSelectors_17;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector> UnityEngine.UIElements.StyleSheet::orderedTypeSelectors
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* ___orderedTypeSelectors_18;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector> UnityEngine.UIElements.StyleSheet::orderedClassSelectors
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* ___orderedClassSelectors_19;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::m_IsDefaultStyleSheet
|
|
bool ___m_IsDefaultStyleSheet_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransformOrigin
|
|
struct TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502
|
|
{
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.TransformOrigin::m_X
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_X_0;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.TransformOrigin::m_Y
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_Y_1;
|
|
// System.Single UnityEngine.UIElements.TransformOrigin::m_Z
|
|
float ___m_Z_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Translate
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E
|
|
{
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.Translate::m_X
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_X_0;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.Translate::m_Y
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_Y_1;
|
|
// System.Single UnityEngine.UIElements.Translate::m_Z
|
|
float ___m_Z_2;
|
|
// System.Boolean UnityEngine.UIElements.Translate::m_isNone
|
|
bool ___m_isNone_3;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.Translate
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_X_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_Y_1;
|
|
float ___m_Z_2;
|
|
int32_t ___m_isNone_3;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.Translate
|
|
struct Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_X_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___m_Y_1;
|
|
float ___m_Z_2;
|
|
int32_t ___m_isNone_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualData
|
|
struct VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B
|
|
{
|
|
// UnityEngine.Color UnityEngine.UIElements.VisualData::backgroundColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_0;
|
|
// UnityEngine.UIElements.Background UnityEngine.UIElements.VisualData::backgroundImage
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___backgroundImage_1;
|
|
// UnityEngine.Color UnityEngine.UIElements.VisualData::borderBottomColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderBottomColor_2;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.VisualData::borderBottomLeftRadius
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomLeftRadius_3;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.VisualData::borderBottomRightRadius
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomRightRadius_4;
|
|
// UnityEngine.Color UnityEngine.UIElements.VisualData::borderLeftColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderLeftColor_5;
|
|
// UnityEngine.Color UnityEngine.UIElements.VisualData::borderRightColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderRightColor_6;
|
|
// UnityEngine.Color UnityEngine.UIElements.VisualData::borderTopColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderTopColor_7;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.VisualData::borderTopLeftRadius
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopLeftRadius_8;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.VisualData::borderTopRightRadius
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopRightRadius_9;
|
|
// System.Single UnityEngine.UIElements.VisualData::opacity
|
|
float ___opacity_10;
|
|
// UnityEngine.UIElements.OverflowInternal UnityEngine.UIElements.VisualData::overflow
|
|
int32_t ___overflow_11;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.VisualData
|
|
struct VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_pinvoke
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_0;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke ___backgroundImage_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderBottomColor_2;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomLeftRadius_3;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomRightRadius_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderLeftColor_5;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderRightColor_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderTopColor_7;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopLeftRadius_8;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopRightRadius_9;
|
|
float ___opacity_10;
|
|
int32_t ___overflow_11;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.VisualData
|
|
struct VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_com
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_0;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com ___backgroundImage_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderBottomColor_2;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomLeftRadius_3;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderBottomRightRadius_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderLeftColor_5;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderRightColor_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___borderTopColor_7;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopLeftRadius_8;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___borderTopRightRadius_9;
|
|
float ___opacity_10;
|
|
int32_t ___overflow_11;
|
|
};
|
|
|
|
// 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.ChangeEvent`1<System.Boolean>
|
|
struct ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B : public EventBase_1_tBA26F1F71F5552622D291E958C5BAAF8FC084715
|
|
{
|
|
// T UnityEngine.UIElements.ChangeEvent`1::<previousValue>k__BackingField
|
|
bool ___U3CpreviousValueU3Ek__BackingField_18;
|
|
// T UnityEngine.UIElements.ChangeEvent`1::<newValue>k__BackingField
|
|
bool ___U3CnewValueU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3 : public EventBase_1_t8F2F1D9AFA0135C6A2C8450AC50D706047340414 {};
|
|
|
|
// 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.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.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.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.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
struct UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4 : public TypedUxmlAttributeDescription_1_t25B132C34C584D3489CCD7BFC0A63B087E892795
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
struct UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300 : public TypedUxmlAttributeDescription_1_tB4C3196F5E6941A87CE165C3C9E3611D98CD3354
|
|
{
|
|
};
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
// System.Object System.ArgumentOutOfRangeException::_actualValue
|
|
RuntimeObject* ____actualValue_19;
|
|
};
|
|
|
|
// 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.ThemeStyleSheet
|
|
struct ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553 : public StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransformData
|
|
struct TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808
|
|
{
|
|
// UnityEngine.UIElements.Rotate UnityEngine.UIElements.TransformData::rotate
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___rotate_0;
|
|
// UnityEngine.UIElements.Scale UnityEngine.UIElements.TransformData::scale
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___scale_1;
|
|
// UnityEngine.UIElements.TransformOrigin UnityEngine.UIElements.TransformData::transformOrigin
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___transformOrigin_2;
|
|
// UnityEngine.UIElements.Translate UnityEngine.UIElements.TransformData::translate
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___translate_3;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TransformData
|
|
struct TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_pinvoke
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke ___rotate_0;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke ___scale_1;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___transformOrigin_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke ___translate_3;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TransformData
|
|
struct TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_com
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com ___rotate_0;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com ___scale_1;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___transformOrigin_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com ___translate_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
struct UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE : public TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4 : public TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115 : public Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0
|
|
{
|
|
// UnityEngine.UIElements.InlineStyleAccess UnityEngine.UIElements.VisualElement::inlineStyleAccess
|
|
InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165* ___inlineStyleAccess_7;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.VisualElement::styleSheetList
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___styleSheetList_8;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<UnityEngine.UIElements.IStylePropertyAnimations.runningAnimationCount>k__BackingField
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_runningAnimationCountU3Ek__BackingField_11;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<UnityEngine.UIElements.IStylePropertyAnimations.completedAnimationCount>k__BackingField
|
|
int32_t ___U3CUnityEngine_UIElements_IStylePropertyAnimations_completedAnimationCountU3Ek__BackingField_12;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate> UnityEngine.UIElements.VisualElement::m_RunningAnimations
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___m_RunningAnimations_13;
|
|
// System.String UnityEngine.UIElements.VisualElement::m_Name
|
|
String_t* ___m_Name_18;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElement::m_ClassList
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_ClassList_19;
|
|
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.PropertyName,System.Object>> UnityEngine.UIElements.VisualElement::m_PropertyBag
|
|
List_1_t60F39D768DAD2345527AD3EE73FAB2667DF4F260* ___m_PropertyBag_20;
|
|
// UnityEngine.UIElements.VisualElementFlags UnityEngine.UIElements.VisualElement::m_Flags
|
|
int32_t ___m_Flags_21;
|
|
// System.String UnityEngine.UIElements.VisualElement::m_ViewDataKey
|
|
String_t* ___m_ViewDataKey_22;
|
|
// UnityEngine.UIElements.RenderHints UnityEngine.UIElements.VisualElement::m_RenderHints
|
|
int32_t ___m_RenderHints_23;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::lastLayout
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastLayout_24;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::lastPseudoPadding
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___lastPseudoPadding_25;
|
|
// UnityEngine.UIElements.UIR.RenderChainVEData UnityEngine.UIElements.VisualElement::renderChainData
|
|
RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847 ___renderChainData_26;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_Layout
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_Layout_27;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_BoundingBox
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_BoundingBox_28;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldBoundingBox
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldBoundingBox_29;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.VisualElement::m_WorldTransformCache
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformCache_30;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.VisualElement::m_WorldTransformInverseCache
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___m_WorldTransformInverseCache_31;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldClip
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldClip_32;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::m_WorldClipMinusGroup
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_WorldClipMinusGroup_33;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::m_WorldClipIsInfinite
|
|
bool ___m_WorldClipIsInfinite_34;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::triggerPseudoMask
|
|
int32_t ___triggerPseudoMask_36;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::dependencyPseudoMask
|
|
int32_t ___dependencyPseudoMask_37;
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::m_PseudoStates
|
|
int32_t ___m_PseudoStates_38;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::<containedPointerIds>k__BackingField
|
|
int32_t ___U3CcontainedPointerIdsU3Ek__BackingField_39;
|
|
// UnityEngine.UIElements.PickingMode UnityEngine.UIElements.VisualElement::<pickingMode>k__BackingField
|
|
int32_t ___U3CpickingModeU3Ek__BackingField_40;
|
|
// UnityEngine.Yoga.YogaNode UnityEngine.UIElements.VisualElement::<yogaNode>k__BackingField
|
|
YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA* ___U3CyogaNodeU3Ek__BackingField_41;
|
|
// UnityEngine.UIElements.ComputedStyle UnityEngine.UIElements.VisualElement::m_Style
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C ___m_Style_42;
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.VisualElement::variableContext
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___variableContext_43;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::inheritedStylesHash
|
|
int32_t ___inheritedStylesHash_44;
|
|
// System.UInt32 UnityEngine.UIElements.VisualElement::controlid
|
|
uint32_t ___controlid_45;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::imguiContainerDescendantCount
|
|
int32_t ___imguiContainerDescendantCount_46;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<enabledSelf>k__BackingField
|
|
bool ___U3CenabledSelfU3Ek__BackingField_47;
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext> UnityEngine.UIElements.VisualElement::<generateVisualContent>k__BackingField
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___U3CgenerateVisualContentU3Ek__BackingField_48;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElement::k_GenerateVisualContentMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_GenerateVisualContentMarker_49;
|
|
// UnityEngine.UIElements.VisualElement/RenderTargetMode UnityEngine.UIElements.VisualElement::m_SubRenderTargetMode
|
|
int32_t ___m_SubRenderTargetMode_50;
|
|
// UnityEngine.Material UnityEngine.UIElements.VisualElement::m_defaultMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_defaultMaterial_52;
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy UnityEngine.UIElements.VisualElement::<hierarchy>k__BackingField
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 ___U3ChierarchyU3Ek__BackingField_54;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<isRootVisualContainer>k__BackingField
|
|
bool ___U3CisRootVisualContainerU3Ek__BackingField_55;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::<cacheAsBitmap>k__BackingField
|
|
bool ___U3CcacheAsBitmapU3Ek__BackingField_56;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::m_PhysicalParent
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PhysicalParent_57;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::m_LogicalParent
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_LogicalParent_58;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualElement::m_Children
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___m_Children_60;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualElement::<elementPanel>k__BackingField
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___U3CelementPanelU3Ek__BackingField_61;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.VisualElement::m_VisualTreeAssetSource
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___m_VisualTreeAssetSource_62;
|
|
// UnityEngine.UIElements.VisualElement/TypeData UnityEngine.UIElements.VisualElement::m_TypeData
|
|
TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* ___m_TypeData_64;
|
|
};
|
|
|
|
// 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
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28 : public PanelChangedEventBase_1_t08E54FB461E77FFD76488075D78EFDBED77D44E3
|
|
{
|
|
};
|
|
|
|
// 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.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.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.InternalTreeView
|
|
struct InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.InternalTreeView::m_MakeItem
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* ___m_MakeItem_71;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>> UnityEngine.UIElements.InternalTreeView::onItemsChosen
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* ___onItemsChosen_72;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>> UnityEngine.UIElements.InternalTreeView::onSelectionChange
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* ___onSelectionChange_73;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::m_SelectedItems
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* ___m_SelectedItems_74;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::m_BindItem
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* ___m_BindItem_75;
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::<unbindItem>k__BackingField
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* ___U3CunbindItemU3Ek__BackingField_76;
|
|
// System.Collections.Generic.IList`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::m_RootItems
|
|
RuntimeObject* ___m_RootItems_77;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.InternalTreeView::m_ExpandedItemIds
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_ExpandedItemIds_78;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper> UnityEngine.UIElements.InternalTreeView::m_ItemWrappers
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* ___m_ItemWrappers_79;
|
|
// UnityEngine.UIElements.ListView UnityEngine.UIElements.InternalTreeView::m_ListView
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* ___m_ListView_80;
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.InternalTreeView::m_ScrollView
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_81;
|
|
};
|
|
|
|
// 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.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.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9 : public VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ScrollView::m_FirstLayoutPass
|
|
int32_t ___m_FirstLayoutPass_65;
|
|
// UnityEngine.UIElements.ScrollerVisibility UnityEngine.UIElements.ScrollView::m_HorizontalScrollerVisibility
|
|
int32_t ___m_HorizontalScrollerVisibility_66;
|
|
// UnityEngine.UIElements.ScrollerVisibility UnityEngine.UIElements.ScrollView::m_VerticalScrollerVisibility
|
|
int32_t ___m_VerticalScrollerVisibility_67;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_AttachedRootVisualContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_AttachedRootVisualContainer_68;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_SingleLineHeight
|
|
float ___m_SingleLineHeight_69;
|
|
// System.Boolean UnityEngine.UIElements.ScrollView::m_MouseWheelScrollSizeIsInline
|
|
bool ___m_MouseWheelScrollSizeIsInline_70;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_HorizontalPageSize
|
|
float ___m_HorizontalPageSize_71;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_VerticalPageSize
|
|
float ___m_VerticalPageSize_72;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_MouseWheelScrollSize
|
|
float ___m_MouseWheelScrollSize_73;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_ScrollDecelerationRate
|
|
float ___m_ScrollDecelerationRate_75;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_Elasticity
|
|
float ___m_Elasticity_77;
|
|
// UnityEngine.UIElements.ScrollView/TouchScrollBehavior UnityEngine.UIElements.ScrollView::m_TouchScrollBehavior
|
|
int32_t ___m_TouchScrollBehavior_78;
|
|
// UnityEngine.UIElements.ScrollView/NestedInteractionKind UnityEngine.UIElements.ScrollView::m_NestedInteractionKind
|
|
int32_t ___m_NestedInteractionKind_79;
|
|
// System.Int64 UnityEngine.UIElements.ScrollView::m_ElasticAnimationIntervalMs
|
|
int64_t ___m_ElasticAnimationIntervalMs_81;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::<contentViewport>k__BackingField
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CcontentViewportU3Ek__BackingField_82;
|
|
// UnityEngine.UIElements.Scroller UnityEngine.UIElements.ScrollView::<horizontalScroller>k__BackingField
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ___U3ChorizontalScrollerU3Ek__BackingField_83;
|
|
// UnityEngine.UIElements.Scroller UnityEngine.UIElements.ScrollView::<verticalScroller>k__BackingField
|
|
Scroller_tFE2BC2FCB5D2BD623828C332E0BBF95D472D99A8* ___U3CverticalScrollerU3Ek__BackingField_84;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_ContentContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ContentContainer_85;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_ContentAndVerticalScrollContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ContentAndVerticalScrollContainer_86;
|
|
// UnityEngine.UIElements.ScrollViewMode UnityEngine.UIElements.ScrollView::m_Mode
|
|
int32_t ___m_Mode_97;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.ScrollView::m_ScheduledLayoutPassResetItem
|
|
RuntimeObject* ___m_ScheduledLayoutPassResetItem_98;
|
|
// System.Int32 UnityEngine.UIElements.ScrollView::m_ScrollingPointerId
|
|
int32_t ___m_ScrollingPointerId_99;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_StartPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_StartPosition_100;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_PointerStartPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PointerStartPosition_101;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_Velocity
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Velocity_102;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_SpringBackVelocity
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_SpringBackVelocity_103;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_LowBounds
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_LowBounds_104;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.ScrollView::m_HighBounds
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_HighBounds_105;
|
|
// System.Single UnityEngine.UIElements.ScrollView::m_LastVelocityLerpTime
|
|
float ___m_LastVelocityLerpTime_106;
|
|
// System.Boolean UnityEngine.UIElements.ScrollView::m_StartedMoving
|
|
bool ___m_StartedMoving_107;
|
|
// System.Boolean UnityEngine.UIElements.ScrollView::m_TouchStoppedVelocity
|
|
bool ___m_TouchStoppedVelocity_108;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ScrollView::m_CapturedTarget
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CapturedTarget_109;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent> UnityEngine.UIElements.ScrollView::m_CapturedTargetPointerMoveCallback
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___m_CapturedTargetPointerMoveCallback_110;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent> UnityEngine.UIElements.ScrollView::m_CapturedTargetPointerUpCallback
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___m_CapturedTargetPointerUpCallback_111;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.ScrollView::m_PostPointerUpAnimation
|
|
RuntimeObject* ___m_PostPointerUpAnimation_112;
|
|
};
|
|
|
|
// 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.BaseField`1<System.Boolean>
|
|
struct BaseField_1_t33E37D3A182C1DDE900EA4039FE03BF68FD0CD26 : 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
|
|
bool ___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.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;
|
|
// UnityEngine.UIElements.SerializedVirtualizationData UnityEngine.UIElements.BaseVerticalCollectionView::serializedVirtualizationData
|
|
SerializedVirtualizationData_t8EA4D4340BC124E7FC98396C263F0FEC091B53CB* ___serializedVirtualizationData_78;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_HorizontalScrollingEnabled
|
|
bool ___m_HorizontalScrollingEnabled_80;
|
|
// UnityEngine.UIElements.AlternatingRowBackground UnityEngine.UIElements.BaseVerticalCollectionView::m_ShowAlternatingRowBackgrounds
|
|
int32_t ___m_ShowAlternatingRowBackgrounds_81;
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::m_FixedItemHeight
|
|
float ___m_FixedItemHeight_83;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemHeightIsInline
|
|
bool ___m_ItemHeightIsInline_84;
|
|
// UnityEngine.UIElements.CollectionVirtualizationMethod UnityEngine.UIElements.BaseVerticalCollectionView::m_VirtualizationMethod
|
|
int32_t ___m_VirtualizationMethod_85;
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.BaseVerticalCollectionView::m_ScrollView
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_86;
|
|
// UnityEngine.UIElements.CollectionViewController UnityEngine.UIElements.BaseVerticalCollectionView::m_ViewController
|
|
CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* ___m_ViewController_87;
|
|
// UnityEngine.UIElements.CollectionVirtualizationController UnityEngine.UIElements.BaseVerticalCollectionView::m_VirtualizationController
|
|
CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* ___m_VirtualizationController_88;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator UnityEngine.UIElements.BaseVerticalCollectionView::m_NavigationManipulator
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* ___m_NavigationManipulator_89;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.BaseVerticalCollectionView::m_ScrollOffset
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ScrollOffset_90;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedIds
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SelectedIds_91;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedIndices
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_SelectedIndices_92;
|
|
// System.Collections.Generic.List`1<System.Object> UnityEngine.UIElements.BaseVerticalCollectionView::m_SelectedItems
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___m_SelectedItems_93;
|
|
// System.Single UnityEngine.UIElements.BaseVerticalCollectionView::m_LastHeight
|
|
float ___m_LastHeight_94;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::m_IsRangeSelectionDirectionUp
|
|
bool ___m_IsRangeSelectionDirectionUp_95;
|
|
// UnityEngine.UIElements.ListViewDragger UnityEngine.UIElements.BaseVerticalCollectionView::m_Dragger
|
|
ListViewDragger_t692E8911568C27949D7B443C4B82CB7925111BBD* ___m_Dragger_96;
|
|
// System.Action`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemIndexChangedCallback
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* ___m_ItemIndexChangedCallback_98;
|
|
// System.Action UnityEngine.UIElements.BaseVerticalCollectionView::m_ItemsSourceChangedCallback
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_ItemsSourceChangedCallback_99;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.BaseVerticalCollectionView::m_TouchDownPosition
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_TouchDownPosition_110;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Foldout
|
|
struct Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3 : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
// UnityEngine.UIElements.Toggle UnityEngine.UIElements.Foldout::m_Toggle
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* ___m_Toggle_67;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Foldout::m_Container
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Container_68;
|
|
// System.Boolean UnityEngine.UIElements.Foldout::m_Value
|
|
bool ___m_Value_69;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014 : public MouseCaptureEventBase_1_t5537F73E5A70BC010C316B6AAA9C566B72A90C68
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5 : public MouseCaptureEventBase_1_t5FC05EBFDD52596A249D1186F4DBBF8AC0BB96AC
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextElement
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0 : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextElement::m_TextHandle
|
|
RuntimeObject* ___m_TextHandle_68;
|
|
// System.String UnityEngine.UIElements.TextElement::m_Text
|
|
String_t* ___m_Text_70;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::m_EnableRichText
|
|
bool ___m_EnableRichText_71;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::m_DisplayTooltipWhenElided
|
|
bool ___m_DisplayTooltipWhenElided_72;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::<isElided>k__BackingField
|
|
bool ___U3CisElidedU3Ek__BackingField_73;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::m_WasElided
|
|
bool ___m_WasElided_75;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::m_UpdateTextParams
|
|
bool ___m_UpdateTextParams_76;
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams UnityEngine.UIElements.TextElement::m_TextParams
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___m_TextParams_77;
|
|
// System.Int32 UnityEngine.UIElements.TextElement::m_PreviousTextParamsHashCode
|
|
int32_t ___m_PreviousTextParamsHashCode_78;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseBoolField
|
|
struct BaseBoolField_t01F8AFD72D18F0EB65F949062615550A9ED30B0D : public BaseField_1_t33E37D3A182C1DDE900EA4039FE03BF68FD0CD26
|
|
{
|
|
// UnityEngine.UIElements.Label UnityEngine.UIElements.BaseBoolField::m_Label
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* ___m_Label_90;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseBoolField::m_CheckMark
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_CheckMark_91;
|
|
// UnityEngine.UIElements.Clickable UnityEngine.UIElements.BaseBoolField::m_Clickable
|
|
Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* ___m_Clickable_92;
|
|
// System.String UnityEngine.UIElements.BaseBoolField::m_OriginalText
|
|
String_t* ___m_OriginalText_93;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70 : public TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ListView
|
|
struct ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD : public BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.ListView::m_ShowBoundCollectionSize
|
|
bool ___m_ShowBoundCollectionSize_111;
|
|
// System.Boolean UnityEngine.UIElements.ListView::m_ShowFoldoutHeader
|
|
bool ___m_ShowFoldoutHeader_112;
|
|
// System.String UnityEngine.UIElements.ListView::m_HeaderTitle
|
|
String_t* ___m_HeaderTitle_113;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListView::itemsAdded
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___itemsAdded_114;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListView::itemsRemoved
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___itemsRemoved_115;
|
|
// UnityEngine.UIElements.Label UnityEngine.UIElements.ListView::m_EmptyListLabel
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* ___m_EmptyListLabel_116;
|
|
// UnityEngine.UIElements.Foldout UnityEngine.UIElements.ListView::m_Foldout
|
|
Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3* ___m_Foldout_117;
|
|
// UnityEngine.UIElements.TextField UnityEngine.UIElements.ListView::m_ArraySizeField
|
|
TextField_tDB34369F9468D7F02670087D9444EC23115827D9* ___m_ArraySizeField_118;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ListView::m_Footer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Footer_119;
|
|
// UnityEngine.UIElements.Button UnityEngine.UIElements.ListView::m_AddButton
|
|
Button_t8EC3B431665F84C0B637C11B0EA29236828646C2* ___m_AddButton_120;
|
|
// UnityEngine.UIElements.Button UnityEngine.UIElements.ListView::m_RemoveButton
|
|
Button_t8EC3B431665F84C0B637C11B0EA29236828646C2* ___m_RemoveButton_121;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListView::m_ItemAddedCallback
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___m_ItemAddedCallback_122;
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>> UnityEngine.UIElements.ListView::m_ItemRemovedCallback
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___m_ItemRemovedCallback_123;
|
|
// System.Action UnityEngine.UIElements.ListView::m_ItemsSourceSizeChangedCallback
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_ItemsSourceSizeChangedCallback_124;
|
|
// UnityEngine.UIElements.ListViewController UnityEngine.UIElements.ListView::m_ListViewController
|
|
ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* ___m_ListViewController_125;
|
|
// UnityEngine.UIElements.ListViewReorderMode UnityEngine.UIElements.ListView::m_ReorderMode
|
|
int32_t ___m_ReorderMode_126;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Experimental.TreeView
|
|
struct TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2 : public BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE
|
|
{
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.Experimental.TreeView::m_ExpandedItemIds
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___m_ExpandedItemIds_117;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Toggle
|
|
struct Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C : public BaseBoolField_t01F8AFD72D18F0EB65F949062615550A9ED30B0D
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>
|
|
|
|
// 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.HashSet`1<System.Int32>
|
|
|
|
// System.Collections.Generic.HashSet`1<System.Int32>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>
|
|
struct List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
EasingFunctionU5BU5D_t3EEBBFFAD92EA74C3960D5F78D2A98BCEEA62E49* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>
|
|
|
|
// 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.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<UnityEngine.UIElements.ITreeViewItem>
|
|
struct List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ITreeViewItemU5BU5D_t5DABAF3A22375E19C4108E522B4820D3BE068EBA* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem>
|
|
|
|
// 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<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.StyleSheets.StylePropertyValue>
|
|
struct List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StylePropertyValueU5BU5D_t4DE6509822A9A487529DC8DC8C08CB8822CE8688* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StyleSheetU5BU5D_tFFAA0F92657246FFBFE954290B305CCCBA9DD1A7* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>
|
|
struct List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StyleVariableU5BU5D_tFE786BD2C1F914C1605C072F0BB10C405C0B4D96* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>
|
|
struct List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
TimeValueU5BU5D_t3EB79C5975D39A0E711250FD8A9547F5312746DE* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>
|
|
struct List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
TreeViewItemWrapperU5BU5D_t64703F6E179A23C62A7DBA2486D76B1F7091C5AF* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>
|
|
|
|
// 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>
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>
|
|
struct List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
TreeViewItemWrapperU5BU5D_tA8CE70B133105201BE01C82F78D06FACBBDBF55A* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>
|
|
struct List_1_t0BE12F16A937298114B20824E93D706BCA5214D5_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.PropagationPaths>
|
|
|
|
// System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
|
|
// System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventCallbackList>
|
|
|
|
// System.Collections.Generic.Stack`1<System.String>
|
|
|
|
// System.Collections.Generic.Stack`1<System.String>
|
|
|
|
// System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.InternalTreeView,UnityEngine.UIElements.InternalTreeView/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.InternalTreeView,UnityEngine.UIElements.InternalTreeView/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
|
|
// UnityEngine.UIElements.CollectionViewController
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
|
|
// UnityEngine.UIElements.CollectionVirtualizationController
|
|
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
|
|
// UnityEngine.UIElements.DropdownMenu
|
|
|
|
// 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.EventDebugger
|
|
|
|
// UnityEngine.UIElements.EventDebugger
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
|
|
// UnityEngine.UIElements.EventDispatchUtilities
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.NavigationEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
|
|
// 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
|
|
|
|
// UnityEngine.UIElements.UIR.Shaders
|
|
struct Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.UIR.Shaders::k_AtlasBlit
|
|
String_t* ___k_AtlasBlit_0;
|
|
// System.String UnityEngine.UIElements.UIR.Shaders::k_Editor
|
|
String_t* ___k_Editor_1;
|
|
// System.String UnityEngine.UIElements.UIR.Shaders::k_Runtime
|
|
String_t* ___k_Runtime_2;
|
|
// System.String UnityEngine.UIElements.UIR.Shaders::k_RuntimeWorld
|
|
String_t* ___k_RuntimeWorld_3;
|
|
// System.String UnityEngine.UIElements.UIR.Shaders::k_GraphView
|
|
String_t* ___k_GraphView_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.Shaders
|
|
|
|
// System.String
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.String
|
|
|
|
// System.StringComparer
|
|
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields
|
|
{
|
|
// System.CultureAwareComparer System.StringComparer::s_invariantCulture
|
|
CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCulture_0;
|
|
// System.CultureAwareComparer System.StringComparer::s_invariantCultureIgnoreCase
|
|
CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCultureIgnoreCase_1;
|
|
// System.OrdinalCaseSensitiveComparer System.StringComparer::s_ordinal
|
|
OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A* ___s_ordinal_2;
|
|
// System.OrdinalIgnoreCaseComparer System.StringComparer::s_ordinalIgnoreCase
|
|
OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* ___s_ordinalIgnoreCase_3;
|
|
};
|
|
|
|
// System.StringComparer
|
|
|
|
// 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.StyleProperty
|
|
|
|
// UnityEngine.UIElements.StyleProperty
|
|
|
|
// UnityEngine.UIElements.StyleRule
|
|
|
|
// UnityEngine.UIElements.StyleRule
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser
|
|
|
|
// UnityEngine.UIElements.StyleValueFunctionExtension
|
|
|
|
// UnityEngine.UIElements.StyleValueFunctionExtension
|
|
|
|
// UnityEngine.UIElements.StyleValueKeywordExtension
|
|
|
|
// UnityEngine.UIElements.StyleValueKeywordExtension
|
|
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.StyleVariableContext::none
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___none_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64
|
|
|
|
// 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.StyleSelector/<>c
|
|
struct U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.StyleSelector/<>c UnityEngine.UIElements.StyleSelector/<>c::<>9
|
|
U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* ___U3CU3E9_0;
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String> UnityEngine.UIElements.StyleSelector/<>c::<>9__10_0
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* ___U3CU3E9__10_0_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSelector/<>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<UnityEngine.UIElements.StyleSheet>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSheet>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// UnityEngine.UIElements.Background
|
|
|
|
// UnityEngine.UIElements.Background
|
|
|
|
// 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
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogCall
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogCall
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogIMGUICall
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogIMGUICall
|
|
|
|
// 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.ListViewController
|
|
|
|
// UnityEngine.UIElements.ListViewController
|
|
|
|
// Unity.Profiling.ProfilerCategory
|
|
|
|
// Unity.Profiling.ProfilerCategory
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// UnityEngine.RectInt
|
|
|
|
// UnityEngine.RectInt
|
|
|
|
// UnityEngine.UIElements.ReusableListViewItem
|
|
|
|
// UnityEngine.UIElements.ReusableListViewItem
|
|
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage
|
|
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage
|
|
|
|
// System.Single
|
|
|
|
// System.Single
|
|
|
|
// UnityEngine.UIElements.StyleVariable
|
|
|
|
// UnityEngine.UIElements.StyleVariable
|
|
|
|
// System.Threading.Thread
|
|
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_StaticFields
|
|
{
|
|
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
|
|
LocalDataStoreMgr_t205F1783D5CC2B148E829B5882E5406FF9A3AC1E* ___s_LocalDataStoreMgr_0;
|
|
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
|
|
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentCulture_4;
|
|
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
|
|
AsyncLocal_1_t1D3339EA4C8650D2DEDDF9553E5C932B3DC2CCFD* ___s_asyncLocalCurrentUICulture_5;
|
|
};
|
|
|
|
// System.Threading.Thread
|
|
struct Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F_ThreadStaticFields
|
|
{
|
|
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
|
|
LocalDataStoreHolder_t789DD474AE5141213C2105CE57830ECFC2D3C03F* ___s_LocalDataStore_1;
|
|
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentCulture_2;
|
|
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___m_CurrentUICulture_3;
|
|
// System.Threading.Thread System.Threading.Thread::current_thread
|
|
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* ___current_thread_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TransitionData
|
|
|
|
// UnityEngine.UIElements.TransitionData
|
|
|
|
// UnityEngine.UIElements.TreeItem
|
|
|
|
// UnityEngine.UIElements.TreeItem
|
|
|
|
// UnityEngine.UIElements.TreeViewController
|
|
struct TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_StaticFields
|
|
{
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.TreeViewController::K_ExpandItemByIndex
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___K_ExpandItemByIndex_9;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.TreeViewController::k_CreateWrappers
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_CreateWrappers_10;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TreeViewController
|
|
|
|
// System.UInt16
|
|
|
|
// System.UInt16
|
|
|
|
// 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.Vector2Int
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields
|
|
{
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Zero_2;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_One_3;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Up_4;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Down_5;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Left_6;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Right_7;
|
|
};
|
|
|
|
// UnityEngine.Vector2Int
|
|
|
|
// 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
|
|
|
|
// UnityEngine.Vector4
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector_5;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector_6;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector_7;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector_8;
|
|
};
|
|
|
|
// UnityEngine.Vector4
|
|
|
|
// System.Void
|
|
|
|
// System.Void
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>
|
|
struct ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.Experimental.ValueAnimation`1<T>> UnityEngine.UIElements.Experimental.ValueAnimation`1::sObjectPool
|
|
ObjectPool_1_t048E004E7532AED8FD10569876C6065B7527D2AE* ___sObjectPool_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>
|
|
|
|
// UnityEngine.UIElements.Align
|
|
|
|
// UnityEngine.UIElements.Align
|
|
|
|
// UnityEngine.UIElements.AlternatingRowBackground
|
|
|
|
// UnityEngine.UIElements.AlternatingRowBackground
|
|
|
|
// UnityEngine.UIElements.CallbackPhase
|
|
|
|
// UnityEngine.UIElements.CallbackPhase
|
|
|
|
// UnityEngine.UIElements.ContextType
|
|
|
|
// UnityEngine.UIElements.ContextType
|
|
|
|
// UnityEngine.UIElements.Cursor
|
|
|
|
// UnityEngine.UIElements.Cursor
|
|
|
|
// System.Delegate
|
|
|
|
// System.Delegate
|
|
|
|
// UnityEngine.UIElements.DisplayStyle
|
|
|
|
// UnityEngine.UIElements.DisplayStyle
|
|
|
|
// 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.EventModifiers
|
|
|
|
// UnityEngine.EventModifiers
|
|
|
|
// UnityEngine.EventType
|
|
|
|
// UnityEngine.EventType
|
|
|
|
// UnityEngine.UIElements.FlexDirection
|
|
|
|
// UnityEngine.UIElements.FlexDirection
|
|
|
|
// UnityEngine.FontStyle
|
|
|
|
// UnityEngine.FontStyle
|
|
|
|
// UnityEngine.HideFlags
|
|
|
|
// UnityEngine.HideFlags
|
|
|
|
// UnityEngine.UIElements.InvokePolicy
|
|
|
|
// UnityEngine.UIElements.InvokePolicy
|
|
|
|
// UnityEngine.UIElements.Justify
|
|
|
|
// UnityEngine.UIElements.Justify
|
|
|
|
// UnityEngine.KeyCode
|
|
|
|
// UnityEngine.KeyCode
|
|
|
|
// UnityEngine.UIElements.ListViewReorderMode
|
|
|
|
// UnityEngine.UIElements.ListViewReorderMode
|
|
|
|
// Unity.Profiling.LowLevel.MarkerFlags
|
|
|
|
// Unity.Profiling.LowLevel.MarkerFlags
|
|
|
|
// UnityEngine.MaterialPropertyBlock
|
|
|
|
// UnityEngine.MaterialPropertyBlock
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
|
|
// System.OrdinalCaseSensitiveComparer
|
|
|
|
// System.OrdinalCaseSensitiveComparer
|
|
|
|
// UnityEngine.UIElements.OverflowClipBox
|
|
|
|
// UnityEngine.UIElements.OverflowClipBox
|
|
|
|
// UnityEngine.UIElements.OverflowInternal
|
|
|
|
// UnityEngine.UIElements.OverflowInternal
|
|
|
|
// UnityEngine.UIElements.Position
|
|
|
|
// UnityEngine.UIElements.Position
|
|
|
|
// Unity.Profiling.ProfilerMarker
|
|
|
|
// Unity.Profiling.ProfilerMarker
|
|
|
|
// UnityEngine.UIElements.PropagationPhase
|
|
|
|
// UnityEngine.UIElements.PropagationPhase
|
|
|
|
// UnityEngine.UIElements.PseudoStates
|
|
|
|
// UnityEngine.UIElements.PseudoStates
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// System.RuntimeTypeHandle
|
|
|
|
// UnityEngine.UIElements.Scale
|
|
|
|
// UnityEngine.UIElements.Scale
|
|
|
|
// UnityEngine.ScaleMode
|
|
|
|
// UnityEngine.ScaleMode
|
|
|
|
// UnityEngine.UIElements.SelectionType
|
|
|
|
// UnityEngine.UIElements.SelectionType
|
|
|
|
// UnityEngine.UIElements.StyleKeyword
|
|
|
|
// UnityEngine.UIElements.StyleKeyword
|
|
|
|
// UnityEngine.UIElements.StyleSelectorRelationship
|
|
|
|
// UnityEngine.UIElements.StyleSelectorRelationship
|
|
|
|
// UnityEngine.UIElements.StyleSelectorType
|
|
|
|
// UnityEngine.UIElements.StyleSelectorType
|
|
|
|
// UnityEngine.UIElements.StyleValueFunction
|
|
|
|
// UnityEngine.UIElements.StyleValueFunction
|
|
|
|
// UnityEngine.UIElements.StyleValueKeyword
|
|
|
|
// UnityEngine.UIElements.StyleValueKeyword
|
|
|
|
// UnityEngine.UIElements.StyleValueType
|
|
|
|
// UnityEngine.UIElements.StyleValueType
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver
|
|
struct StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser UnityEngine.UIElements.StyleVariableResolver::s_SyntaxParser
|
|
StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263* ___s_SyntaxParser_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver
|
|
|
|
// UnityEngine.TextAnchor
|
|
|
|
// UnityEngine.TextAnchor
|
|
|
|
// UnityEngine.UIElements.TextOverflow
|
|
|
|
// UnityEngine.UIElements.TextOverflow
|
|
|
|
// UnityEngine.UIElements.TextOverflowPosition
|
|
|
|
// UnityEngine.UIElements.TextOverflowPosition
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.UIR.TextureBlitter
|
|
struct TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields
|
|
{
|
|
// System.Int32[] UnityEngine.UIElements.UIR.TextureBlitter::k_TextureIds
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___k_TextureIds_0;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.TextureBlitter::s_CommitSampler
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_CommitSampler_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.TextureBlitter
|
|
|
|
// UnityEngine.UIElements.TreeViewItemWrapper
|
|
|
|
// UnityEngine.UIElements.TreeViewItemWrapper
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
|
|
// UnityEngine.UIElements.Visibility
|
|
|
|
// UnityEngine.UIElements.Visibility
|
|
|
|
// UnityEngine.UIElements.WhiteSpace
|
|
|
|
// UnityEngine.UIElements.WhiteSpace
|
|
|
|
// UnityEngine.UIElements.Wrap
|
|
|
|
// UnityEngine.UIElements.Wrap
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Dimension/Unit
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Dimension/Unit
|
|
|
|
// UnityEngine.UIElements.EventBase/EventPropagation
|
|
|
|
// UnityEngine.UIElements.EventBase/EventPropagation
|
|
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus
|
|
|
|
// UnityEngine.UIElements.EventBase/LifeCycleStatus
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.InternalTreeView/UxmlTraits
|
|
|
|
// Unity.Profiling.ProfilerMarker/AutoScope
|
|
|
|
// Unity.Profiling.ProfilerMarker/AutoScope
|
|
|
|
// UnityEngine.UIElements.PropagationPaths/Type
|
|
|
|
// UnityEngine.UIElements.PropagationPaths/Type
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result
|
|
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result
|
|
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo
|
|
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.Position>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.Position>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
|
|
// UnityEngine.UIElements.StyleEnum`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Dimension
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Dimension
|
|
|
|
// 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.UIElements.EventCallbackFunctorBase
|
|
|
|
// UnityEngine.UIElements.EventCallbackFunctorBase
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields
|
|
{
|
|
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
|
|
Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___textureRebuilt_4;
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.UIElements.StyleSheets.MatchResult
|
|
|
|
// UnityEngine.UIElements.StyleSheets.MatchResult
|
|
|
|
// UnityEngine.Material
|
|
|
|
// UnityEngine.Material
|
|
|
|
// UnityEngine.UIElements.RareData
|
|
|
|
// UnityEngine.UIElements.RareData
|
|
|
|
// UnityEngine.ScriptableObject
|
|
|
|
// UnityEngine.ScriptableObject
|
|
|
|
// UnityEngine.Shader
|
|
|
|
// UnityEngine.Shader
|
|
|
|
// UnityEngine.UIElements.StyleFloat
|
|
|
|
// UnityEngine.UIElements.StyleFloat
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher
|
|
|
|
// UnityEngine.UIElements.StyleSelector
|
|
|
|
// UnityEngine.UIElements.StyleSelector
|
|
|
|
// UnityEngine.UIElements.StyleSelectorPart
|
|
|
|
// UnityEngine.UIElements.StyleSelectorPart
|
|
|
|
// UnityEngine.UIElements.StyleValueHandle
|
|
|
|
// UnityEngine.UIElements.StyleValueHandle
|
|
|
|
// UnityEngine.Texture
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.Texture::GenerateAllMips
|
|
int32_t ___GenerateAllMips_4;
|
|
};
|
|
|
|
// UnityEngine.Texture
|
|
|
|
// System.Type
|
|
struct Type_t_StaticFields
|
|
{
|
|
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_1;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject* ___Missing_3;
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
|
};
|
|
|
|
// System.Type
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
|
|
// UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
|
|
// System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>>
|
|
|
|
// 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<UnityEngine.UIElements.ReusableCollectionItem>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
|
|
// System.Action`2<System.Int32,System.Int32>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>
|
|
|
|
// System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// 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.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.CustomStyleResolvedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
|
|
// System.Func`2<System.Int32,System.Int32>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelector,System.String>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String>
|
|
|
|
// System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String>
|
|
|
|
// System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action
|
|
|
|
// System.Action
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression
|
|
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression
|
|
|
|
// UnityEngine.UIElements.InheritedData
|
|
|
|
// UnityEngine.UIElements.InheritedData
|
|
|
|
// System.InvalidOperationException
|
|
|
|
// System.InvalidOperationException
|
|
|
|
// UnityEngine.UIElements.LayoutData
|
|
|
|
// UnityEngine.UIElements.LayoutData
|
|
|
|
// System.NotImplementedException
|
|
|
|
// System.NotImplementedException
|
|
|
|
// System.NotSupportedException
|
|
|
|
// System.NotSupportedException
|
|
|
|
// 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.RenderTexture
|
|
|
|
// UnityEngine.RenderTexture
|
|
|
|
// UnityEngine.UIElements.Rotate
|
|
|
|
// UnityEngine.UIElements.Rotate
|
|
|
|
// UnityEngine.UIElements.StyleLength
|
|
|
|
// UnityEngine.UIElements.StyleLength
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValue
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyValue
|
|
|
|
// UnityEngine.UIElements.StyleSheet
|
|
struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.StyleSheet::kCustomPropertyMarker
|
|
String_t* ___kCustomPropertyMarker_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StyleSheet
|
|
|
|
// UnityEngine.UIElements.TransformOrigin
|
|
|
|
// UnityEngine.UIElements.TransformOrigin
|
|
|
|
// UnityEngine.UIElements.Translate
|
|
|
|
// UnityEngine.UIElements.Translate
|
|
|
|
// UnityEngine.UIElements.VisualData
|
|
|
|
// UnityEngine.UIElements.VisualData
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.Boolean>
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.Boolean>
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// 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.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.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.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.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType>
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// System.ArgumentOutOfRangeException
|
|
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
|
|
// UnityEngine.UIElements.CustomStyleResolvedEvent
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.ThemeStyleSheet
|
|
|
|
// UnityEngine.UIElements.ThemeStyleSheet
|
|
|
|
// UnityEngine.UIElements.TransformData
|
|
|
|
// UnityEngine.UIElements.TransformData
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.VisualElement/CustomStyleAccess UnityEngine.UIElements.VisualElement::s_CustomStyleAccess
|
|
CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1* ___s_CustomStyleAccess_6;
|
|
// System.Text.RegularExpressions.Regex UnityEngine.UIElements.VisualElement::s_InternalStyleSheetPath
|
|
Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___s_InternalStyleSheetPath_9;
|
|
// UnityEngine.PropertyName UnityEngine.UIElements.VisualElement::tooltipPropertyKey
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___tooltipPropertyKey_10;
|
|
// System.UInt32 UnityEngine.UIElements.VisualElement::s_NextId
|
|
uint32_t ___s_NextId_14;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElement::s_EmptyClassList
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___s_EmptyClassList_15;
|
|
// UnityEngine.PropertyName UnityEngine.UIElements.VisualElement::userDataPropertyKey
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___userDataPropertyKey_16;
|
|
// System.String UnityEngine.UIElements.VisualElement::disabledUssClassName
|
|
String_t* ___disabledUssClassName_17;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::s_InfiniteRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___s_InfiniteRect_35;
|
|
// UnityEngine.Material UnityEngine.UIElements.VisualElement::s_runtimeMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_runtimeMaterial_51;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualElement::s_EmptyList
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* ___s_EmptyList_59;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,UnityEngine.UIElements.VisualElement/TypeData> UnityEngine.UIElements.VisualElement::s_TypeData
|
|
Dictionary_2_t4055F6540F36F21F9FEDAFB92D8E0089B38EBBC8* ___s_TypeData_63;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement
|
|
|
|
// 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>
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
|
|
// 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.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.InternalTreeView
|
|
struct InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.InternalTreeView::s_ListViewName
|
|
String_t* ___s_ListViewName_65;
|
|
// System.String UnityEngine.UIElements.InternalTreeView::s_ItemToggleName
|
|
String_t* ___s_ItemToggleName_66;
|
|
// System.String UnityEngine.UIElements.InternalTreeView::s_ItemIndentsContainerName
|
|
String_t* ___s_ItemIndentsContainerName_67;
|
|
// System.String UnityEngine.UIElements.InternalTreeView::s_ItemIndentName
|
|
String_t* ___s_ItemIndentName_68;
|
|
// System.String UnityEngine.UIElements.InternalTreeView::s_ItemContentContainerName
|
|
String_t* ___s_ItemContentContainerName_69;
|
|
// System.String UnityEngine.UIElements.InternalTreeView::itemUssClassName
|
|
String_t* ___itemUssClassName_70;
|
|
};
|
|
|
|
// UnityEngine.UIElements.InternalTreeView
|
|
|
|
// 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.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.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9_StaticFields
|
|
{
|
|
// System.Single UnityEngine.UIElements.ScrollView::k_DefaultScrollDecelerationRate
|
|
float ___k_DefaultScrollDecelerationRate_74;
|
|
// System.Single UnityEngine.UIElements.ScrollView::k_DefaultElasticity
|
|
float ___k_DefaultElasticity_76;
|
|
// System.Int64 UnityEngine.UIElements.ScrollView::k_DefaultElasticAnimationInterval
|
|
int64_t ___k_DefaultElasticAnimationInterval_80;
|
|
// System.String UnityEngine.UIElements.ScrollView::ussClassName
|
|
String_t* ___ussClassName_87;
|
|
// System.String UnityEngine.UIElements.ScrollView::viewportUssClassName
|
|
String_t* ___viewportUssClassName_88;
|
|
// System.String UnityEngine.UIElements.ScrollView::contentAndVerticalScrollUssClassName
|
|
String_t* ___contentAndVerticalScrollUssClassName_89;
|
|
// System.String UnityEngine.UIElements.ScrollView::contentUssClassName
|
|
String_t* ___contentUssClassName_90;
|
|
// System.String UnityEngine.UIElements.ScrollView::hScrollerUssClassName
|
|
String_t* ___hScrollerUssClassName_91;
|
|
// System.String UnityEngine.UIElements.ScrollView::vScrollerUssClassName
|
|
String_t* ___vScrollerUssClassName_92;
|
|
// System.String UnityEngine.UIElements.ScrollView::horizontalVariantUssClassName
|
|
String_t* ___horizontalVariantUssClassName_93;
|
|
// System.String UnityEngine.UIElements.ScrollView::verticalVariantUssClassName
|
|
String_t* ___verticalVariantUssClassName_94;
|
|
// System.String UnityEngine.UIElements.ScrollView::verticalHorizontalVariantUssClassName
|
|
String_t* ___verticalHorizontalVariantUssClassName_95;
|
|
// System.String UnityEngine.UIElements.ScrollView::scrollVariantUssClassName
|
|
String_t* ___scrollVariantUssClassName_96;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScrollView
|
|
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
|
|
// UnityEngine.UIElements.ValidateCommandEvent
|
|
|
|
// UnityEngine.UIElements.WheelEvent
|
|
|
|
// UnityEngine.UIElements.WheelEvent
|
|
|
|
// UnityEngine.UIElements.BaseField`1<System.Boolean>
|
|
struct BaseField_1_t33E37D3A182C1DDE900EA4039FE03BF68FD0CD26_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.BaseField`1::ussClassName
|
|
String_t* ___ussClassName_67;
|
|
// System.String UnityEngine.UIElements.BaseField`1::labelUssClassName
|
|
String_t* ___labelUssClassName_68;
|
|
// System.String UnityEngine.UIElements.BaseField`1::inputUssClassName
|
|
String_t* ___inputUssClassName_69;
|
|
// System.String UnityEngine.UIElements.BaseField`1::noLabelVariantUssClassName
|
|
String_t* ___noLabelVariantUssClassName_70;
|
|
// System.String UnityEngine.UIElements.BaseField`1::labelDraggerVariantUssClassName
|
|
String_t* ___labelDraggerVariantUssClassName_71;
|
|
// System.String UnityEngine.UIElements.BaseField`1::mixedValueLabelUssClassName
|
|
String_t* ___mixedValueLabelUssClassName_72;
|
|
// System.String UnityEngine.UIElements.BaseField`1::alignedFieldUssClassName
|
|
String_t* ___alignedFieldUssClassName_73;
|
|
// System.String UnityEngine.UIElements.BaseField`1::inspectorFieldUssClassName
|
|
String_t* ___inspectorFieldUssClassName_74;
|
|
// System.String UnityEngine.UIElements.BaseField`1::mixedValueString
|
|
String_t* ___mixedValueString_75;
|
|
// UnityEngine.PropertyName UnityEngine.UIElements.BaseField`1::serializedPropertyCopyName
|
|
PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2 ___serializedPropertyCopyName_76;
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Single> UnityEngine.UIElements.BaseField`1::s_LabelWidthRatioProperty
|
|
CustomStyleProperty_1_t21332918528099194FD36C74FF0FA14696F39493 ___s_LabelWidthRatioProperty_77;
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Single> UnityEngine.UIElements.BaseField`1::s_LabelExtraPaddingProperty
|
|
CustomStyleProperty_1_t21332918528099194FD36C74FF0FA14696F39493 ___s_LabelExtraPaddingProperty_78;
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Single> UnityEngine.UIElements.BaseField`1::s_LabelBaseMinWidthProperty
|
|
CustomStyleProperty_1_t21332918528099194FD36C74FF0FA14696F39493 ___s_LabelBaseMinWidthProperty_79;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseField`1<System.Boolean>
|
|
|
|
// 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_79;
|
|
// System.Int32 UnityEngine.UIElements.BaseVerticalCollectionView::s_DefaultItemHeight
|
|
int32_t ___s_DefaultItemHeight_82;
|
|
// UnityEngine.UIElements.CustomStyleProperty`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::s_ItemHeightProperty
|
|
CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F ___s_ItemHeightProperty_97;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::ussClassName
|
|
String_t* ___ussClassName_100;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::borderUssClassName
|
|
String_t* ___borderUssClassName_101;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemUssClassName
|
|
String_t* ___itemUssClassName_102;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::dragHoverBarUssClassName
|
|
String_t* ___dragHoverBarUssClassName_103;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::dragHoverMarkerUssClassName
|
|
String_t* ___dragHoverMarkerUssClassName_104;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemDragHoverUssClassName
|
|
String_t* ___itemDragHoverUssClassName_105;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemSelectedVariantUssClassName
|
|
String_t* ___itemSelectedVariantUssClassName_106;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::itemAlternativeBackgroundUssClassName
|
|
String_t* ___itemAlternativeBackgroundUssClassName_107;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::listScrollViewUssClassName
|
|
String_t* ___listScrollViewUssClassName_108;
|
|
// System.String UnityEngine.UIElements.BaseVerticalCollectionView::backgroundFillUssClassName
|
|
String_t* ___backgroundFillUssClassName_109;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView
|
|
|
|
// UnityEngine.UIElements.Foldout
|
|
struct Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.Foldout::ussClassName
|
|
String_t* ___ussClassName_70;
|
|
// System.String UnityEngine.UIElements.Foldout::toggleUssClassName
|
|
String_t* ___toggleUssClassName_71;
|
|
// System.String UnityEngine.UIElements.Foldout::contentUssClassName
|
|
String_t* ___contentUssClassName_72;
|
|
// System.String UnityEngine.UIElements.Foldout::inputUssClassName
|
|
String_t* ___inputUssClassName_73;
|
|
// System.String UnityEngine.UIElements.Foldout::checkmarkUssClassName
|
|
String_t* ___checkmarkUssClassName_74;
|
|
// System.String UnityEngine.UIElements.Foldout::textUssClassName
|
|
String_t* ___textUssClassName_75;
|
|
// System.String UnityEngine.UIElements.Foldout::ussFoldoutDepthClassName
|
|
String_t* ___ussFoldoutDepthClassName_76;
|
|
// System.Int32 UnityEngine.UIElements.Foldout::ussFoldoutMaxDepth
|
|
int32_t ___ussFoldoutMaxDepth_77;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Foldout
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
|
|
// UnityEngine.UIElements.TextElement
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.TextElement::ussClassName
|
|
String_t* ___ussClassName_67;
|
|
// System.Int32 UnityEngine.UIElements.TextElement::maxTextVertices
|
|
int32_t ___maxTextVertices_69;
|
|
// System.String UnityEngine.UIElements.TextElement::k_EllipsisText
|
|
String_t* ___k_EllipsisText_74;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextElement
|
|
|
|
// UnityEngine.UIElements.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.Label::ussClassName
|
|
String_t* ___ussClassName_79;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Label
|
|
|
|
// UnityEngine.UIElements.ListView
|
|
struct ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.ListView::ussClassName
|
|
String_t* ___ussClassName_127;
|
|
// System.String UnityEngine.UIElements.ListView::itemUssClassName
|
|
String_t* ___itemUssClassName_128;
|
|
// System.String UnityEngine.UIElements.ListView::emptyLabelUssClassName
|
|
String_t* ___emptyLabelUssClassName_129;
|
|
// System.String UnityEngine.UIElements.ListView::reorderableUssClassName
|
|
String_t* ___reorderableUssClassName_130;
|
|
// System.String UnityEngine.UIElements.ListView::reorderableItemUssClassName
|
|
String_t* ___reorderableItemUssClassName_131;
|
|
// System.String UnityEngine.UIElements.ListView::reorderableItemContainerUssClassName
|
|
String_t* ___reorderableItemContainerUssClassName_132;
|
|
// System.String UnityEngine.UIElements.ListView::reorderableItemHandleUssClassName
|
|
String_t* ___reorderableItemHandleUssClassName_133;
|
|
// System.String UnityEngine.UIElements.ListView::reorderableItemHandleBarUssClassName
|
|
String_t* ___reorderableItemHandleBarUssClassName_134;
|
|
// System.String UnityEngine.UIElements.ListView::footerUssClassName
|
|
String_t* ___footerUssClassName_135;
|
|
// System.String UnityEngine.UIElements.ListView::foldoutHeaderUssClassName
|
|
String_t* ___foldoutHeaderUssClassName_136;
|
|
// System.String UnityEngine.UIElements.ListView::arraySizeFieldUssClassName
|
|
String_t* ___arraySizeFieldUssClassName_137;
|
|
// System.String UnityEngine.UIElements.ListView::listViewWithHeaderUssClassName
|
|
String_t* ___listViewWithHeaderUssClassName_138;
|
|
// System.String UnityEngine.UIElements.ListView::listViewWithFooterUssClassName
|
|
String_t* ___listViewWithFooterUssClassName_139;
|
|
// System.String UnityEngine.UIElements.ListView::scrollViewWithFooterUssClassName
|
|
String_t* ___scrollViewWithFooterUssClassName_140;
|
|
// System.String UnityEngine.UIElements.ListView::footerAddButtonName
|
|
String_t* ___footerAddButtonName_141;
|
|
// System.String UnityEngine.UIElements.ListView::footerRemoveButtonName
|
|
String_t* ___footerRemoveButtonName_142;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ListView
|
|
|
|
// UnityEngine.UIElements.Experimental.TreeView
|
|
struct TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::ussClassName
|
|
String_t* ___ussClassName_111;
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::itemUssClassName
|
|
String_t* ___itemUssClassName_112;
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::itemToggleUssClassName
|
|
String_t* ___itemToggleUssClassName_113;
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::itemIndentsContainerUssClassName
|
|
String_t* ___itemIndentsContainerUssClassName_114;
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::itemIndentUssClassName
|
|
String_t* ___itemIndentUssClassName_115;
|
|
// System.String UnityEngine.UIElements.Experimental.TreeView::itemContentContainerUssClassName
|
|
String_t* ___itemContentContainerUssClassName_116;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Experimental.TreeView
|
|
|
|
// UnityEngine.UIElements.Toggle
|
|
struct Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.Toggle::ussClassName
|
|
String_t* ___ussClassName_94;
|
|
// System.String UnityEngine.UIElements.Toggle::labelUssClassName
|
|
String_t* ___labelUssClassName_95;
|
|
// System.String UnityEngine.UIElements.Toggle::inputUssClassName
|
|
String_t* ___inputUssClassName_96;
|
|
// System.String UnityEngine.UIElements.Toggle::noTextVariantUssClassName
|
|
String_t* ___noTextVariantUssClassName_97;
|
|
// System.String UnityEngine.UIElements.Toggle::checkmarkUssClassName
|
|
String_t* ___checkmarkUssClassName_98;
|
|
// System.String UnityEngine.UIElements.Toggle::textUssClassName
|
|
String_t* ___textUssClassName_99;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Toggle
|
|
#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.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.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);
|
|
}
|
|
};
|
|
// 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);
|
|
}
|
|
};
|
|
// 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);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleValueHandle[]
|
|
struct StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D m_Items[1];
|
|
|
|
inline StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* 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, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleRule[]
|
|
struct StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* m_Items[1];
|
|
|
|
inline StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E** 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, StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleComplexSelector[]
|
|
struct StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* m_Items[1];
|
|
|
|
inline StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD** 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, StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSheet/ImportStruct[]
|
|
struct ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1 m_Items[1];
|
|
|
|
inline ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1* 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, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___styleSheet_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mediaQueries_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___styleSheet_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mediaQueries_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleProperty[]
|
|
struct StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* m_Items[1];
|
|
|
|
inline StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83** 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, StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSheets.Dimension[]
|
|
struct DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 m_Items[1];
|
|
|
|
inline Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* 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, Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Single[]
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) float m_Items[1];
|
|
|
|
inline float GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline float* 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, float value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline float GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.Color[]
|
|
struct ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Color_tD001788D726C3A7F1379BEED0260B9591F440C1F m_Items[1];
|
|
|
|
inline Color_tD001788D726C3A7F1379BEED0260B9591F440C1F GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* 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, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Color_tD001788D726C3A7F1379BEED0260B9591F440C1F GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.Object[]
|
|
struct ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* m_Items[1];
|
|
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C** 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, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage[]
|
|
struct ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F m_Items[1];
|
|
|
|
inline ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F* 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, ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___normalImage_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___highResolutionImage_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___normalImage_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___highResolutionImage_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Type_t* m_Items[1];
|
|
|
|
inline Type_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo[]
|
|
struct BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 m_Items[1];
|
|
|
|
inline BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* 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, BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___src_0), (void*)NULL);
|
|
}
|
|
inline BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___src_0), (void*)NULL);
|
|
}
|
|
};
|
|
// Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType[]
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_pinvoke(const FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C& unmarshaled, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_pinvoke_back(const FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke& marshaled, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C& unmarshaled);
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_pinvoke_cleanup(FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_com(const FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C& unmarshaled, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_com_back(const FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com& marshaled, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C& unmarshaled);
|
|
IL2CPP_EXTERN_C void FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshal_com_cleanup(FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_pinvoke(const Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82& unmarshaled, Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_pinvoke_back(const Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke& marshaled, Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82& unmarshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_pinvoke_cleanup(Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_com(const Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82& unmarshaled, Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_com_back(const Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com& marshaled, Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82& unmarshaled);
|
|
IL2CPP_EXTERN_C void Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshal_com_cleanup(Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke(const Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7& unmarshaled, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke_back(const Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke& marshaled, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7& unmarshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke_cleanup(Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke(const Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7& unmarshaled, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke_back(const Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke& marshaled, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7& unmarshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke_cleanup(Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke(const Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E& unmarshaled, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke_back(const Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke& marshaled, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E& unmarshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke_cleanup(Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com(const Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7& unmarshaled, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com_back(const Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com& marshaled, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7& unmarshaled);
|
|
IL2CPP_EXTERN_C void Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com_cleanup(Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com(const Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7& unmarshaled, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com_back(const Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com& marshaled, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7& unmarshaled);
|
|
IL2CPP_EXTERN_C void Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com_cleanup(Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com(const Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E& unmarshaled, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com_back(const Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com& marshaled, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E& unmarshaled);
|
|
IL2CPP_EXTERN_C void Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com_cleanup(Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_pinvoke(const Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8& unmarshaled, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_pinvoke_back(const Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke& marshaled, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8& unmarshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_pinvoke_cleanup(Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_com(const Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8& unmarshaled, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_com_back(const Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com& marshaled, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8& unmarshaled);
|
|
IL2CPP_EXTERN_C void Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshal_com_cleanup(Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_marshaled_com& marshaled);
|
|
|
|
// System.Int32 System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_GetEnumerator_m8B2A92ACD4FBA5FBDC3F6F4F5C23A0DDF491DA61_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFE1EBE6F6425283FEAEAE7C79D02CDE4F9D367E8_gshared (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Current()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* __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.Int64 UnityEngine.UIElements.EventBase`1<System.Object>::TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared (const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, 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) ;
|
|
// 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 System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m3069CACB5775E013107F559C825422266A09F9E8_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.ObjectPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Get()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1_Get_mD8EB59674A787EA786A199C860C10A43EE894B0E_gshared (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Release(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1_Release_mAABCB33D8DC9815A187412722A4DAA7C85730C47_gshared (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_element, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectPool_1__ctor_m8C39DFD08F713B658F9F602A37D6F2784CC03BA6_gshared (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9* __this, int32_t ___0_maxSize, 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) ;
|
|
// 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.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.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.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) ;
|
|
// 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) ;
|
|
// 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.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<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mCAD00A69587F884F88C36DE7423C3C329166144E_gshared_inline (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Pop()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Pop_m8E5FF1B4CFD9ADF4D8A7C4CFF4713C83E163A34A_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Push(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m072EF82431D7D7E164213D822010141A4C00050D_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m5C333061E1285AC5B22F556173FBE157EF1A37B7_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_mF6C23E9072D8CBE2872705E7E4D08BDB78770F5C_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, 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) ;
|
|
// 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 System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m7F5DD19B4170C027D5367001F7BC95A0658A2169_gshared (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Select_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5BBCA2BC02448D0B77D2201BB08B13BAB3BABA53_gshared (RuntimeObject* ___0_source, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___1_selector, const RuntimeMethod* method) ;
|
|
// TSource[] System.Linq.Enumerable::ToArray<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* Enumerable_ToArray_TisIl2CppFullySharedGenericAny_mE1571336F171A560849F9D7CB38E3A9A4B43B1C6_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7745B6ED71E47C95E1BFCE647C4F026A404C668F_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m4C6841170DD11AED683D2D71919F362A4CFF4A80_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_key, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_key, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m244D396B16E7F73DE815F4FFA6F35DD89B6ED7CB_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny* ___3_value, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::BinarySearch(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_BinarySearch_m1A34A59B839C5FC7331DAA3F10BFCC8230174B15_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Insert(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mB8862677E04375531A30F3EC07AC2372FCE61F55_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_m7853EC4DED588552A96316078B84CEC9208D84FD_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Peek()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Peek_m4B2292270D894BE7419111BEF9727F6FE56CE9FE_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Contains(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Stack_1_Contains_m7C570B2DD3589F6E3E678A388A4DBD81F167AA53_gshared (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_mC73A4FCEBBAB90CB7B7AB16321F3F98FBBF12596_gshared (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m8E9B7F6EE50FEF26FF7537F554B4F5E434F70550_gshared (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m685A441EC9FAC9D554B26FA83A08F4BEF96DFF0E_gshared (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared (EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6* __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 System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Invoke(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_obj, const RuntimeMethod* method) ;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1<System.Object>::get_modifiers()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MouseEventBase_1_get_modifiers_mC7C50707BF8551EC3595251AB7ED97523D8BABDD_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.UQueryExtensions::Q<System.Object>(UnityEngine.UIElements.VisualElement,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UQueryExtensions_Q_TisRuntimeObject_mE41C425481646FE357E4650A7CB20F7C3F2CCA40_gshared (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_e, String_t* ___1_name, String_t* ___2_className, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_mDEE8470968EF687DF9B40AE07DE41E0B09652532_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Remove(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Remove_mE12E434B402CFEB49197444DE1D52A3AE4C7F6EE_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m73E14DB94D21272EEE1E28E4D74704B0095D8064_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* Enumerable_ToList_TisIl2CppFullySharedGenericAny_m191EA129E511F9B8304FF8826A2DA645E06CCBF0_gshared (RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleEnum`1<T> UnityEngine.UIElements.StyleEnum`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>::op_Implicit(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleEnum_1_op_Implicit_m7A7112971764E232021D2ACB3A66B7F785AF604A_gshared (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct ___0_v, StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.INotifyValueChangedExtensions::RegisterValueChangedCallback<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(UnityEngine.UIElements.INotifyValueChanged`1<T>,UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<T>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool INotifyValueChangedExtensions_RegisterValueChangedCallback_TisIl2CppFullySharedGenericAny_m50E49B3920DDDB55FB3A9A3E3A3C28B944F17A83_gshared (RuntimeObject* ___0_control, EventCallback_1_t424C96066075D21342F190671F3D0ED8AB5900D6* ___1_callback, const RuntimeMethod* method) ;
|
|
// TResult System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Invoke()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Func_1_Invoke_m35CBC166F464B8A1169583672025E6D64211856C_gshared_inline (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Invoke(T1,T2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m6343941059117DF354182855F996EB3D08B4C06C_gshared_inline (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_arg1, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_arg2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Contains(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m8DA550B703DFB328B69C4712064C667D7CA33DF1_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Remove(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m9BCE8CEF94E6F2BF8624D65214FF4F3CA686D60C_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::RemoveRange(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_mCD6121D4FDE143767E6F0EC89183A9A349884DFF_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_m729639E2C8D1AA7579AC78D259085921E7DC72F2_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_newValue()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ChangeEvent_1_get_newValue_m83811A7602CB9AC9F15F7638C6BF3CE866A941ED_gshared_inline (/*UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::AreNotEqual<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreNotEqual_TisIl2CppFullySharedGenericAny_m000BF3EA317E9EB46381CA5C726034B1C43B2A2D_gshared (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_expected, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_actual, const RuntimeMethod* method) ;
|
|
// 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.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::set_defaultValue(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlEnumAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlEnumAttributeDescription_1__ctor_m05023FEEE6ED13E0CD950E9C3E1B6371A28EC3D3_gshared (/*UnityEngine.UIElements.UxmlEnumAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>*/UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334* __this, 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 System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m935B3F117860376DC854C9E0C80CBD99BE77EEA4_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Add(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m54D479280472DEA042DB3933AF547E666B017333_gshared (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_key, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Contains(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_m6D40586EE21316C2647D81169AFFF9B4C7719F74_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_Clear_mCD863950F0D273BF34801FDD92CBEC230ECD5A6D_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::IsNotNull<System.Object>(T,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_IsNotNull_TisRuntimeObject_m7433F6940A7F720450FC31AEAD38A811EC2FAB32_gshared (RuntimeObject* ___0_value, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
// TResult System.Func`2<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Invoke(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Func_2_Invoke_m31CAC166FDC80DC5AE52A5AEFFEE2D9B27A1CA3F_gshared_inline (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_arg, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Linq.Enumerable::Contains<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisIl2CppFullySharedGenericAny_m40E4F8989539AFEF3812EAC9D9AD165D258D5814_gshared (RuntimeObject* ___0_source, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method) ;
|
|
// TCollection UnityEngine.Pool.CollectionPool`2<System.Object,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Get()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionPool_2_Get_m14408D5B2084E1CBD3E324BAA11BD45C98DC3AC9_gshared (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Pool.CollectionPool`2<System.Object,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Release(TCollection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionPool_2_Release_m43040C099A6A3B930B9ADFFBAE8AA240B0B7DDC1_gshared (RuntimeObject* ___0_toRelease, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Sort()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m3B418BED64218204CAA69CD89BAA05CC12EB5EE6_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* 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) ;
|
|
// 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.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) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// 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.Boolean UnityEngine.UIElements.EventBase::get_tricklesDown()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_tricklesDown_m8AA6FDD44359CE2C3BF327D510B49E6C48D5CFF3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, 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.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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, 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) ;
|
|
// 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)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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.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)
|
|
{
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))List_1_GetEnumerator_m8B2A92ACD4FBA5FBDC3F6F4F5C23A0DDF491DA61_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_Dispose_mFE1EBE6F6425283FEAEAE7C79D02CDE4F9D367E8_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__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)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* il2cppRetVal;
|
|
(( void (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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.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_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, 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.Boolean UnityEngine.UIElements.EventBase::get_bubbles()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_bubbles_mE2783C986742080BD0744DAF34D367B72F85FFAE (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* 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) ;
|
|
// 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.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.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) ;
|
|
// UnityEngine.EventType UnityEngine.Event::get_rawType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::Assert(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D (bool ___0_condition, 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.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 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) ;
|
|
// 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.Boolean UnityEngine.UIElements.EventBase::get_isDefaultPrevented()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isDefaultPrevented_m6CD96BAC5EADA87095BB34C7EBE46ACBA75ABDB2 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, 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.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) ;
|
|
// 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) ;
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* 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.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.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.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.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.MouseEventDispatchingStrategy::IsDone(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseEventDispatchingStrategy_IsDone_mA1ECE68F27613C2E71607AC809D25862526065EF (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* 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.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.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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, 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.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) ;
|
|
// 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) ;
|
|
// 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.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.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) ;
|
|
// 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 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))List_1__ctor_m3069CACB5775E013107F559C825422266A09F9E8_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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)
|
|
{
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* il2cppRetVal;
|
|
(( void (*) (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ObjectPool_1_Get_mD8EB59674A787EA786A199C860C10A43EE894B0E_gshared)((ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))ObjectPool_1_Release_mAABCB33D8DC9815A187412722A4DAA7C85730C47_gshared)((ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*)__this, (Il2CppFullySharedGenericAny)___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_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*, int32_t, const RuntimeMethod*))ObjectPool_1__ctor_m8C39DFD08F713B658F9F602A37D6F2784CC03BA6_gshared)((ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*)__this, ___0_maxSize, 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.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.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.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) ;
|
|
// 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);
|
|
}
|
|
// 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.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.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.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.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.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.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.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.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.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.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);
|
|
}
|
|
// 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) ;
|
|
// 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.Focusable UnityEngine.UIElements.FocusController::GetLeafFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, 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);
|
|
}
|
|
// 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.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) ;
|
|
// 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.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_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1_get_Count_mCAD00A69587F884F88C36DE7423C3C329166144E_gshared_inline)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__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)
|
|
{
|
|
EventCallbackList_tC6B518C9C5192317B413145F9B9A3678EEE5BF1E* il2cppRetVal;
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Stack_1_Pop_m8E5FF1B4CFD9ADF4D8A7C4CFF4713C83E163A34A_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Stack_1_Push_m072EF82431D7D7E164213D822010141A4C00050D_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny)___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_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1__ctor_m5C333061E1285AC5B22F556173FBE157EF1A37B7_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___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)
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))List_1_RemoveAt_mF6C23E9072D8CBE2872705E7E4D08BDB78770F5C_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___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)
|
|
{
|
|
Enumerator_tE28779F6A8C7593437849A28F0685BBE8F78A665 il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))List_1_GetEnumerator_m8B2A92ACD4FBA5FBDC3F6F4F5C23A0DDF491DA61_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_Dispose_mFE1EBE6F6425283FEAEAE7C79D02CDE4F9D367E8_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__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)
|
|
{
|
|
EventCallbackFunctorBase_tEFE8404D9A89369B0A322FA7743CDA068A0BB568* il2cppRetVal;
|
|
(( void (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__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) ;
|
|
// 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) ;
|
|
// 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);
|
|
}
|
|
// 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) ;
|
|
// 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);
|
|
}
|
|
// 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);
|
|
}
|
|
// 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) ;
|
|
// System.Void System.Func`2<UnityEngine.UIElements.StyleSelectorPart,System.String>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_2__ctor_mD22DA99E85DF454DC942A66F0AB39FB796A7428C (Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F5DD19B4170C027D5367001F7BC95A0658A2169_gshared)((Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<TResult> System.Linq.Enumerable::Select<UnityEngine.UIElements.StyleSelectorPart,System.String>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TResult>)
|
|
inline RuntimeObject* Enumerable_Select_TisStyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_TisString_t_mEDFF65C0AFD98860FCC02DAD70AB5CAEADC0FAC7 (RuntimeObject* ___0_source, Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* ___1_selector, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* il2cppRetVal = (( RuntimeObject* (*) (RuntimeObject*, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, const RuntimeMethod*))Enumerable_Select_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5BBCA2BC02448D0B77D2201BB08B13BAB3BABA53_gshared)((RuntimeObject*)___0_source, (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)___1_selector, method);
|
|
return (RuntimeObject*)il2cppRetVal;
|
|
}
|
|
// 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)
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* il2cppRetVal = (( __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToArray_TisIl2CppFullySharedGenericAny_mE1571336F171A560849F9D7CB38E3A9A4B43B1C6_gshared)((RuntimeObject*)___0_source, method);
|
|
return (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)il2cppRetVal;
|
|
}
|
|
// 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.Void UnityEngine.UIElements.StyleSelector/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE85524E8229C6FF445591B04165E06152546EC91 (U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.StyleSelectorPart::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSelectorPart_ToString_m894031E7CAE358204F8D1C334B76DD44A6775BB8 (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, 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_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, const RuntimeMethod*))Dictionary_2__ctor_m7745B6ED71E47C95E1BFCE647C4F026A404C668F_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__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_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Dictionary_2_set_Item_m4C6841170DD11AED683D2D71919F362A4CFF4A80_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny)&___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.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_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny*)___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_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F5DD19B4170C027D5367001F7BC95A0658A2169_gshared)((Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)__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)
|
|
{
|
|
RuntimeObject* il2cppRetVal = (( RuntimeObject* (*) (RuntimeObject*, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, const RuntimeMethod*))Enumerable_Select_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5BBCA2BC02448D0B77D2201BB08B13BAB3BABA53_gshared)((RuntimeObject*)___0_source, (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)___1_selector, method);
|
|
return (RuntimeObject*)il2cppRetVal;
|
|
}
|
|
// 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.Void UnityEngine.UIElements.StyleComplexSelector/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m81F077066F40A8A008276E89847ECC84A0514518 (U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleSheet::SetupReferences()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_SetupReferences_mF726C5C6749C44200AD2605E9BED7941A7E1DC40 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.StyleSheet::get_flattenedRecursiveImports()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* StyleSheet_get_flattenedRecursiveImports_mC825D7A330024BB307CC6E94320213E11F7B7DFE (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>::GetEnumerator()
|
|
inline Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484 List_1_GetEnumerator_mE8313336244D14561C5ADA76ECF119365C5F10FB (List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484 il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))List_1_GetEnumerator_m8B2A92ACD4FBA5FBDC3F6F4F5C23A0DDF491DA61_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSheet>::Dispose()
|
|
inline void Enumerator_Dispose_mB934AD2F9937B5874A11C644C941A77277693D36 (Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_Dispose_mFE1EBE6F6425283FEAEAE7C79D02CDE4F9D367E8_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSheet>::get_Current()
|
|
inline StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* Enumerator_get_Current_mB01CAB67AAFD4D1DBD35911A2AA6C3442801D332_inline (Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* il2cppRetVal;
|
|
(( void (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_isDefaultStyleSheet(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_isDefaultStyleSheet_mF3452A31475F8C3788BC850A151AE9C7B022C7C6 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StyleSheet>::MoveNext()
|
|
inline bool Enumerator_MoveNext_mE4B1DA9E18413CDCF7F24EF487770F803566B16A (Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>::.ctor()
|
|
inline void List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B (List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::FlattenImportedStyleSheetsRecursive(UnityEngine.UIElements.StyleSheet)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_FlattenImportedStyleSheetsRecursive_m7584BB3379257F755E8118280BE67FC14CF77516 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, 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) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::get_isDefaultStyleSheet()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_get_isDefaultStyleSheet_mA799A9F4E8F16671ACDF273673897EEF6B971DCF (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>::Add(T)
|
|
inline void List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_inline (List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* __this, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// UnityEngine.UIElements.StyleComplexSelector[] UnityEngine.UIElements.StyleSheet::get_complexSelectors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleRule[] UnityEngine.UIElements.StyleSheet::get_rules()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleProperty[] UnityEngine.UIElements.StyleRule::get_properties()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* StyleRule_get_properties_m0918E976C1000BC02985AFFE48919B5B7F45E6BC (StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.StyleProperty::get_name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleProperty_get_name_mB093E71395D32578890C11C6CED189B06F495015 (StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::CustomStartsWith(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_CustomStartsWith_mF97D883AB85421A239A8E6F1D54E9C3237F8C349 (String_t* ___0_originalString, String_t* ___1_pattern, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleProperty::get_values()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* StyleProperty_get_values_mC1D996097014576222150D2F84685850FF4CEE2B (StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheets.StyleSheetExtensions::IsVarFunction(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheetExtensions_IsVarFunction_mC992EF8AACF37ACA03E6564DCF595276B0B49E89 (StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::CachePseudoStateMasks()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleComplexSelector_CachePseudoStateMasks_m67F9A45E8E150C5152DA810E446FE94CCD85DDC1 (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, const RuntimeMethod* method) ;
|
|
// System.StringComparer System.StringComparer::get_Ordinal()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_Ordinal_m77A8C28E78759556E06A6925E949737A45599E26_inline (const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
|
|
inline void Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115 (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m244D396B16E7F73DE815F4FFA6F35DD89B6ED7CB_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (RuntimeObject*)___0_comparer, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector::set_rule(UnityEngine.UIElements.StyleRule)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void StyleComplexSelector_set_rule_mE207BC9F10AF99952A9D149A0982E98B999F98D1_inline (StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* __this, StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* ___0_value, 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.Boolean System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m66B2DAB3FD9D00B7968907AE37116ACE44A0508F (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* __this, String_t* ___0_key, StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny*)___1_value, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.StyleComplexSelector>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_m1B1147E192920AA737BB7BA42906DAFF28053E68 (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* __this, String_t* ___0_key, StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Dictionary_2_set_Item_m4C6841170DD11AED683D2D71919F362A4CFF4A80_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)___0_key, (Il2CppFullySharedGenericAny)___1_value, method);
|
|
}
|
|
// UnityEngine.UIElements.StyleValueType UnityEngine.UIElements.StyleValueHandle::get_valueType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9 (StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<UnityEngine.UIElements.StyleSheets.Dimension>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422 (DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<System.Single>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline float StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
float il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<System.Single>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
inline bool StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, float* ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)___3_value, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<UnityEngine.UIElements.StyleSheets.Dimension>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
inline bool StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4 (DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)___3_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheets.Dimension::.ctor(System.Single,UnityEngine.UIElements.StyleSheets.Dimension/Unit)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dimension__ctor_mAFC8E14DD2BD62F0D0C3FBB508460AC77B7FD082 (Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* __this, float ___0_value, int32_t ___1_unit, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<UnityEngine.Color>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline Color_tD001788D726C3A7F1379BEED0260B9591F440C1F StyleSheet_CheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE7B6BBAB85E97D0515E5CB66187B7739F212B8EA (ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<UnityEngine.Color>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
inline bool StyleSheet_TryCheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m9263AEE145ED330DD7C6B42A0C9364BD3DA985D0 (ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)___3_value, method);
|
|
}
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<System.String>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline String_t* StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855 (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
String_t* il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<System.String>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
inline bool StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, String_t** ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)___3_value, method);
|
|
}
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<UnityEngine.Object>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* StyleSheet_CheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_m8B81FC876E83BF5262CC7EC3B100A34B5F2E9C95 (ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryCheckAccess<UnityEngine.Object>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle,T&)
|
|
inline bool StyleSheet_TryCheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_mFFB0D1A6D60B98AC0BBC5CA36A7E035DDF33EBFE (ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C** ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_TryCheckAccess_TisIl2CppFullySharedGenericAny_m5DD0A68A50BC2755CD75F8326B5D0B171EF37887_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)___3_value, method);
|
|
}
|
|
// System.String System.String::Format(System.String,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogErrorFormat(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogErrorFormat_m96690322C941D23A125E5769C9803606859A707C (String_t* ___0_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.StyleValueFunctionExtension::ToUssString(UnityEngine.UIElements.StyleValueFunction)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueFunctionExtension_ToUssString_mEA908E13522D1848C3530DAC54A7B02C6F13177C (int32_t ___0_svf, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.StyleSheet::CheckAccess<UnityEngine.UIElements.StyleSheets.ScalableImage>(T[],UnityEngine.UIElements.StyleValueType,UnityEngine.UIElements.StyleValueHandle)
|
|
inline ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F StyleSheet_CheckAccess_TisScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_m9588FA67E7A0E35C8F8A011AEA44E7424D5AF181 (ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52* ___0_list, int32_t ___1_type, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___2_handle, const RuntimeMethod* method)
|
|
{
|
|
ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F il2cppRetVal;
|
|
(( void (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StyleSheet_CheckAccess_TisIl2CppFullySharedGenericAny_mBA423371D04B57AD1720BC6580B109722EF7085F_gshared)((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)___0_list, ___1_type, ___2_handle, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.ScriptableObject::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF (ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, RuntimeObject* ___1_actualValue, String_t* ___2_message, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleSelectorPart::set_type(UnityEngine.UIElements.StyleSelectorType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSelectorPart_set_type_mDBA92CF5DF4FB4A806978A0D916300EDE6CA144E (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityString_Format_m98A0629641086A1BE20BBF7F4EADDE3FE3877D85 (String_t* ___0_fmt, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleVariable::.ctor(System.String,UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariable__ctor_m139006F9D55C2648AA15252352A707F740F56FF1 (StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* __this, String_t* ___0_name, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___1_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___2_handles, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.StyleVariable::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129 (StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::BinarySearch(T)
|
|
inline int32_t List_1_BinarySearch_mE81A25C14E61997621A470D09BB4BAE1F8CF98F2 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_BinarySearch_m1A34A59B839C5FC7331DAA3F10BFCC8230174B15_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Insert(System.Int32,T)
|
|
inline void List_1_Insert_mC1B6D4E6CC94D8BA82A60B2F80CE9684D9345AAE (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, int32_t ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Insert_mB8862677E04375531A30F3EC07AC2372FCE61F55_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny)&___1_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::Add(T)
|
|
inline void List_1_Add_mB41E8724CA0DDBEBD2EA8379D51E13F23F49176E_inline (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::get_Count()
|
|
inline int32_t List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m3FAF7B4CABAC116EF9E3084CD51B79BC9BF921EA (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m1A10E697703D67F6551D47C603FFE78E16CE4204 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::Clear()
|
|
inline void List_1_Clear_m00AFA4A0337BBF3DC699C14107B3594CA904E971_inline (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::.ctor()
|
|
inline void List_1__ctor_m0C25EDC3BBFEAFC872D99F3EFF19813AA75D02C6 (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_mE716C60A18D9455EF0C58216ECCE11441F8EA90B (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_mCC0E71080DE343C1A527526A1AC2DBEC355CEA6C (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.StyleVariable>::get_Item(System.Int32)
|
|
inline StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853 (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean System.String::op_Equality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext__ctor_mFECB2428A5FAEA2A6D361D51ADB2292965F0908E (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>::Clear()
|
|
inline void List_1_Clear_m51A5D7D883AF79511066B64E4CBC23C3DB6CCF54_inline (List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>::Clear()
|
|
inline void Stack_1_Clear_mA8BCDF8A5DC47FB9DC9967E8423955DD37F0F190 (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1_Clear_m7853EC4DED588552A96316078B84CEC9208D84FD_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::PushContext(UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_PushContext_m905420AD7B5F9CA63EA3A99F48A6A8C4CFFBF1BB (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___1_handles, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>::Push(T)
|
|
inline void Stack_1_Push_m20B8F6926877157FC7CA556376F45B0FB4BB779A (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* __this, ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Stack_1_Push_m072EF82431D7D7E164213D822010141A4C00050D_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// T System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>::Pop()
|
|
inline ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 Stack_1_Pop_m65349BF61582D9D047A8D6F160A750AF79C6957D (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* __this, const RuntimeMethod* method)
|
|
{
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 il2cppRetVal;
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Stack_1_Pop_m8E5FF1B4CFD9ADF4D8A7C4CFF4713C83E163A34A_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// T System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>::Peek()
|
|
inline ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 Stack_1_Peek_m011BD98974FC916CFDA7912EAC8C9D363A0F8928 (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* __this, const RuntimeMethod* method)
|
|
{
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 il2cppRetVal;
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Stack_1_Peek_m4B2292270D894BE7419111BEF9727F6FE56CE9FE_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleVariableResolver::get_currentSheet()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>::Add(T)
|
|
inline void List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_inline (List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* __this, StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<System.String>::Clear()
|
|
inline void Stack_1_Clear_mB5DD9A67516D41D7A82FD1B0ABFA38AAA8593C0E (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1_Clear_m7853EC4DED588552A96316078B84CEC9208D84FD_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleVariableResolver::get_currentHandles()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::ParseVarFunction(UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[],System.Int32&,System.Int32&,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_ParseVarFunction_mD4A13A63F7D98DA760604D611B9DDABDFAD682BA (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___1_handles, int32_t* ___2_index, int32_t* ___3_argCount, String_t** ___4_variableName, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveVarFunction(System.Int32&,System.Int32,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveVarFunction_mB000A4AA0547EB3E6B7C0D5B1F20E7CACDB89622 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, int32_t* ___0_index, int32_t ___1_argc, String_t* ___2_varName, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveVariable(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveVariable_mA9A45E2DF3F9A4707C5D440B4C8BCA1BEADF76D6 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, String_t* ___0_variableName, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveFallback(System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveFallback_mB9AAE3A0B198D66083E92DAEB3A5A575F3927457 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, int32_t* ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheets.StylePropertyCache::TryGetSyntax(System.String,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyCache_TryGetSyntax_mC0BC9AEE43ACCB89541554339EB12EC2D09A4F77 (String_t* ___0_name, String_t** ___1_syntax, 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.Debug::LogAssertion(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogAssertion_m71A412A496EAB476FFF6253618C706B2F1E4AFF0 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleSheets.Syntax.Expression UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::Parse(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6* StyleSyntaxParser_Parse_mA1B3223B21B613631673FB591DC1AC15AC19DD59 (StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263* __this, String_t* ___0_syntax, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleSheets.MatchResult UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher::Match(UnityEngine.UIElements.StyleSheets.Syntax.Expression,System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A StylePropertyValueMatcher_Match_m9200D93F5E6516142F71A23B2BA83AA98409FC1D (StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248* __this, Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6* ___0_exp, List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* ___1_values, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleSheets.MatchResult::get_success()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchResult_get_success_mDCB87B0AB8A1E77378EAE079EC6DC9BF8C87347A (MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.StyleVariableResolver::get_variableContext()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* StyleVariableResolver_get_variableContext_m3775C7C5A8A41C7B3BDB487587A6A333C15606E4_inline (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StyleVariableContext::TryFindVariable(System.String,UnityEngine.UIElements.StyleVariable&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleVariableContext_TryFindVariable_m67DE560D44BE35AB5D4AA315C2C3208E9E736E8E (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, String_t* ___0_name, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* ___1_v, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Stack`1<System.String>::Contains(T)
|
|
inline bool Stack_1_Contains_m2295EAFF1463FC139CCF3E975EC2B7000B18CE7A (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* __this, String_t* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Stack_1_Contains_m7C570B2DD3589F6E3E678A388A4DBD81F167AA53_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<System.String>::Push(T)
|
|
inline void Stack_1_Push_m6735A1D45311268768814737E1F1884B3615CA20 (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* __this, String_t* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Stack_1_Push_m072EF82431D7D7E164213D822010141A4C00050D_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>::get_Count()
|
|
inline int32_t List_1_get_Count_mFCF2B2ECBAC0430A3776BA1C3AE0B4B59733CB85_inline (List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::PopContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_PopContext_m86C19BEEF9C65B4BF0B328F93B17EF690CD0180A (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.Stack`1<System.String>::Pop()
|
|
inline String_t* Stack_1_Pop_mFE7E2A46CC49662C0B06E3F80D39FA8986EE690D (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* il2cppRetVal;
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Stack_1_Pop_m8E5FF1B4CFD9ADF4D8A7C4CFF4713C83E163A34A_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Single UnityEngine.UIElements.StyleSheet::ReadFloat(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StyleSheet_ReadFloat_m851DC327CFD6A2D3115007D0898DADF20588FC41 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadVariable(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadVariable_m5DF0761434CC3AABB1F75CFB6ECACDC638373F14 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleSheets.StylePropertyValueMatcher::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyValueMatcher__ctor_mF7898D0C87D9285AA99E046209BF4A8F19E4940B (StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue>::.ctor()
|
|
inline void List_1__ctor_m5DEA6A9EF0E521472F19D3A747780F7274B36F04 (List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<System.String>::.ctor()
|
|
inline void Stack_1__ctor_m335E848ED0B875E3163CBDF6F077EF89DE99D59E (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1__ctor_m5C333061E1285AC5B22F556173FBE157EF1A37B7_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.StyleVariableResolver/ResolveContext>::.ctor()
|
|
inline void Stack_1__ctor_mC5657DF3C282DA5CDD0BBD6368F49EC16FDC47CB (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1__ctor_m5C333061E1285AC5B22F556173FBE157EF1A37B7_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheets.Syntax.StyleSyntaxParser::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSyntaxParser__ctor_m1FD9FDD76886E8C0E3FD388FB22A786B579D1971 (StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleSheet::OnEnable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_OnEnable_m7BF2712DBEB0B4E827B69EBF6EAF81DEE390F98A (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleSheet::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet__ctor_m1AA637A96DFEE2522AEC2BC1962E7B02D690C1BA (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StyleValueHandle::set_valueType(UnityEngine.UIElements.StyleValueType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleValueHandle_set_valueType_m19D5FCB629ECFB1A46688D27F0E06505A38D2CA3 (StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.InheritedData UnityEngine.UIElements.InheritedData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 InheritedData_Copy_m0EABC6E355A3778EBE1EBBC888F0A33D4A3CC12E (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InheritedData::CopyFrom(UnityEngine.UIElements.InheritedData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritedData_CopyFrom_m39AB40A6947A53FBEEC936E1BC2465993D8E5461 (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Color::op_Equality(UnityEngine.Color,UnityEngine.Color)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Length::op_Equality(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3 (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_lhs, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextShadow::op_Equality(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_op_Equality_m7B840C994A00FDC98F55FAD2BBB395447A29792A (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_style1, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_style2, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FontDefinition::op_Equality(UnityEngine.UIElements.FontDefinition,UnityEngine.UIElements.FontDefinition)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FontDefinition_op_Equality_m12CB2472CEB30AB267FCEB0FD758ACF331CB2930 (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___0_left, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___1_right, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::op_Equality(UnityEngine.UIElements.InheritedData,UnityEngine.UIElements.InheritedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_op_Equality_mB40583E4A30EC8D5EF57DC89690B2026A1E69CBE (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___0_lhs, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::Equals(UnityEngine.UIElements.InheritedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_Equals_m2303E9AFBB261F8EAC84A22E1847EEF57601563D (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_Equals_m55D9E33D7C8FE6B15B9C9788540026AFD9E82D9E (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Color::GetHashCode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Length::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33 (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TextShadow::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.FontDefinition::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FontDefinition_GetHashCode_mAE455799B250E80471E797D4497B1DB9B715D8F6 (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Single::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2 (float* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.InheritedData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritedData_GetHashCode_m50716E1D6CB590CB4024244B02360ECD30BC3244 (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.LayoutData UnityEngine.UIElements.LayoutData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 LayoutData_Copy_m43CB8791B4A3BEDD9E8184D6E868008688E9EC31 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.LayoutData::CopyFrom(UnityEngine.UIElements.LayoutData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutData_CopyFrom_m34EED1AA355708FEFEBA572584B314F5F1F02FDE (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::op_Equality(UnityEngine.UIElements.LayoutData,UnityEngine.UIElements.LayoutData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_op_Equality_mD276612460EDC6222A8A7278215CFBE3B595F9B4 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___0_lhs, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::Equals(UnityEngine.UIElements.LayoutData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_Equals_m1CB214831A92A7B5946B2C1A0B9EDC291B8A3F16 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_Equals_m17F0A8E1B74F777F6C075F47C199A3576F6AEEB9 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.LayoutData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayoutData_GetHashCode_m316500D290BE2DB9EC94AB1F9D1CCBC16C9FA9D8 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.RareData UnityEngine.UIElements.RareData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 RareData_Copy_m704FCCC82A27DD5034CFB2E88E94D1C27582E29E (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.RareData::CopyFrom(UnityEngine.UIElements.RareData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RareData_CopyFrom_m51E068167FABCD68FDCF134993FDD2810EF4AAC4 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Cursor::op_Equality(UnityEngine.UIElements.Cursor,UnityEngine.UIElements.Cursor)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Cursor_op_Equality_m9796DE28D214A3B7371A36CF753F9D59FB508DF4 (Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 ___0_style1, Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 ___1_style2, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.RareData::op_Equality(UnityEngine.UIElements.RareData,UnityEngine.UIElements.RareData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_op_Equality_m9E1D93A50125C3603B714C4F00F173509C87DE28 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___0_lhs, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.RareData::Equals(UnityEngine.UIElements.RareData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_Equals_m90BFF382BCC28B8DBBD529A087A3C7C9A3FCF229 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.RareData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_Equals_m1FDADD8434EC378278BA443CCEF66FF714F789F2 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Cursor::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Cursor_GetHashCode_mC6C773C4969C45189BBD9A11F8EB7ACC17F5745B (Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.RareData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RareData_GetHashCode_m4D59FF7E8EDAC75140675A614305C95C692FB659 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TransformData UnityEngine.UIElements.TransformData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 TransformData_Copy_m1C72DA746E9EDA30EF3A0B6B582ADE0D1F1CC1E1 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TransformData::CopyFrom(UnityEngine.UIElements.TransformData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformData_CopyFrom_mE61FA7D18331DDF93C862DD92E48A661B41DFA72 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Rotate::op_Equality(UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rotate_op_Equality_m17193DD52205405DE23ADA71B1E19AFF8A4364AD (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___0_lhs, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Scale::op_Equality(UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Scale_op_Equality_mCF310871A942D356F82D2A2F4E23B5BC3C248F65 (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___0_lhs, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransformOrigin::op_Equality(UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformOrigin_op_Equality_mD0114AF86353C451148D3E0EB2287FE3BCD87B1D (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___0_lhs, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Translate::op_Equality(UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Translate_op_Equality_m320CFAF67C0BEF258338E5529C9E5921A3C822F1 (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___0_lhs, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransformData::op_Equality(UnityEngine.UIElements.TransformData,UnityEngine.UIElements.TransformData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_op_Equality_mC05A93308EAD030871F5FF7C06A92A7EB486287A (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___0_lhs, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransformData::Equals(UnityEngine.UIElements.TransformData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_Equals_m35B6DAE3446E9D7B7F550BE551DEBEF0466A0E40 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransformData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_Equals_m6E9AA5D46B377F962FB2A7FB0F141E317C9C46AA (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Rotate::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Rotate_GetHashCode_mB52BF9E6E8AE32B9B7F2AF8B57B6938A714A949E (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Scale::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scale_GetHashCode_m1B766BD8284D4E093BD69BE58D0F6B886AC29B30 (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TransformOrigin::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransformOrigin_GetHashCode_mCA4900A38F79C225517D2F7196BC7E25DEF54F24 (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Translate::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Translate_GetHashCode_m6154995C5157AC77ED6F1EFC5C1FD60EF0B3CA1C (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TransformData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransformData_GetHashCode_m2C32917E8F3D81762F0C320B0C4D3AAC94FDAA80 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C (List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m3A1D78F766364DE1EABDE6A34F5E55E1B50096E0 (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m4B55D26AC4826CFF1DE9D6B3BFA517E7AEECF9D8 (List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mACCB7726C2E9728AE336F99C68B334459F9F30FB_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// UnityEngine.UIElements.TransitionData UnityEngine.UIElements.TransitionData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 TransitionData_Copy_m6AECD90470D754363F0DCB00918CB167788DC51B (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>::Clear()
|
|
inline void List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_inline (List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TimeValue>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB (List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>::Clear()
|
|
inline void List_1_Clear_m02854A6986DEFDEC2E4B791FD155C5D7FCBB8842_inline (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyName>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_mC10AB6995B62FFCB7480E88ADA61465B0644FC36 (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>::Clear()
|
|
inline void List_1_Clear_m65AF27AF349D5AD5EB39FAA6836FA296600DA6FA_inline (List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.EasingFunction>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_mFC68F05E4252312CF997EF77D05B91BEEB8CC00A (List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m44DED39FFEBC8F2ACF6162DB065B649E888B9C57_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransitionData::CopyFrom(UnityEngine.UIElements.TransitionData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionData_CopyFrom_m9EDC4E24EC85926EB5C4C645F7B5D5126E1B5C19 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::op_Equality(UnityEngine.UIElements.TransitionData,UnityEngine.UIElements.TransitionData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_op_Equality_m655A0E6E46ACAE2E35990D819DA96A6EE1EE834A (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___0_lhs, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::Equals(UnityEngine.UIElements.TransitionData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_Equals_m3FD210CEE421D718892EFAD77154D1658460F8E1 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_Equals_m51355384DD148C5C717BF529A50074AD2FF33D9D (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TransitionData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionData_GetHashCode_mC94D81B16F514D74260FED3EBB13F123BACE5279 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualData UnityEngine.UIElements.VisualData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B VisualData_Copy_m4672E40E37CE425C9991B5FC11EE9EEF32CD1A0F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualData::CopyFrom(UnityEngine.UIElements.VisualData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualData_CopyFrom_mBE7C373910958DF08B3C077F3C7902D9B5F71A38 (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Background::op_Equality(UnityEngine.UIElements.Background,UnityEngine.UIElements.Background)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Background_op_Equality_m8939ED12827755FD24AF8206DCFF65A4639AC51E (Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___0_lhs, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualData::op_Equality(UnityEngine.UIElements.VisualData,UnityEngine.UIElements.VisualData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_op_Equality_mF2EBF06E20B4CA0C69EE5D4E3DB1A2F62598ECBC (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___0_lhs, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualData::Equals(UnityEngine.UIElements.VisualData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_Equals_m2F0C3647F1ADDE8E87C069EDDD04890CAAEAF64F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_Equals_mFB3EFC6BFF7FC717C1EF742B4EF66C4C97DA623F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.Background::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Background_GetHashCode_m04082ADB61D83A618047D6DB649B3C34F18C47B1 (Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualData_GetHashCode_mD97AA0FE25F68DEC74E92B61C06BFE81BCEFB05B (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, const RuntimeMethod* method) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::.ctor()
|
|
inline void List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListView__ctor_m08ADD99C1C6FBD6BA8F821AAD93374C3E8F8BED6 (ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* __this, 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) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// 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/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 System.Func`1<UnityEngine.UIElements.VisualElement>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_1__ctor_mF6EF1F2D908EA8D26E877D4C5365D5777FBA75EB (Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_mC73A4FCEBBAB90CB7B7AB16321F3F98FBBF12596_gshared)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// 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) ;
|
|
// System.Void System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_2__ctor_m11D9EAD42C98B55B456FC8F13B897CFEB2549F81 (Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m8E9B7F6EE50FEF26FF7537F554B4F5E434F70550_gshared)((Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// 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) ;
|
|
// System.Void UnityEngine.UIElements.BaseVerticalCollectionView::set_unbindItem(System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_unbindItem_m70B66966E4F15F175715762AF824862980920F71_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`2<System.Int32,System.Int32>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_2__ctor_mE96A3D11B34E447E159E761DC39D520D6E7CBEA5 (Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m7F5DD19B4170C027D5367001F7BC95A0658A2169_gshared)((Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// 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) ;
|
|
// System.Void System.Action`1<System.Collections.Generic.IEnumerable`1<System.Object>>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_1__ctor_mD91234F5DBFEC63F8EC0464BC308B25212B28A26 (Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m685A441EC9FAC9D554B26FA83A08F4BEF96DFF0E_gshared)((Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// 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) ;
|
|
// 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) ;
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.BaseVerticalCollectionView::get_scrollView()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* BaseVerticalCollectionView_get_scrollView_mB4F44C6276CC57A0D8AD030F3C396650532E83CC_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.KeyDownEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m9784A8620A12F32140DB764C2DAC0CD4AE9A91CF (EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared)((EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.KeyDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m1A63B71064E62E50488869A1FEDA9E3F2F231257 (EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared)((EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.MouseUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, 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_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared)((EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*)__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.InternalTreeView::RegenerateWrappers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_RegenerateWrappers_m8A4AB7F383C53AAF8E04F695DCE78321BB4B666F (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::ListViewRefresh()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_ListViewRefresh_m8B9FFAEDD58FA4FDC6516F203417224A7C87BED0 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, 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.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.Void UnityEngine.UIElements.InternalTreeView::Rebuild()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_Rebuild_mC31E78B7039207DF1BAA12F48C0B1D02F409C109 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllItemsU3Ed__64__ctor_m0253749740A0BD91742FC88913D44801C8A01A6B (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* 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.Boolean UnityEngine.UIElements.InternalTreeView::IsExpandedByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::ExpandItemByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_ExpandItemByIndex_m88C1496C8F74A4D8497F84B0DD367711EEFB85E3 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::CollapseItemByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_CollapseItemByIndex_mD53D1FA2F0A63D8A36E67261019FBAB585F1DC3A (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, 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) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem>::.ctor()
|
|
inline void List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077 (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem>::Add(T)
|
|
inline void List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_inline (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Void System.Action`1<System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>>::Invoke(T)
|
|
inline void Action_1_Invoke_m9366513947DE9DD1457272607DE98291A6F5EC53_inline (Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline)((Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)__this, (Il2CppFullySharedGenericAny)___0_obj, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ITreeViewItem>::Clear()
|
|
inline void List_1_Clear_mC94BDA7971ECE1D983E3904F1A38903AF450EC6F_inline (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>::get_modifiers()
|
|
inline int32_t MouseEventBase_1_get_modifiers_mBCB36BF375976B2E6CE9390CECCC21E5A35934D5_inline (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83*, const RuntimeMethod*))MouseEventBase_1_get_modifiers_mC7C50707BF8551EC3595251AB7ED97523D8BABDD_gshared_inline)(__this, method);
|
|
}
|
|
// T UnityEngine.UIElements.UQueryExtensions::Q<UnityEngine.UIElements.Toggle>(UnityEngine.UIElements.VisualElement,System.String,System.String)
|
|
inline Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_e, String_t* ___1_name, String_t* ___2_className, const RuntimeMethod* method)
|
|
{
|
|
return (( Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* (*) (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, String_t*, String_t*, const RuntimeMethod*))UQueryExtensions_Q_TisRuntimeObject_mE41C425481646FE357E4650A7CB20F7C3F2CCA40_gshared)(___0_e, ___1_name, ___2_className, method);
|
|
}
|
|
// System.Object UnityEngine.UIElements.VisualElement::get_userData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_userData_mB304DD064D255F64BB5A2EBC9233E2468B79ECE4 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::get_Item(System.Int32)
|
|
inline TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.HashSet`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void HashSet_1__ctor_m3F29A5426149F521CEE6900B9A4097810124ED8E (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, RuntimeObject*, const RuntimeMethod*))HashSet_1__ctor_mDEE8470968EF687DF9B40AE07DE41E0B09652532_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, (RuntimeObject*)___0_collection, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Remove(T)
|
|
inline bool HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65 (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))HashSet_1_Remove_mE12E434B402CFEB49197444DE1D52A3AE4C7F6EE_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Add(T)
|
|
inline bool HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))HashSet_1_Add_m73E14DB94D21272EEE1E28E4D74704B0095D8064_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::GetAllItems(System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InternalTreeView_GetAllItems_m09A593DED4F268F45D9E305C17768163E17B57ED (RuntimeObject* ___0_rootItems, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
inline List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* Enumerable_ToList_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m3E9A8F467117CBA5D91E50BC524DEA85E532EAAC (RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* il2cppRetVal = (( List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_ToList_TisIl2CppFullySharedGenericAny_m191EA129E511F9B8304FF8826A2DA645E06CCBF0_gshared)((RuntimeObject*)___0_source, method);
|
|
return (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::RefreshItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_RefreshItems_m9015009DD22BB7DC0DC9834E0752F3586B1CC65A (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, 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.StyleEnum`1<T> UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>::op_Implicit(T)
|
|
inline StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD (int32_t ___0_v, const RuntimeMethod* method)
|
|
{
|
|
StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE il2cppRetVal;
|
|
(( void (*) (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct, StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*, const RuntimeMethod*))StyleEnum_1_op_Implicit_m7A7112971764E232021D2ACB3A66B7F785AF604A_gshared)((Il2CppFullySharedGenericStruct)&___0_v, (StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.Toggle::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Toggle__ctor_mE11B7E9846C56B588C2FCECD43BA701104F71676 (Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<System.Boolean>>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m2AECF13AF3DE354C723AC2C870875E894C4D96C9 (EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared)((EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.INotifyValueChangedExtensions::RegisterValueChangedCallback<System.Boolean>(UnityEngine.UIElements.INotifyValueChanged`1<T>,UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.ChangeEvent`1<T>>)
|
|
inline bool INotifyValueChangedExtensions_RegisterValueChangedCallback_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m21346157EFCB13A3F77EDC25116E4898A4C1FB90 (RuntimeObject* ___0_control, EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103* ___1_callback, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (RuntimeObject*, EventCallback_1_t424C96066075D21342F190671F3D0ED8AB5900D6*, const RuntimeMethod*))INotifyValueChangedExtensions_RegisterValueChangedCallback_TisIl2CppFullySharedGenericAny_m50E49B3920DDDB55FB3A9A3E3A3C28B944F17A83_gshared)((RuntimeObject*)___0_control, (EventCallback_1_t424C96066075D21342F190671F3D0ED8AB5900D6*)___1_callback, 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) ;
|
|
// 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) ;
|
|
// TResult System.Func`1<UnityEngine.UIElements.VisualElement>::Invoke()
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Func_1_Invoke_m073521535E43A005444DC0A7BA0082D630D54BCC_inline (Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* il2cppRetVal;
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Func_1_Invoke_m35CBC166F464B8A1169583672025E6D64211856C_gshared_inline)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::get_unbindItem()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* InternalTreeView_get_unbindItem_m8DF797282645E00D19DD2D3E1BE7AA3A7287514B_inline (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::get_Count()
|
|
inline int32_t List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_inline (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UQueryExtensions::Q(UnityEngine.UIElements.VisualElement,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* UQueryExtensions_Q_m95306617BF08AC2853EABB5299786D2095BE631E (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_e, String_t* ___1_name, String_t* ___2_className, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::ElementAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_ElementAt_m980D009F3780523D910429B71C6335B3BD8E84A7 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem>::Invoke(T1,T2)
|
|
inline void Action_2_Invoke_mC8CA1CAE64EB2ED9C28DB2B4946A15CB6AF33CEA_inline (Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_2_Invoke_m6343941059117DF354182855F996EB3D08B4C06C_gshared_inline)((Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*)__this, (Il2CppFullySharedGenericAny)___0_arg1, (Il2CppFullySharedGenericAny)___1_arg2, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_Clear_m201F95F3031691823F39BAEC5ED378C82F34AC7F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_userData(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_userData_mBE9192EE3470BC5B061DFB86B7A38C97DB816F66 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_visible(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_visible_m02861A5BE4F26942CB5EE857FF4FDB584009E9C3 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper::get_id()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6 (TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F* __this, const RuntimeMethod* 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Contains_m8DA550B703DFB328B69C4712064C667D7CA33DF1_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Remove_m9BCE8CEF94E6F2BF8624D65214FF4F3CA686D60C_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::RemoveRange(System.Int32,System.Int32)
|
|
inline void List_1_RemoveRange_m15B78CA8F6C94A17CB48014CE1B2D2DA3C8BECAD (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_mCD6121D4FDE143767E6F0EC89183A9A349884DFF_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, ___1_count, 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.InternalTreeView::CreateWrappers(System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>,System.Int32,System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_CreateWrappers_m211E98B335DCB3D4F15A041D8B16E7BA13FF6F5C (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, RuntimeObject* ___0_treeViewItems, int32_t ___1_depth, List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177** ___2_wrappers, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_InsertRange_m72CEB2CF00535CD03F0B0E21E16BE247647FBEA0 (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m729639E2C8D1AA7579AC78D259085921E7DC72F2_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (RuntimeObject*)___1_collection, 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// T UnityEngine.UIElements.ChangeEvent`1<System.Boolean>::get_newValue()
|
|
inline bool ChangeEvent_1_get_newValue_m0D62ED9449CF3368792D1D5BBC7839722E995776_inline (ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B* __this, const RuntimeMethod* method)
|
|
{
|
|
bool il2cppRetVal;
|
|
(( void (*) (/*UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ChangeEvent_1_get_newValue_m83811A7602CB9AC9F15F7638C6BF3CE866A941ED_gshared_inline)((ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.Assertions.Assert::AreNotEqual<System.Boolean>(T,T)
|
|
inline void Assert_AreNotEqual_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mC857334D41CB0182D0EBF516EDB7C88F2917AAEA (bool ___0_expected, bool ___1_actual, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Assert_AreNotEqual_TisIl2CppFullySharedGenericAny_m000BF3EA317E9EB46381CA5C726034B1C43B2A2D_gshared)((Il2CppFullySharedGenericAny)&___0_expected, (Il2CppFullySharedGenericAny)&___1_actual, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::Add(T)
|
|
inline void List_1_Add_m5A36B75E5CA8E1C05E38BEBED22E42C9085DF149_inline (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>::Clear()
|
|
inline void List_1_Clear_mACEF452653CD84830D1C884CC5AB8AC460301A92_inline (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, 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) ;
|
|
// 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 UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.InternalTreeView,UnityEngine.UIElements.InternalTreeView/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_mE5749865C77DEAF2FAE6B6BA4DAE9EEF7913F380 (UxmlFactory_2_t30BFB002F45F67A8D7068C7AAAFCA5CBAF712EA0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_t30BFB002F45F67A8D7068C7AAAFCA5CBAF712EA0*, 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.Boolean UnityEngine.UIElements.UxmlIntAttributeDescription::TryGetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UxmlIntAttributeDescription_TryGetValueFromBag_mDA355BAD8A840E989A86049EF3DD0F641A56C9B9 (UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* __this, RuntimeObject* ___0_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___1_cc, int32_t* ___2_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_itemHeight(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_itemHeight_m35EB30D758F0AEDCAF1A0F6E3DDD50556C5277F4 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_showBorder(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_showBorder_m49CD2757C59C987D4FE8F4D5C58E939E3DF836B7 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_selectionType(UnityEngine.UIElements.SelectionType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_selectionType_m218A0CD82295797F6D271346B030A895E41E2790 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_showAlternatingRowBackgrounds(UnityEngine.UIElements.AlternatingRowBackground)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_showAlternatingRowBackgrounds_mBA96C39E21C306DBA4A92F39A3D49B6AD6F59394 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, 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.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.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 (*) (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline)((TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*)__this, (Il2CppFullySharedGenericAny)&___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.UxmlBoolAttributeDescription::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlBoolAttributeDescription__ctor_m32928BDCA34A048BB5CCD64422AD9115EFE92298 (UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_inline (TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline)((TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*)__this, (Il2CppFullySharedGenericAny)&___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.SelectionType>::.ctor()
|
|
inline void UxmlEnumAttributeDescription_1__ctor_m7BEBF12D3F3F60FBEAB82EC2A25063BB9A98B4F4 (UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*UnityEngine.UIElements.UxmlEnumAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>*/UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334*, const RuntimeMethod*))UxmlEnumAttributeDescription_1__ctor_m05023FEEE6ED13E0CD950E9C3E1B6371A28EC3D3_gshared)((UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.SelectionType>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_m396CE8DBEB33097C72955E72BC61FF8116890A56_inline (TypedUxmlAttributeDescription_1_tB4C3196F5E6941A87CE165C3C9E3611D98CD3354* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline)((TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*)__this, (Il2CppFullySharedGenericAny)&___0_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>::.ctor()
|
|
inline void UxmlEnumAttributeDescription_1__ctor_mB098781FD9AFFEAE0E69A10F4837BF2CEAD7FFCC (UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*UnityEngine.UIElements.UxmlEnumAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>*/UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334*, const RuntimeMethod*))UxmlEnumAttributeDescription_1__ctor_m05023FEEE6ED13E0CD950E9C3E1B6371A28EC3D3_gshared)((UxmlEnumAttributeDescription_1_tE116BD649E95386F803B53ADE1E8678264AEF334*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_m6C7A6564E2433A152B5E820242C98F939D400D75_inline (TypedUxmlAttributeDescription_1_t25B132C34C584D3489CCD7BFC0A63B087E892795* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline)((TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D*)__this, (Il2CppFullySharedGenericAny)&___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.Threading.Thread System.Threading.Thread::get_CurrentThread()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* Thread_get_CurrentThread_m6D4719F4993DB9200490531FF02D4076FF9CA9BD (const RuntimeMethod* method) ;
|
|
// System.Int32 System.Threading.Thread::get_ManagedThreadId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05 (Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>::.ctor()
|
|
inline void Stack_1__ctor_m114B389DBA17B72470237C3ED999DBC3AB6BA390 (Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1__ctor_m5C333061E1285AC5B22F556173FBE157EF1A37B7_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>::get_Count()
|
|
inline int32_t Stack_1_get_Count_m71CCBD64C52834EAFA609D5A8FD9BA5A1B5D6980_inline (Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))Stack_1_get_Count_mCAD00A69587F884F88C36DE7423C3C329166144E_gshared_inline)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>::Pop()
|
|
inline RuntimeObject* Stack_1_Pop_mAE40922A25FDBA7867C019085CE230FAAF51A70B (Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* il2cppRetVal;
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Stack_1_Pop_m8E5FF1B4CFD9ADF4D8A7C4CFF4713C83E163A34A_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.Stack`1<System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>>::Push(T)
|
|
inline void Stack_1_Push_mE94B7F59312A16974D63836B201A850AA5B3D7CA (Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Stack_1_Push_m072EF82431D7D7E164213D822010141A4C00050D_gshared)((Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Void System.NotSupportedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.Generic.IEnumerable<UnityEngine.UIElements.ITreeViewItem>.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetAllItemsU3Ed__64_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_ITreeViewItemU3E_GetEnumerator_m69581F9A79E89E3DB98FA9B18A49028D4ECF6688 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogCall::.ctor(System.Delegate,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogCall__ctor_mE87EDA5105BA352B7B582F3D91E4C420BD39FA74 (EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* __this, Delegate_t* ___0_callback, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogCall::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogCall_Dispose_m6E871797D254F1D1DA542A62869B4E3C87613ACD (EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogIMGUICall::.ctor(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogIMGUICall__ctor_m8181F947BF193F4D2ACD9AB48654C906663A69C4 (EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogIMGUICall::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogIMGUICall_Dispose_mC840F6D4E4891BD9853F0E4478739F1AA7B09643 (EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_bindableElement()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::Init(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_Init_mD7EF87A4FAF46AF8D0400C43E1F3B601F7168780 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::UpdateHierarchy(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_UpdateHierarchy_m729D631C0ED2B9CC6B318051F1CCDDF77483DF74 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, bool ___0_usesAnimatedDragger, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::RemoveFromHierarchy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_RemoveFromHierarchy_m5F43EA9B8CBA47EA2AEC2D75180713395AEECF64 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_parent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_get_parent_m80978E6D0A928AB4885EE4CD0E2295C72AA73000 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::Insert(System.Int32,UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_Insert_m95ACF6FC7BCF788C955714E8DADF07FACE5C0031 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_index, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___1_element, 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.ReusableCollectionItem::PreAttachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_PreAttachElement_mEE0E5E2DE8B1A57C79A960DB1D9560BF801F1FF8 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::DetachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_DetachElement_m4C909D58BF00D1F93B439E95D4611619571862BD (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::SetDragGhost(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_SetDragGhost_m5C2DCBC82DDEB3C0E50C0C4D8063C3AEB4EA83A3 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_dragGhost, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ReusableCollectionItem::get_isDragGhost()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleEnum`1<T> UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>::op_Implicit(T)
|
|
inline StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030 (int32_t ___0_v, const RuntimeMethod* method)
|
|
{
|
|
StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 il2cppRetVal;
|
|
(( void (*) (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct, StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*, const RuntimeMethod*))StyleEnum_1_op_Implicit_m7A7112971764E232021D2ACB3A66B7F785AF604A_gshared)((Il2CppFullySharedGenericStruct)&___0_v, (StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem__ctor_m3D1DECE74C59C1E8B63296EC013882ACDB269302 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __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.ReusableCollectionItem::set_id(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_id_m681AB8AB77EE8E8E0B0105C0955B7BCF1FBDE1B7_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_index(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_index_mBE6E436EF78A151186FE66E59E1F032B653BBF1E_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, 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_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*, RuntimeObject*, intptr_t, const RuntimeMethod*))EventCallback_1__ctor_m4FA52DD3A2C04411AB70840FB07831BC7AE7A993_gshared)((EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_bindableElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_bindableElement_m0115DE25E0FAF4839E8D7C58A8ACFA0ED08CBB0E_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* 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.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);
|
|
}
|
|
// UnityEngine.UIElements.PseudoStates UnityEngine.UIElements.VisualElement::get_pseudoStates()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_pseudoStates(UnityEngine.UIElements.PseudoStates)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_isDragGhost(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_isDragGhost_m14D52FD2C4162C489B35ADDD9DCB13C83DF912EB_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_value, 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) ;
|
|
// System.Void System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>::Invoke(T)
|
|
inline void Action_1_Invoke_mFD5EC89284E7AAC8D83DE1003566C086F83D1B9D_inline (Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline)((Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)__this, (Il2CppFullySharedGenericAny)___0_obj, method);
|
|
}
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView UnityEngine.UIElements.CollectionViewController::get_view()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* CollectionViewController_get_view_mA2B294EA0DC4E6E490482CBA616FE3DA7A3FF385_inline (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem>::Clear()
|
|
inline void Dictionary_2_Clear_m5053DE4A6501FDA7668CDA192619ADA3CCFCE5FD (Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, const RuntimeMethod*))Dictionary_2_Clear_m935B3F117860376DC854C9E0C80CBD99BE77EEA4_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeItem::.ctor(System.Int32,System.Int32,System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeItem__ctor_m5AD0735970E7850C38C68ACA818CE77CBDB19AFE (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, int32_t ___0_id, int32_t ___1_parentId, RuntimeObject* ___2_childrenIds, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem>::Add(TKey,TValue)
|
|
inline void Dictionary_2_Add_m80E83C8F4CAA1AE4265DA6B826FFD60A5E0A26E5 (Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* __this, int32_t ___0_key, TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Dictionary_2_Add_m54D479280472DEA042DB3933AF547E666B017333_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)&___0_key, (Il2CppFullySharedGenericAny)&___1_value, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::RegenerateWrappers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_RegenerateWrappers_m1610E795108958D94D73EA0DFFD6DA72C0B26FA9 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.TreeItem>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9 (Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* __this, int32_t ___0_key, TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, const RuntimeMethod*))Dictionary_2_TryGetValue_m7519D765EAF1E8A7D3137C2F1B7B3A01D15A1692_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, (Il2CppFullySharedGenericAny)&___0_key, (Il2CppFullySharedGenericAny*)___1_value, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeItem::get_hasChildren()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeItem_get_hasChildren_m4AF285276011A7A8F27590638996577C5219A9DD (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsIndexValid(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsIndexValid_m4181F2B4B46D485E8E2076A1EF4956A402D97980 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>::get_Item(System.Int32)
|
|
inline TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30 (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewItemWrapper::get_hasChildren()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewItemWrapper_get_hasChildren_mE5F98CC263A6E73EB4BD61417273716F66A38314 (TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewItemWrapper::get_childrenIds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TreeViewItemWrapper_get_childrenIds_mA17AB8F8BCE3D157C367DED21F39E7DA7259B0EF (TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TreeItem::get_parentId()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TreeItem_get_parentId_mBF12DF0B9B91E8B60A65FE301A80EF16AC100790_inline (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeItem::get_childrenIds()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TreeItem_get_childrenIds_m73B843337FC4D0341CC88D3A5299B287FE267952_inline (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Experimental.TreeView UnityEngine.UIElements.TreeViewController::get_treeView()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<System.Int32> UnityEngine.UIElements.Experimental.TreeView::get_expandedItemIds()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline (TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TreeViewItemWrapper::get_id()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA (TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsExpanded(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsExpanded_m480C1973551BB2CE97115E255D73C238614E1473 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method) ;
|
|
// Unity.Profiling.ProfilerMarker/AutoScope Unity.Profiling.ProfilerMarker::Auto()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.ProfilerMarker/AutoScope::Dispose()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::HasChildrenByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_HasChildrenByIndex_m8AFD470510762E87313CB445B948C70554287CF7 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetChildrenIdsByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TreeViewController_GetChildrenIdsByIndex_m073CAB2F2A77305EC9866C16B47882B9CDC2C106 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<System.Int32>::Contains(T)
|
|
inline bool HashSet_1_Contains_m98A9F88FF94538B5EECB0F87E1E3B3572E02ACA1 (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))HashSet_1_Contains_m6D40586EE21316C2647D81169AFFF9B4C7719F74_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TreeViewController::GetIndentationDepth(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewController_GetIndentationDepth_m6FDADF78CC34446E49D764D1870B17C79E98F9AF (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TreeViewController::CreateWrappers(System.Collections.Generic.IEnumerable`1<System.Int32>,System.Int32,System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_CreateWrappers_m1F7DD97E5FA4DBAF8A813FC8FD1BB9BA497C518B (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, RuntimeObject* ___0_treeViewItemIds, int32_t ___1_depth, List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** ___2_wrappers, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_InsertRange_m536E608D8CA599643DA6502B482B93B588957C21 (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_m729639E2C8D1AA7579AC78D259085921E7DC72F2_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (RuntimeObject*)___1_collection, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>::Clear()
|
|
inline void List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_inline (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::ExpandItemByIndex(System.Int32,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_ExpandItemByIndex_m41996B38FE428A684D7DAD6EE5AA156D821DC568 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, bool ___1_expandAllChildren, bool ___2_refresh, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsExpandedByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsExpandedByIndex_m6D7F1E88F8FE4C5D83E04A4F3D6AE011CAF695FC (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>::get_Count()
|
|
inline int32_t List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_inline (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.HashSet`1<System.Int32>::Clear()
|
|
inline void HashSet_1_Clear_m88C3BA6617F6667126635140414D44D76C42AE92 (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1_Clear_mCD863950F0D273BF34801FDD92CBEC230ECD5A6D_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetRootItemIds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TreeViewController_GetRootItemIds_m58715FC942B40FF54DA44F7D8E4A939906EFB771 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::SetItemsSourceWithoutNotify(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_SetItemsSourceWithoutNotify_mEADC035350955889F3736227BC1B98BEE474876A (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, RuntimeObject* ___0_source, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TreeViewItemWrapper::.ctor(UnityEngine.UIElements.TreeItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewItemWrapper__ctor_m7B5ECA451F7EC2957E2B6C60D5F5DAC4C83C5B9E (TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839* __this, TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 ___0_item, int32_t ___1_depth, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>::Add(T)
|
|
inline void List_1_Add_m3BDBC6797E58BA17ADF8679ED9156D5CD6D2FCDF_inline (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* __this, TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::RaiseItemIndexChanged(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_RaiseItemIndexChanged_mE12A41E7F1E29A78B60EDE6E02A9D3728D944E77 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, int32_t ___0_srcIndex, int32_t ___1_dstIndex, const RuntimeMethod* method) ;
|
|
// Unity.Profiling.ProfilerCategory Unity.Profiling.ProfilerCategory::get_Scripts()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC ProfilerCategory_get_Scripts_m84B0F774438E512DFAF8FD21E0FBE76F00419AFE (const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.ProfilerMarker::.ctor(Unity.Profiling.ProfilerCategory,System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_m5958260A54C3A7F358A71AACDF47BA28178A5AB7_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC ___0_category, String_t* ___1_name, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.ProfilerMarker::.ctor(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::RaiseItemsSourceChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_RaiseItemsSourceChanged_mFA839DFF187864594DA98808C07A4358060CD734 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::IsNotNull<UnityEngine.UIElements.BaseVerticalCollectionView>(T,System.String)
|
|
inline void Assert_IsNotNull_TisBaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_m82FCBFE93613E21A21DDE783C6A8DCFE7B0DB7B7 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* ___0_value, String_t* ___1_message, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*, String_t*, const RuntimeMethod*))Assert_IsNotNull_TisRuntimeObject_m7433F6940A7F720450FC31AEAD38A811EC2FAB32_gshared)(___0_value, ___1_message, method);
|
|
}
|
|
// System.Func`2<System.Int32,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_getItemId()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* BaseVerticalCollectionView_get_getItemId_m51EF1320768EF82E1DEB2F7346E6F3259B098C4D_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// TResult System.Func`2<System.Int32,System.Int32>::Invoke(T)
|
|
inline int32_t Func_2_Invoke_m1F8EE2DF137BE5132901C0297848BC7A373A676B_inline (Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* __this, int32_t ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
int32_t il2cppRetVal;
|
|
(( void (*) (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Func_2_Invoke_m31CAC166FDC80DC5AE52A5AEFFEE2D9B27A1CA3F_gshared_inline)((Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0*)__this, (Il2CppFullySharedGenericAny)&___0_arg, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_selectedIndices()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_selectedIndices_m225B0611A10353F497E2144373F8335C6809314C_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Linq.Enumerable::Contains<System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,TSource)
|
|
inline bool Enumerable_Contains_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m62FB3DBA3F73FEBF64FEAD95645C625ADFB2B178 (RuntimeObject* ___0_source, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (RuntimeObject*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Enumerable_Contains_TisIl2CppFullySharedGenericAny_m40E4F8989539AFEF3812EAC9D9AD165D258D5814_gshared)((RuntimeObject*)___0_source, (Il2CppFullySharedGenericAny)&___1_value, 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.NotImplementedException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742 (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Label::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Label__ctor_mEC3F9EF41CBD508BAA966A8C6C75EABBED3CB365 (Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32>::Invoke(T1,T2)
|
|
inline void Action_2_Invoke_mF5036A6D1FF31DA2E4CB571F6A0F904796417719_inline (Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_arg1, int32_t ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_2_Invoke_m6343941059117DF354182855F996EB3D08B4C06C_gshared_inline)((Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*)__this, (Il2CppFullySharedGenericAny)___0_arg1, (Il2CppFullySharedGenericAny)&___1_arg2, method);
|
|
}
|
|
// System.Action`2<UnityEngine.UIElements.VisualElement,System.Int32> UnityEngine.UIElements.BaseVerticalCollectionView::get_unbindItem()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_unbindItem_mF1318DEBEC44E601C7847D16DF5EF084C5AEAAB6_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Action`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.BaseVerticalCollectionView::get_destroyItem()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* BaseVerticalCollectionView_get_destroyItem_mE32383B57CC96FC04212E03B01B76671C360865B_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<UnityEngine.UIElements.VisualElement>::Invoke(T)
|
|
inline void Action_1_Invoke_m888F6CE0B6C59F9F67C1098D197F59D1B7CA2211_inline (Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline)((Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)__this, (Il2CppFullySharedGenericAny)___0_obj, 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 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_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_2_Invoke_m6343941059117DF354182855F996EB3D08B4C06C_gshared_inline)((Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8*)__this, (Il2CppFullySharedGenericAny)&___0_arg1, (Il2CppFullySharedGenericAny)&___1_arg2, method);
|
|
}
|
|
// UnityEngine.UIElements.ListView UnityEngine.UIElements.ListViewController::get_listView()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::get_reorderable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BaseVerticalCollectionView_get_reorderable_m5F5C463431BC2646D1FC256868F476091B8EACB6 (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ListViewReorderMode UnityEngine.UIElements.ListView::get_reorderMode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListView_get_reorderMode_m89B680A1292DA7F3B6554E3C861C7DDA5CCF36EA_inline (ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::Init(UnityEngine.UIElements.VisualElement,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_Init_mBEEFA1B50223C7715CDF31DEAEDDB8C9808B603A (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_item, bool ___1_usesAnimatedDragger, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.StyleEnum`1<T> UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.Position>::op_Implicit(T)
|
|
inline StyleEnum_1_tDDEAB09F1AAFEA72821D32D702E5349040FF46D9 StyleEnum_1_op_Implicit_m3CDF632B66BE956AED4D451BF8A5C2F7F1B7B48D (int32_t ___0_v, const RuntimeMethod* method)
|
|
{
|
|
StyleEnum_1_tDDEAB09F1AAFEA72821D32D702E5349040FF46D9 il2cppRetVal;
|
|
(( void (*) (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct, StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*, const RuntimeMethod*))StyleEnum_1_op_Implicit_m7A7112971764E232021D2ACB3A66B7F785AF604A_gshared)((Il2CppFullySharedGenericStruct)&___0_v, (StyleEnum_1_t8C8AEB3390A0F933B5DC2B061581ED98A14D1FB5*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// 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) ;
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::UpdateDragHandle(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_UpdateDragHandle_mAB69E554D8DC5E62D0BDEB431189551A9665936C (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, bool ___0_needsDragHandle, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::InvokeBindItem(UnityEngine.UIElements.ReusableCollectionItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_InvokeBindItem_m42734E755BE3DBA31917EAB2518A732DFDD9AED8 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ListViewController::EnsureItemSourceCanBeResized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __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) ;
|
|
// TCollection UnityEngine.Pool.CollectionPool`2<System.Collections.Generic.List`1<System.Int32>,System.Int32>::Get()
|
|
inline List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56 (const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* il2cppRetVal = (( RuntimeObject* (*) (const RuntimeMethod*))CollectionPool_2_Get_m14408D5B2084E1CBD3E324BAA11BD45C98DC3AC9_gshared)(method);
|
|
return (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.Pool.CollectionPool`2<System.Collections.Generic.List`1<System.Int32>,System.Int32>::Release(TCollection)
|
|
inline void CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, const RuntimeMethod*))CollectionPool_2_Release_m43040C099A6A3B930B9ADFFBAE8AA240B0B7DDC1_gshared)((RuntimeObject*)___0_toRelease, method);
|
|
}
|
|
// System.Array UnityEngine.UIElements.ListViewController::AddToArray(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* ListViewController_AddToArray_m3631BF842C1449B40BCED0E3A23343D44F208899 (RuntimeArray* ___0_source, int32_t ___1_itemCount, 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.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ListViewController::<AddItems>g__IsGenericList|14_0(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListViewController_U3CAddItemsU3Eg__IsGenericListU7C14_0_m187D5E136BA062E956012993DA1F7856AEB887C1 (Type_t* ___0_t, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::get_IsValueType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ;
|
|
// System.Object System.Activator::CreateInstance(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseItemsAdded(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseItemsAdded_m6A58E1A88178D8A30C787C25399ED438C7174F45 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseOnSizeChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseOnSizeChanged_m827078B44DFA7FE22223E06A72A14E249951C5EB (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, 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.Void UnityEngine.UIElements.ListViewController::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_Swap_m3CEF91621A0779E58EB420A90C850A015A1525E5 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_lhs, int32_t ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Sort()
|
|
inline void List_1_Sort_m6DA897B8E2A3434A84E3529FE9850B2773D88B65 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Sort_m3B418BED64218204CAA69CD89BAA05CC12EB5EE6_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Array UnityEngine.UIElements.ListViewController::RemoveFromArray(System.Array,System.Collections.Generic.List`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* ListViewController_RemoveFromArray_mD1DD74E39EC554A772DA23FAAB80DAA69FA60EE9 (RuntimeArray* ___0_source, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___1_indicesToRemove, 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_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
|
|
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t il2cppRetVal;
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, Il2CppFullySharedGenericAny*, const RuntimeMethod*))List_1_get_Item_m6E4BA37C1FB558E4A62AE4324212E45D09C5C937_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_index, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseItemsRemoved(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseItemsRemoved_m57DF8DDE6FE734680E2F63ED3B481F9A8EAE102A (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, RuntimeObject* ___0_indices, 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_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline)((Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)__this, (Il2CppFullySharedGenericAny)___0_obj, method);
|
|
}
|
|
// System.Void System.InvalidOperationException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Array::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983 (Type_t* ___0_elementType, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900 (RuntimeArray* ___0_sourceArray, RuntimeArray* ___1_destinationArray, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// System.Object System.Array::GetValue(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21 (RuntimeArray* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::SetValue(System.Object,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::get_IsArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController__ctor_m0C6B9FB403570C94F587D445DDF79E6D196B2F86 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method) ;
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
// System.Void System.GC::SuppressFinalize(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.UIR.TextureBlitter::get_disposed()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIRUtility::Destroy(UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::set_disposed(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextureBlitter_set_disposed_m3FA52D5FE5C9EEAC9DAA3E89BD506901DB9352EE_inline (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Shader::PropertyToID(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Shader_PropertyToID_mE98523D50F5656CAE89B30695C458253EB8956CA (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::.ctor(System.Int32)
|
|
inline void List_1__ctor_mAB2B123AE51CDC79605EF4A41537BADA1774F2CA (List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))List_1__ctor_m3069CACB5775E013107F559C825422266A09F9E8_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, ___0_capacity, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.DisposeHelper::NotifyDisposedUsed(System.IDisposable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposeHelper_NotifyDisposedUsed_m7A9C988A4B96B0920E470EEA604BA42C5ABB437F (RuntimeObject* ___0_disposable, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::Add(T)
|
|
inline void List_1_Add_mC287B445E45444960741C56A73B1C60B39B20449_inline (List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* __this, BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::BeginBlit(UnityEngine.RenderTexture)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_BeginBlit_mC1A1F6F82313120D441016B34D143CF97E997A56 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_dst, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::DoBlit(System.Collections.Generic.IList`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_DoBlit_m375A25BFCB3180100BF799325A2AD49C85DEAF0B (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RuntimeObject* ___0_blitInfos, int32_t ___1_startIndex, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::EndBlit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_EndBlit_m247EB2A9604A08925D457D13844BF0702F8DD4E5 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::get_Count()
|
|
inline int32_t List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_inline (List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void Unity.Profiling.ProfilerMarker::Begin()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker_Begin_mD07DB736ADA7D8BAF9D969CC7F3C55848A218C6E_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.ProfilerMarker::End()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker_End_m025AE3EF0F96F6DADC53489A53FC6EE65073DE60_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::Clear()
|
|
inline void List_1_Clear_m3E84B69EE9B9769288CFB4645CFF7F401F82C989_inline (List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// UnityEngine.Shader UnityEngine.Shader::Find(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* Shader_Find_m183AA54F78320212DDEC811592F98456898A41C5 (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Material::.ctor(UnityEngine.Shader)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Material__ctor_m7FDF47105D66D19591BE505A0C42B0F90D88C9BF (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* ___0_shader, const RuntimeMethod* method) ;
|
|
// UnityEngine.HideFlags UnityEngine.Object::get_hideFlags()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_get_hideFlags_mA08F5E41671B8C6B5073C6B9E2799BCE6E0DF7F3 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Object::set_hideFlags(UnityEngine.HideFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.MaterialPropertyBlock::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.RectInt UnityEngine.UIElements.UIR.Utility::GetActiveViewport()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 Utility_GetActiveViewport_mDB9165183361EBE3D7D6D673EA147472C7FC9F14 (const RuntimeMethod* method) ;
|
|
// UnityEngine.RenderTexture UnityEngine.RenderTexture::get_active()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* RenderTexture_get_active_mA4434B3E79DEF2C01CAE0A53061598B16443C9E7 (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::LoadPixelMatrix(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_LoadPixelMatrix_mF1C5A4508C5F110512C116A5DDE7AB0483FE961A (float ___0_left, float ___1_right, float ___2_bottom, float ___3_top, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Graphics::SetRenderTarget(UnityEngine.RenderTexture)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Graphics_SetRenderTarget_m995C0F14B97C5BF46CCF2E7EF410C1CC05C46409 (RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_rt, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Material::SetPass(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Material_SetPass_mBB03542DFF4FAEADFCED332009F9D61B6DED75FE (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* __this, int32_t ___0_pass, 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) ;
|
|
// System.Void UnityEngine.MaterialPropertyBlock::SetTexture(System.Int32,UnityEngine.Texture)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MaterialPropertyBlock_SetTexture_m39F531D3F35D6C5B661A7B4F07DD7B8ACC22627F (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* __this, int32_t ___0_nameID, Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___1_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIR.Utility::SetPropertyBlock(UnityEngine.MaterialPropertyBlock)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utility_SetPropertyBlock_m04316F1E2FCAF1F9DDBEBDFE542EEBC3120C4EA4 (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* ___0_props, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::Begin(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Begin_m17A70A7A3C161D8A127C11BDC5FC393392AB70C7 (int32_t ___0_mode, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Vector2Int::get_x()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Vector2Int::get_y()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_width()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_height()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_x()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_y()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_xMax()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.RectInt::get_yMax()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::Color(UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Color_mE2D27D8FCA9B5E07ECC15574BCBCBA16E6E0CB3E (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::TexCoord3(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_TexCoord3_mD95B6C3D77105453E0A01B1A29DFDDDF14BB7111 (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::Vertex3(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Vertex3_mEA9925548F447556F7899E69604B787EE57F6978 (float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GL::End()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_End_m6CE9D562B738075125F901B1D5254520EC30AB36 (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.Void UnityEngine.GL::Viewport(UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GL_Viewport_mA93DBAE1018A273684A07C8B8B444EFFBF2B38B7 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_pixelRect, const RuntimeMethod* 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.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) ;
|
|
// UnityEngine.Vector4 UnityEngine.Color::op_Implicit(UnityEngine.Color)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Vector4::op_Equality(UnityEngine.Vector4,UnityEngine.Vector4)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_lhs, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Vector4::GetHashCode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.ProfilerMarker/AutoScope::.ctor(System.IntPtr)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, intptr_t ___0_markerPtr, const RuntimeMethod* method) ;
|
|
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::EndSample(System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilerUnsafeUtility_EndSample_mFDB4EFB160A9CB817D2F8ED21B88693616B27409 (intptr_t ___0_markerPtr, const RuntimeMethod* method) ;
|
|
// System.UInt16 Unity.Profiling.ProfilerCategory::op_Implicit(Unity.Profiling.ProfilerCategory)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ProfilerCategory_op_Implicit_m441AE38B56781EE2D3F0865F65C81A77BEC6D76B (ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC ___0_category, const RuntimeMethod* method) ;
|
|
// System.IntPtr Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::CreateMarker(System.String,System.UInt16,Unity.Profiling.LowLevel.MarkerFlags,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ProfilerUnsafeUtility_CreateMarker_mC5E1AAB8CC1F0342065DF85BA3334445ED754E64 (String_t* ___0_name, uint16_t ___1_categoryId, uint16_t ___2_flags, int32_t ___3_metadataCount, const RuntimeMethod* method) ;
|
|
// System.Void Unity.Profiling.LowLevel.Unsafe.ProfilerUnsafeUtility::BeginSample(System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProfilerUnsafeUtility_BeginSample_mB5106F4E7ECEF54906545665ED23928D14F5FCA7 (intptr_t ___0_markerPtr, 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) ;
|
|
// System.Void UnityEngine.Vector4::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method) ;
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// 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_46;
|
|
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.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
|
|
// 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.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.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
|
|
// 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
|
|
#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.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.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
|
|
// 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.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.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
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// 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.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
|
|
// 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
|
|
// 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)
|
|
{
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* V_0 = NULL;
|
|
{
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_0 = __this->___m_Parts_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSelector::set_parts(UnityEngine.UIElements.StyleSelectorPart[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSelector_set_parts_m82461DE82EBF4FD88DDA188E6D8ACF1891B49E16 (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_0 = ___0_value;
|
|
__this->___m_Parts_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Parts_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSelectorRelationship UnityEngine.UIElements.StyleSelector::get_previousRelationship()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleSelector_get_previousRelationship_m8675488521AE5C41A26BFFC1CF4BB8B0534A23D5 (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_PreviousRelationship_1;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSelector::set_previousRelationship(UnityEngine.UIElements.StyleSelectorRelationship)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSelector_set_previousRelationship_m6A90C6E4DE2A4C5CCAC23496A94B07425EC44B63 (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_PreviousRelationship_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSelector::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSelector_ToString_m7A5A7849FCDD4226C1B58E7B29D16FE5D7E72F30 (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Select_TisStyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_TisString_t_mEDFF65C0AFD98860FCC02DAD70AB5CAEADC0FAC7_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_tFA25374333A94339FCFCCF26E23AE7046335A359_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToStringU3Eb__10_0_mF7DFBDC92140F5A0C6C3470E89847FC906A88379_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* G_B2_0 = NULL;
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* G_B2_1 = NULL;
|
|
String_t* G_B2_2 = NULL;
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* G_B1_0 = NULL;
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* G_B1_1 = NULL;
|
|
String_t* G_B1_2 = NULL;
|
|
{
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_0;
|
|
L_0 = StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var);
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* L_1 = ((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9__10_0_1;
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
G_B1_1 = L_0;
|
|
G_B1_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
G_B2_1 = L_0;
|
|
G_B2_2 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* L_3 = ((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* L_4 = (Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359*)il2cpp_codegen_object_new(Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
Func_2__ctor_mD22DA99E85DF454DC942A66F0AB39FB796A7428C(L_4, L_3, (intptr_t)((void*)U3CU3Ec_U3CToStringU3Eb__10_0_mF7DFBDC92140F5A0C6C3470E89847FC906A88379_RuntimeMethod_var), NULL);
|
|
Func_2_tFA25374333A94339FCFCCF26E23AE7046335A359* L_5 = L_4;
|
|
((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9__10_0_1 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9__10_0_1), (void*)L_5);
|
|
G_B2_0 = L_5;
|
|
G_B2_1 = G_B1_1;
|
|
G_B2_2 = G_B1_2;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = Enumerable_Select_TisStyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_TisString_t_mEDFF65C0AFD98860FCC02DAD70AB5CAEADC0FAC7((RuntimeObject*)G_B2_1, G_B2_0, Enumerable_Select_TisStyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_TisString_t_mEDFF65C0AFD98860FCC02DAD70AB5CAEADC0FAC7_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);
|
|
V_0 = L_8;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
String_t* L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSelector::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSelector__ctor_m873E58D9169C86020A1E6030255566AF23DEC361 (StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___pseudoStateMask_2 = (-1);
|
|
__this->___negatedPseudoStateMask_3 = (-1);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.StyleSelector/<>c::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m16BB7356DD5B4EE1FB4A1DF7A668762513395379 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* L_0 = (U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E*)il2cpp_codegen_object_new(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
U3CU3Ec__ctor_mE85524E8229C6FF445591B04165E06152546EC91(L_0, NULL);
|
|
((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSelector/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE85524E8229C6FF445591B04165E06152546EC91 (U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSelector/<>c::<ToString>b__10_0(UnityEngine.UIElements.StyleSelectorPart)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CToStringU3Eb__10_0_mF7DFBDC92140F5A0C6C3470E89847FC906A88379 (U3CU3Ec_t419C3DE4EA8561D172A5A1698019EB24547E295E* __this, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 ___0_p, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0;
|
|
L_0 = StyleSelectorPart_ToString_m894031E7CAE358204F8D1C334B76DD44A6775BB8((&___0_p), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#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
|
|
#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.StyleComplexSelector/PseudoStateData
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_pinvoke(const PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8& unmarshaled, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___state_0 = unmarshaled.___state_0;
|
|
marshaled.___negate_1 = static_cast<int32_t>(unmarshaled.___negate_1);
|
|
}
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_pinvoke_back(const PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_pinvoke& marshaled, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8& unmarshaled)
|
|
{
|
|
int32_t unmarshaledstate_temp_0 = 0;
|
|
unmarshaledstate_temp_0 = marshaled.___state_0;
|
|
unmarshaled.___state_0 = unmarshaledstate_temp_0;
|
|
bool unmarshalednegate_temp_1 = false;
|
|
unmarshalednegate_temp_1 = static_cast<bool>(marshaled.___negate_1);
|
|
unmarshaled.___negate_1 = unmarshalednegate_temp_1;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_pinvoke_cleanup(PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_com(const PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8& unmarshaled, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___state_0 = unmarshaled.___state_0;
|
|
marshaled.___negate_1 = static_cast<int32_t>(unmarshaled.___negate_1);
|
|
}
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_com_back(const PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_com& marshaled, PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8& unmarshaled)
|
|
{
|
|
int32_t unmarshaledstate_temp_0 = 0;
|
|
unmarshaledstate_temp_0 = marshaled.___state_0;
|
|
unmarshaled.___state_0 = unmarshaledstate_temp_0;
|
|
bool unmarshalednegate_temp_1 = false;
|
|
unmarshalednegate_temp_1 = static_cast<bool>(marshaled.___negate_1);
|
|
unmarshaled.___negate_1 = unmarshalednegate_temp_1;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleComplexSelector/PseudoStateData
|
|
IL2CPP_EXTERN_C void PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshal_com_cleanup(PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// 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)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_state;
|
|
__this->___state_0 = L_0;
|
|
bool L_1 = ___1_negate;
|
|
__this->___negate_1 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27_AdjustorThunk (RuntimeObject* __this, int32_t ___0_state, bool ___1_negate, const RuntimeMethod* method)
|
|
{
|
|
PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PseudoStateData_tE5B3EBF682E8DE88E9325F44841D5B95FEB6F3A8*>(__this + _offset);
|
|
PseudoStateData__ctor_mB4C8BC311E089183F1888465174F8CAC0FC53A27(_thisAdjusted, ___0_state, ___1_negate, 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.StyleComplexSelector/<>c::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mA8B8FEB99A867F807F1D4D48099215CFD923576F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* L_0 = (U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850*)il2cpp_codegen_object_new(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
U3CU3Ec__ctor_m81F077066F40A8A008276E89847ECC84A0514518(L_0, NULL);
|
|
((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleComplexSelector/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m81F077066F40A8A008276E89847ECC84A0514518 (U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleComplexSelector/<>c::<ToString>b__20_0(UnityEngine.UIElements.StyleSelector)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CToStringU3Eb__20_0_m2C10A6584006D32F230D68FB1DB5E7EDC6BAE421 (U3CU3Ec_tDA559FC773D2264A94A17FCFE12C229758632850* __this, StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_0 = ___0_x;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.String UnityEngine.UIElements.StyleProperty::get_name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleProperty_get_name_mB093E71395D32578890C11C6CED189B06F495015 (StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* __this, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_Name_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleProperty::get_values()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* StyleProperty_get_values_mC1D996097014576222150D2F84685850FF4CEE2B (StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* V_0 = NULL;
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_0 = __this->___m_Values_2;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleProperty::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleProperty__ctor_m1BF9FE5A92A4453BC7F204283C26EFCE318CF9E2 (StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* __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.StyleSheet::get_importedWithErrors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_get_importedWithErrors_m11525CD04F8166073DDA6B19AD012B10C319D446 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_ImportedWithErrors_4;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_importedWithErrors(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_importedWithErrors_m74032EF25E9466BB5095C29DBBAD934DAA88219D (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ImportedWithErrors_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::get_importedWithWarnings()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_get_importedWithWarnings_mD24C80D5DDFC3F5E3F0EA3B92BEE027E08367D67 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_ImportedWithWarnings_5;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_importedWithWarnings(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_importedWithWarnings_mB678A0819470A4D2399740B00D785B831EF9BA62 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___m_ImportedWithWarnings_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleRule[] UnityEngine.UIElements.StyleSheet::get_rules()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* V_0 = NULL;
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_0 = __this->___m_Rules_6;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_rules(UnityEngine.UIElements.StyleRule[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_rules_m8543E25F211916676E6127E07C24DFF086B3D5B3 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_0 = ___0_value;
|
|
__this->___m_Rules_6 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Rules_6), (void*)L_0);
|
|
StyleSheet_SetupReferences_mF726C5C6749C44200AD2605E9BED7941A7E1DC40(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleComplexSelector[] UnityEngine.UIElements.StyleSheet::get_complexSelectors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* V_0 = NULL;
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_0 = __this->___m_ComplexSelectors_7;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_complexSelectors(UnityEngine.UIElements.StyleComplexSelector[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_complexSelectors_m589DE510975313F6207C6559B07DB5349EEB41FD (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_0 = ___0_value;
|
|
__this->___m_ComplexSelectors_7 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ComplexSelectors_7), (void*)L_0);
|
|
StyleSheet_SetupReferences_mF726C5C6749C44200AD2605E9BED7941A7E1DC40(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.StyleSheet::get_flattenedRecursiveImports()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* StyleSheet_get_flattenedRecursiveImports_mC825D7A330024BB307CC6E94320213E11F7B7DFE (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* V_0 = NULL;
|
|
{
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_0 = __this->___m_FlattenedImportedStyleSheets_14;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.StyleSheet::get_contentHash()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleSheet_get_contentHash_m8D55A0E80AB70D2E35F7F21B3924ACE8E0AA03E6 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_ContentHash_15;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_contentHash(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_contentHash_mF25D33033C382D1C39C68FCD788927FDF13ACB7D (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_ContentHash_15 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::get_isDefaultStyleSheet()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_get_isDefaultStyleSheet_mA799A9F4E8F16671ACDF273673897EEF6B971DCF (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_IsDefaultStyleSheet_20;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::set_isDefaultStyleSheet(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_set_isDefaultStyleSheet_mF3452A31475F8C3788BC850A151AE9C7B022C7C6 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB934AD2F9937B5874A11C644C941A77277693D36_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE4B1DA9E18413CDCF7F24EF487770F803566B16A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB01CAB67AAFD4D1DBD35911A2AA6C3442801D332_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mE8313336244D14561C5ADA76ECF119365C5F10FB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* V_2 = NULL;
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___m_IsDefaultStyleSheet_20 = L_0;
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_1;
|
|
L_1 = StyleSheet_get_flattenedRecursiveImports_mC825D7A330024BB307CC6E94320213E11F7B7DFE(__this, NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_3;
|
|
L_3 = StyleSheet_get_flattenedRecursiveImports_mC825D7A330024BB307CC6E94320213E11F7B7DFE(__this, NULL);
|
|
NullCheck(L_3);
|
|
Enumerator_t6A2C9B49B9A539A38B864F791777F86879469484 L_4;
|
|
L_4 = List_1_GetEnumerator_mE8313336244D14561C5ADA76ECF119365C5F10FB(L_3, List_1_GetEnumerator_mE8313336244D14561C5ADA76ECF119365C5F10FB_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0042:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_mB934AD2F9937B5874A11C644C941A77277693D36((&V_1), Enumerator_Dispose_mB934AD2F9937B5874A11C644C941A77277693D36_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0037_1;
|
|
}
|
|
|
|
IL_0025_1:
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_5;
|
|
L_5 = Enumerator_get_Current_mB01CAB67AAFD4D1DBD35911A2AA6C3442801D332_inline((&V_1), Enumerator_get_Current_mB01CAB67AAFD4D1DBD35911A2AA6C3442801D332_RuntimeMethod_var);
|
|
V_2 = L_5;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_6 = V_2;
|
|
bool L_7 = ___0_value;
|
|
NullCheck(L_6);
|
|
StyleSheet_set_isDefaultStyleSheet_mF3452A31475F8C3788BC850A151AE9C7B022C7C6(L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_0037_1:
|
|
{
|
|
bool L_8;
|
|
L_8 = Enumerator_MoveNext_mE4B1DA9E18413CDCF7F24EF487770F803566B16A((&V_1), Enumerator_MoveNext_mE4B1DA9E18413CDCF7F24EF487770F803566B16A_RuntimeMethod_var);
|
|
if (L_8)
|
|
{
|
|
goto IL_0025_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::OnEnable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_OnEnable_m7BF2712DBEB0B4E827B69EBF6EAF81DEE390F98A (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleSheet_SetupReferences_mF726C5C6749C44200AD2605E9BED7941A7E1DC40(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::FlattenImportedStyleSheetsRecursive()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_FlattenImportedStyleSheetsRecursive_mECEC16CAEE38A1000079312AAF814AFF078DAEDD (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_0 = (List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F*)il2cpp_codegen_object_new(List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B(L_0, List_1__ctor_mF0C1921461493490BF6F2AF6CA86D16BC59E327B_RuntimeMethod_var);
|
|
__this->___m_FlattenedImportedStyleSheets_14 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FlattenedImportedStyleSheets_14), (void*)L_0);
|
|
StyleSheet_FlattenImportedStyleSheetsRecursive_m7584BB3379257F755E8118280BE67FC14CF77516(__this, __this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::FlattenImportedStyleSheetsRecursive(UnityEngine.UIElements.StyleSheet)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_FlattenImportedStyleSheetsRecursive_m7584BB3379257F755E8118280BE67FC14CF77516 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_0 = ___0_sheet;
|
|
NullCheck(L_0);
|
|
ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9* L_1 = L_0->___imports_13;
|
|
V_0 = (bool)((((RuntimeObject*)(ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_3 = ___0_sheet;
|
|
NullCheck(L_3);
|
|
ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9* L_4 = L_3->___imports_13;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___styleSheet_0;
|
|
V_2 = L_6;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_7 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_8;
|
|
L_8 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_7, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_3 = L_8;
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_10 = V_2;
|
|
bool L_11;
|
|
L_11 = StyleSheet_get_isDefaultStyleSheet_mA799A9F4E8F16671ACDF273673897EEF6B971DCF(__this, NULL);
|
|
NullCheck(L_10);
|
|
StyleSheet_set_isDefaultStyleSheet_mF3452A31475F8C3788BC850A151AE9C7B022C7C6(L_10, L_11, NULL);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_12 = V_2;
|
|
StyleSheet_FlattenImportedStyleSheetsRecursive_m7584BB3379257F755E8118280BE67FC14CF77516(__this, L_12, NULL);
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* L_13 = __this->___m_FlattenedImportedStyleSheets_14;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_14 = V_2;
|
|
NullCheck(L_13);
|
|
List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_inline(L_13, L_14, List_1_Add_m3C83E75B614E81ACCA3C10CAF32408B4DB651780_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_15 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_17 = ___0_sheet;
|
|
NullCheck(L_17);
|
|
ImportStructU5BU5D_t42D231FD5BB4B620965D7BED87D56D531B4C7AE9* L_18 = L_17->___imports_13;
|
|
NullCheck(L_18);
|
|
V_4 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::SetupReferences()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet_SetupReferences_mF726C5C6749C44200AD2605E9BED7941A7E1DC40 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __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_m66B2DAB3FD9D00B7968907AE37116ACE44A0508F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m1B1147E192920AA737BB7BA42906DAFF28053E68_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF5B39063A519F09357D03E2CC5A61560903D499C);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* V_3 = NULL;
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* V_6 = NULL;
|
|
bool V_7 = false;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
bool V_11 = false;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
bool V_14 = false;
|
|
int32_t V_15 = 0;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* V_16 = NULL;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* V_17 = NULL;
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_18;
|
|
memset((&V_18), 0, sizeof(V_18));
|
|
String_t* V_19 = NULL;
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* V_20 = NULL;
|
|
bool V_21 = false;
|
|
int32_t V_22 = 0;
|
|
int32_t V_23 = 0;
|
|
bool V_24 = false;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* V_25 = NULL;
|
|
bool V_26 = false;
|
|
bool V_27 = false;
|
|
int32_t G_B3_0 = 0;
|
|
String_t* G_B30_0 = NULL;
|
|
String_t* G_B29_0 = NULL;
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_0;
|
|
L_0 = StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_1;
|
|
L_1 = StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6(__this, NULL);
|
|
G_B3_0 = ((((RuntimeObject*)(StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_029a;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_3;
|
|
L_3 = StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6(__this, NULL);
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
goto IL_00d3;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_4 = V_1;
|
|
int32_t L_5 = V_2;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_3 = L_7;
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_8 = V_3;
|
|
NullCheck(L_8);
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* L_9;
|
|
L_9 = StyleRule_get_properties_m0918E976C1000BC02985AFFE48919B5B7F45E6BC(L_8, NULL);
|
|
V_4 = L_9;
|
|
V_5 = 0;
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* L_10 = V_4;
|
|
int32_t L_11 = V_5;
|
|
NullCheck(L_10);
|
|
int32_t L_12 = L_11;
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
V_6 = L_13;
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_14 = V_6;
|
|
NullCheck(L_14);
|
|
String_t* L_15;
|
|
L_15 = StyleProperty_get_name_mB093E71395D32578890C11C6CED189B06F495015(L_14, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_16 = ((StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_StaticFields*)il2cpp_codegen_static_fields_for(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var))->___kCustomPropertyMarker_21;
|
|
bool L_17;
|
|
L_17 = StyleSheet_CustomStartsWith_mF97D883AB85421A239A8E6F1D54E9C3237F8C349(L_15, L_16, NULL);
|
|
V_7 = L_17;
|
|
bool L_18 = V_7;
|
|
if (!L_18)
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
}
|
|
{
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_19 = V_3;
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_20 = L_19;
|
|
NullCheck(L_20);
|
|
int32_t L_21 = L_20->___customPropertiesCount_2;
|
|
NullCheck(L_20);
|
|
L_20->___customPropertiesCount_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_22 = V_6;
|
|
NullCheck(L_22);
|
|
L_22->___isCustomProperty_3 = (bool)1;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_23 = V_6;
|
|
NullCheck(L_23);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_24;
|
|
L_24 = StyleProperty_get_values_mC1D996097014576222150D2F84685850FF4CEE2B(L_23, NULL);
|
|
V_8 = L_24;
|
|
V_9 = 0;
|
|
goto IL_00b4;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_25 = V_8;
|
|
int32_t L_26 = V_9;
|
|
NullCheck(L_25);
|
|
int32_t L_27 = L_26;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
|
|
V_10 = L_28;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_29 = V_10;
|
|
bool L_30;
|
|
L_30 = StyleSheetExtensions_IsVarFunction_mC992EF8AACF37ACA03E6564DCF595276B0B49E89(L_29, NULL);
|
|
V_11 = L_30;
|
|
bool L_31 = V_11;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_32 = V_6;
|
|
NullCheck(L_32);
|
|
L_32->___requireVariableResolve_4 = (bool)1;
|
|
goto IL_00bc;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int32_t L_33 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_34 = V_9;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_35 = V_8;
|
|
NullCheck(L_35);
|
|
if ((((int32_t)L_34) < ((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
int32_t L_36 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
int32_t L_37 = V_5;
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* L_38 = V_4;
|
|
NullCheck(L_38);
|
|
if ((((int32_t)L_37) < ((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_39 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
int32_t L_40 = V_2;
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_41 = V_1;
|
|
NullCheck(L_41);
|
|
if ((((int32_t)L_40) < ((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
V_12 = 0;
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_42;
|
|
L_42 = StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46(__this, NULL);
|
|
NullCheck(L_42);
|
|
V_13 = ((int32_t)(((RuntimeArray*)L_42)->max_length));
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_00eb:
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_43;
|
|
L_43 = StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46(__this, NULL);
|
|
int32_t L_44 = V_12;
|
|
NullCheck(L_43);
|
|
int32_t L_45 = L_44;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
|
|
NullCheck(L_46);
|
|
StyleComplexSelector_CachePseudoStateMasks_m67F9A45E8E150C5152DA810E446FE94CCD85DDC1(L_46, NULL);
|
|
int32_t L_47 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_47, 1));
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
int32_t L_48 = V_12;
|
|
int32_t L_49 = V_13;
|
|
V_14 = (bool)((((int32_t)L_48) < ((int32_t)L_49))? 1 : 0);
|
|
bool L_50 = V_14;
|
|
if (L_50)
|
|
{
|
|
goto IL_00eb;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
|
|
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_51;
|
|
L_51 = StringComparer_get_Ordinal_m77A8C28E78759556E06A6925E949737A45599E26_inline(NULL);
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_52 = (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F*)il2cpp_codegen_object_new(Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_52);
|
|
Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115(L_52, L_51, Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115_RuntimeMethod_var);
|
|
__this->___orderedClassSelectors_19 = L_52;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___orderedClassSelectors_19), (void*)L_52);
|
|
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_53;
|
|
L_53 = StringComparer_get_Ordinal_m77A8C28E78759556E06A6925E949737A45599E26_inline(NULL);
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_54 = (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F*)il2cpp_codegen_object_new(Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_54);
|
|
Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115(L_54, L_53, Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115_RuntimeMethod_var);
|
|
__this->___orderedNameSelectors_17 = L_54;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___orderedNameSelectors_17), (void*)L_54);
|
|
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_55;
|
|
L_55 = StringComparer_get_Ordinal_m77A8C28E78759556E06A6925E949737A45599E26_inline(NULL);
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_56 = (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F*)il2cpp_codegen_object_new(Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_56);
|
|
Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115(L_56, L_55, Dictionary_2__ctor_m47B58D87195FDC745B37BE42691FDF09A7713115_RuntimeMethod_var);
|
|
__this->___orderedTypeSelectors_18 = L_56;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___orderedTypeSelectors_18), (void*)L_56);
|
|
V_15 = 0;
|
|
goto IL_0285;
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_57;
|
|
L_57 = StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46(__this, NULL);
|
|
int32_t L_58 = V_15;
|
|
NullCheck(L_57);
|
|
int32_t L_59 = L_58;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_60 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_59));
|
|
V_16 = L_60;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_61 = V_16;
|
|
NullCheck(L_61);
|
|
int32_t L_62 = L_61->___ruleIndex_3;
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_63;
|
|
L_63 = StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6(__this, NULL);
|
|
NullCheck(L_63);
|
|
V_21 = (bool)((((int32_t)L_62) < ((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length))))? 1 : 0);
|
|
bool L_64 = V_21;
|
|
if (!L_64)
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_65 = V_16;
|
|
StyleRuleU5BU5D_t7897A39D88CA043B2BFB5B28C53B41564EBA3AF3* L_66;
|
|
L_66 = StyleSheet_get_rules_m3818714E77CB822D2F9D125EAD3CB7AA35BA75A6(__this, NULL);
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_67 = V_16;
|
|
NullCheck(L_67);
|
|
int32_t L_68 = L_67->___ruleIndex_3;
|
|
NullCheck(L_66);
|
|
int32_t L_69 = L_68;
|
|
StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* L_70 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
|
|
NullCheck(L_65);
|
|
StyleComplexSelector_set_rule_mE207BC9F10AF99952A9D149A0982E98B999F98D1_inline(L_65, L_70, NULL);
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_71 = V_16;
|
|
int32_t L_72 = V_15;
|
|
NullCheck(L_71);
|
|
L_71->___orderInStyleSheet_5 = L_72;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_73 = V_16;
|
|
NullCheck(L_73);
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_74;
|
|
L_74 = StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02(L_73, NULL);
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_75 = V_16;
|
|
NullCheck(L_75);
|
|
StyleSelectorU5BU5D_t11A633455FC601606B3DF3CEDDDAB1625B54708D* L_76;
|
|
L_76 = StyleComplexSelector_get_selectors_m54911D4E758E1A19A16E948D6D10BEB5795ADC02(L_75, NULL);
|
|
NullCheck(L_76);
|
|
NullCheck(L_74);
|
|
int32_t L_77 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_76)->max_length)), 1));
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_78 = (L_74)->GetAt(static_cast<il2cpp_array_size_t>(L_77));
|
|
V_17 = L_78;
|
|
StyleSelector_t9B00AE16312CA9F598A45B52F74BC14899CA7362* L_79 = V_17;
|
|
NullCheck(L_79);
|
|
StyleSelectorPartU5BU5D_tBA574FB3E75E94E52874FDB7B05B9048E8A5421B* L_80;
|
|
L_80 = StyleSelector_get_parts_mE6EEAE6825862DDA89947B892B661A865D463CEF(L_79, NULL);
|
|
NullCheck(L_80);
|
|
int32_t L_81 = 0;
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_82 = (L_80)->GetAt(static_cast<il2cpp_array_size_t>(L_81));
|
|
V_18 = L_82;
|
|
String_t* L_83;
|
|
L_83 = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8((&V_18), NULL);
|
|
V_19 = L_83;
|
|
V_20 = (Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F*)NULL;
|
|
int32_t L_84;
|
|
L_84 = StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818((&V_18), NULL);
|
|
V_23 = L_84;
|
|
int32_t L_85 = V_23;
|
|
V_22 = L_85;
|
|
int32_t L_86 = V_22;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_86, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_01ea;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_021a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_022b;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01f4;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_022b;
|
|
}
|
|
|
|
IL_01ea:
|
|
{
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_87 = __this->___orderedClassSelectors_19;
|
|
V_20 = L_87;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01f4:
|
|
{
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_88 = __this->___orderedNameSelectors_17;
|
|
V_20 = L_88;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
String_t* L_89;
|
|
L_89 = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8((&V_18), NULL);
|
|
String_t* L_90 = L_89;
|
|
G_B29_0 = L_90;
|
|
if (L_90)
|
|
{
|
|
G_B30_0 = L_90;
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
G_B30_0 = _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
V_19 = G_B30_0;
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_91 = __this->___orderedTypeSelectors_18;
|
|
V_20 = L_91;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_021a:
|
|
{
|
|
V_19 = _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7;
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_92 = __this->___orderedTypeSelectors_18;
|
|
V_20 = L_92;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_022b:
|
|
{
|
|
int32_t L_93;
|
|
L_93 = StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818((&V_18), NULL);
|
|
int32_t L_94 = L_93;
|
|
RuntimeObject* L_95 = Box(StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3_il2cpp_TypeInfo_var, &L_94);
|
|
String_t* L_96;
|
|
L_96 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralF5B39063A519F09357D03E2CC5A61560903D499C, L_95, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_96, NULL);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_0249:
|
|
{
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_97 = V_20;
|
|
V_24 = (bool)((!(((RuntimeObject*)(Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F*)L_97) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_98 = V_24;
|
|
if (!L_98)
|
|
{
|
|
goto IL_027e;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_99 = V_20;
|
|
String_t* L_100 = V_19;
|
|
NullCheck(L_99);
|
|
bool L_101;
|
|
L_101 = Dictionary_2_TryGetValue_m66B2DAB3FD9D00B7968907AE37116ACE44A0508F(L_99, L_100, (&V_25), Dictionary_2_TryGetValue_m66B2DAB3FD9D00B7968907AE37116ACE44A0508F_RuntimeMethod_var);
|
|
V_26 = L_101;
|
|
bool L_102 = V_26;
|
|
if (!L_102)
|
|
{
|
|
goto IL_0271;
|
|
}
|
|
}
|
|
{
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_103 = V_16;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_104 = V_25;
|
|
NullCheck(L_103);
|
|
L_103->___nextInTable_4 = L_104;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_103->___nextInTable_4), (void*)L_104);
|
|
}
|
|
|
|
IL_0271:
|
|
{
|
|
Dictionary_2_t00B3CBC13D1439C8660D9FC33442C5620590706F* L_105 = V_20;
|
|
String_t* L_106 = V_19;
|
|
StyleComplexSelector_tE46C29F65FDBA48D3152781187401C8B55B7D8AD* L_107 = V_16;
|
|
NullCheck(L_105);
|
|
Dictionary_2_set_Item_m1B1147E192920AA737BB7BA42906DAFF28053E68(L_105, L_106, L_107, Dictionary_2_set_Item_m1B1147E192920AA737BB7BA42906DAFF28053E68_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_027e:
|
|
{
|
|
int32_t L_108 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_108, 1));
|
|
}
|
|
|
|
IL_0285:
|
|
{
|
|
int32_t L_109 = V_15;
|
|
StyleComplexSelectorU5BU5D_tF7B5239DE9BF477DECF97EFBA7CB1D71C45DB857* L_110;
|
|
L_110 = StyleSheet_get_complexSelectors_mFDA750B5FE08F03F83A7A97E04B28C0FAF579C46(__this, NULL);
|
|
NullCheck(L_110);
|
|
V_27 = (bool)((((int32_t)L_109) < ((int32_t)((int32_t)(((RuntimeArray*)L_110)->max_length))))? 1 : 0);
|
|
bool L_111 = V_27;
|
|
if (L_111)
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
|
|
IL_029a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleValueKeyword UnityEngine.UIElements.StyleSheet::ReadKeyword(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleSheet_ReadKeyword_m3EF6F505D32AE9EF52F6A44F52933EED32E30D7A (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_0 = ___0_handle;
|
|
int32_t L_1 = L_0.___valueIndex_1;
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.StyleSheet::ReadFloat(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StyleSheet_ReadFloat_m851DC327CFD6A2D3115007D0898DADF20588FC41 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
float V_2 = 0.0f;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&___0_handle), NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* L_2 = __this->___dimensions_9;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_3 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_4;
|
|
L_4 = StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422(L_2, 3, L_3, StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_5 = V_1;
|
|
float L_6 = L_5.___value_1;
|
|
V_2 = L_6;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_7 = __this->___floats_8;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_8 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
float L_9;
|
|
L_9 = StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6(L_7, 2, L_8, StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
float L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadFloat(UnityEngine.UIElements.StyleValueHandle,System.Single&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadFloat_m59D07CADE21FA61FC29361AB4DF53EEBDB966FA8 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, float* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___floats_8;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
float* L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19(L_0, 2, L_1, L_2, StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19_RuntimeMethod_var);
|
|
V_2 = L_3;
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* L_5 = __this->___dimensions_9;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_6 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4(L_5, 2, L_6, (&V_0), StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
float* L_8 = ___1_value;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_9 = V_0;
|
|
float L_10 = L_9.___value_1;
|
|
*((float*)L_8) = (float)L_10;
|
|
bool L_11 = V_1;
|
|
V_3 = L_11;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
bool L_12 = V_3;
|
|
return L_12;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSheets.Dimension UnityEngine.UIElements.StyleSheet::ReadDimension(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 StyleSheet_ReadDimension_mB3DF91A0800943F98D9309424F856C664D4856F4 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
int32_t L_0;
|
|
L_0 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&___0_handle), NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___floats_8;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_3 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
float L_4;
|
|
L_4 = StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6(L_2, 2, L_3, StyleSheet_CheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m2D9AC1BDD03D4D19F6119BA96A816B0E544EA8D6_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
float L_5 = V_1;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Dimension__ctor_mAFC8E14DD2BD62F0D0C3FBB508460AC77B7FD082((&L_6), L_5, 0, /*hidden argument*/NULL);
|
|
V_2 = L_6;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* L_7 = __this->___dimensions_9;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_8 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_9;
|
|
L_9 = StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422(L_7, 3, L_8, StyleSheet_CheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m543F31A2BC2C53B111CF63828C83C147FD738422_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadDimension(UnityEngine.UIElements.StyleValueHandle,UnityEngine.UIElements.StyleSheets.Dimension&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadDimension_m958623B584936010E8AC24B01D8896C2FC2945F0 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
DimensionU5BU5D_t1EE1B3F9368D444E779CAB3E1CBD9959F8762F4B* L_0 = __this->___dimensions_9;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4(L_0, 3, L_1, L_2, StyleSheet_TryCheckAccess_TisDimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8_m091D6B9F5730AA8CA5CCCAA80686AC8E0A21AEE4_RuntimeMethod_var);
|
|
V_2 = L_3;
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = (0.0f);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___floats_8;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_6 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19(L_5, 2, L_6, (&V_0), StyleSheet_TryCheckAccess_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCDF6B64125D9D83778997110A8BE9FA5FCB40A19_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8* L_8 = ___1_value;
|
|
float L_9 = V_0;
|
|
Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
Dimension__ctor_mAFC8E14DD2BD62F0D0C3FBB508460AC77B7FD082((&L_10), L_9, 0, /*hidden argument*/NULL);
|
|
*(Dimension_t5B1EAB500AE32C3789A2BCC4D43F7A29996DF3F8*)L_8 = L_10;
|
|
bool L_11 = V_1;
|
|
V_3 = L_11;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
bool L_12 = V_3;
|
|
return L_12;
|
|
}
|
|
}
|
|
// UnityEngine.Color UnityEngine.UIElements.StyleSheet::ReadColor(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F StyleSheet_ReadColor_mCB26B134446AA7F4F4E952E68587E536336A36D7 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE7B6BBAB85E97D0515E5CB66187B7739F212B8EA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* L_0 = __this->___colors_10;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE7B6BBAB85E97D0515E5CB66187B7739F212B8EA(L_0, 4, L_1, StyleSheet_CheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mE7B6BBAB85E97D0515E5CB66187B7739F212B8EA_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadColor(UnityEngine.UIElements.StyleValueHandle,UnityEngine.Color&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadColor_mC65A01F21DD5274E56057E5DBCB541C85DF85B81 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m9263AEE145ED330DD7C6B42A0C9364BD3DA985D0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* L_0 = __this->___colors_10;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m9263AEE145ED330DD7C6B42A0C9364BD3DA985D0(L_0, 4, L_1, L_2, StyleSheet_TryCheckAccess_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_m9263AEE145ED330DD7C6B42A0C9364BD3DA985D0_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadString(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadString_mBC300BE75F66B9A247ED5ECFD6E2AD507255ABA5 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855(L_0, ((int32_t)9), L_1, StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadString(UnityEngine.UIElements.StyleValueHandle,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadString_m34DEB2E071C92056B17C1F7F00783BB52C460186 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, String_t** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
String_t** L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F(L_0, ((int32_t)9), L_1, L_2, StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadEnum(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadEnum_mC1EB06FD8E584DE9350937EB798679496CB29087 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855(L_0, 7, L_1, StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadEnum(UnityEngine.UIElements.StyleValueHandle,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadEnum_mCCB0FB4E00A6A66ADF04A65C1DEC26F7017A491F (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, String_t** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
String_t** L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F(L_0, 7, L_1, L_2, StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadVariable(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadVariable_m5DF0761434CC3AABB1F75CFB6ECACDC638373F14 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855(L_0, 8, L_1, StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadVariable(UnityEngine.UIElements.StyleValueHandle,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadVariable_mEDA3CB5ECEF3B670FEB18BCA319A7D55EE620E95 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, String_t** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
String_t** L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F(L_0, 8, L_1, L_2, StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadResourcePath(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadResourcePath_mE417335085D3CDF3BE28AE706EEA4ED809FF6D6D (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855(L_0, 5, L_1, StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadResourcePath(UnityEngine.UIElements.StyleValueHandle,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadResourcePath_mD320BBAF13F365363291258A723635D847CD0288 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, String_t** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
String_t** L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F(L_0, 5, L_1, L_2, StyleSheet_TryCheckAccess_TisString_t_m36EB8B34A939E144FC06C9E6F6339C98A150A10F_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.Object UnityEngine.UIElements.StyleSheet::ReadAssetReference(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* StyleSheet_ReadAssetReference_m054BC1508B5A8950D81ED8AFCDF1DD64F99DC073 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_m8B81FC876E83BF5262CC7EC3B100A34B5F2E9C95_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* V_0 = NULL;
|
|
{
|
|
ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* L_0 = __this->___assets_12;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_m8B81FC876E83BF5262CC7EC3B100A34B5F2E9C95(L_0, 6, L_1, StyleSheet_CheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_m8B81FC876E83BF5262CC7EC3B100A34B5F2E9C95_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadMissingAssetReferenceUrl(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadMissingAssetReferenceUrl_m77D3233E91EEB2D0455C451EDFBCD001A54A9D04 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___strings_11;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
String_t* L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855(L_0, ((int32_t)13), L_1, StyleSheet_CheckAccess_TisString_t_mE52642F947E928F54FB4DFD6F7CF319AF6B9A855_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::TryReadAssetReference(UnityEngine.UIElements.StyleValueHandle,UnityEngine.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_TryReadAssetReference_m2E9C311E4692494508CC6BB3DDEA3A1255DF1A22 (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_TryCheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_mFFB0D1A6D60B98AC0BBC5CA36A7E035DDF33EBFE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* L_0 = __this->___assets_12;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C** L_2 = ___1_value;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = StyleSheet_TryCheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_mFFB0D1A6D60B98AC0BBC5CA36A7E035DDF33EBFE(L_0, 6, L_1, L_2, StyleSheet_TryCheckAccess_TisObject_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_mFFB0D1A6D60B98AC0BBC5CA36A7E035DDF33EBFE_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleValueFunction UnityEngine.UIElements.StyleSheet::ReadFunction(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleSheet_ReadFunction_mD30C649561DFBA5B803A9E45896E9C70D32B727E (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_0 = ___0_handle;
|
|
int32_t L_1 = L_0.___valueIndex_1;
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSheet::ReadFunctionName(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSheet_ReadFunctionName_m9E33930479DD2011BA941DDC943738EE2D46608E (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, 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*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A452795E040C66D151B05EE8648BF3F8016F207);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&___0_handle), NULL);
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)((int32_t)10)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ((int32_t)10);
|
|
RuntimeObject* L_3 = Box(StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var, &L_2);
|
|
int32_t L_4;
|
|
L_4 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&___0_handle), NULL);
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral0A452795E040C66D151B05EE8648BF3F8016F207, L_3, L_6, NULL);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogErrorFormat_m96690322C941D23A125E5769C9803606859A707C(L_7, L_8, NULL);
|
|
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
V_2 = L_9;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_10 = ___0_handle;
|
|
int32_t L_11 = L_10.___valueIndex_1;
|
|
V_0 = L_11;
|
|
int32_t L_12 = V_0;
|
|
String_t* L_13;
|
|
L_13 = StyleValueFunctionExtension_ToUssString_mEA908E13522D1848C3530DAC54A7B02C6F13177C(L_12, NULL);
|
|
V_2 = L_13;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
String_t* L_14 = V_2;
|
|
return L_14;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSheets.ScalableImage UnityEngine.UIElements.StyleSheet::ReadScalableImage(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F StyleSheet_ReadScalableImage_m55F09449CAF5F600A1AAC79A2E7A8B4BE3F2E51D (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_CheckAccess_TisScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_m9588FA67E7A0E35C8F8A011AEA44E7424D5AF181_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
ScalableImageU5BU5D_t8C989174900062AED19A057FDCF0529F8C594A52* L_0 = __this->___scalableImages_16;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_1 = ___0_handle;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F L_2;
|
|
L_2 = StyleSheet_CheckAccess_TisScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_m9588FA67E7A0E35C8F8A011AEA44E7424D5AF181(L_0, ((int32_t)12), L_1, StyleSheet_CheckAccess_TisScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F_m9588FA67E7A0E35C8F8A011AEA44E7424D5AF181_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
ScalableImage_t64F0F6F75D1099EF5D595E70CA1A2A7B9914E80F L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleSheet::CustomStartsWith(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleSheet_CustomStartsWith_mF97D883AB85421A239A8E6F1D54E9C3237F8C349 (String_t* ___0_originalString, String_t* ___1_pattern, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
int32_t G_B14_0 = 0;
|
|
{
|
|
String_t* L_0 = ___0_originalString;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2 = ___1_pattern;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
V_3 = 0;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_4 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_3;
|
|
int32_t L_9 = V_1;
|
|
if ((((int32_t)L_8) >= ((int32_t)L_9)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = ___0_originalString;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
Il2CppChar L_12;
|
|
L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL);
|
|
String_t* L_13 = ___1_pattern;
|
|
int32_t L_14 = V_3;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, L_14, NULL);
|
|
G_B6_0 = ((((int32_t)L_12) == ((int32_t)L_15))? 1 : 0);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
V_4 = (bool)G_B6_0;
|
|
bool L_16 = V_4;
|
|
if (L_16)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_3;
|
|
int32_t L_18 = V_1;
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)L_18))))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = V_1;
|
|
if ((((int32_t)L_19) >= ((int32_t)L_20)))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
int32_t L_22 = V_0;
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)L_22))))
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
G_B12_0 = ((((int32_t)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
G_B14_0 = G_B12_0;
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
G_B14_0 = 1;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
V_5 = (bool)G_B14_0;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
bool L_25 = V_5;
|
|
return L_25;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet__ctor_m1AA637A96DFEE2522AEC2BC1962E7B02D690C1BA (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScriptableObject__ctor_mD037FDB0B487295EA47F79A4DB1BF1846C9087FF(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSheet::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSheet__cctor_mB4A577C781F82F8C3C9AE0B05FCBF01E0E2D1705 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_StaticFields*)il2cpp_codegen_static_fields_for(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var))->___kCustomPropertyMarker_21 = _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_StaticFields*)il2cpp_codegen_static_fields_for(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var))->___kCustomPropertyMarker_21), (void*)_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
|
|
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.StyleSheet/ImportStruct
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_pinvoke(const ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1& unmarshaled, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___styleSheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'styleSheet' of type 'ImportStruct': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___styleSheet_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_pinvoke_back(const ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_pinvoke& marshaled, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1& unmarshaled)
|
|
{
|
|
Exception_t* ___styleSheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'styleSheet' of type 'ImportStruct': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___styleSheet_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_pinvoke_cleanup(ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_com(const ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1& unmarshaled, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___styleSheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'styleSheet' of type 'ImportStruct': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___styleSheet_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_com_back(const ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_com& marshaled, ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1& unmarshaled)
|
|
{
|
|
Exception_t* ___styleSheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'styleSheet' of type 'ImportStruct': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___styleSheet_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleSheet/ImportStruct
|
|
IL2CPP_EXTERN_C void ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshal_com_cleanup(ImportStruct_t8CE0AC0405305E6E27224A07CF153167E99C98B1_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#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.StyleValueFunctionExtension::ToUssString(UnityEngine.UIElements.StyleValueFunction)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueFunctionExtension_ToUssString_mEA908E13522D1848C3530DAC54A7B02C6F13177C (int32_t ___0_svf, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral537FFA4677C3012810F3AAAC6D89BB2919ADD36F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral581430FB5E2AB80389A430804CEF0F2382806766);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A38E1BCE1E9AFE87F2A65EDDA3B0BDE6D8838DF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_svf;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
V_2 = _stringLiteral581430FB5E2AB80389A430804CEF0F2382806766;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
V_2 = _stringLiteral537FFA4677C3012810F3AAAC6D89BB2919ADD36F;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_2 = _stringLiteral7A38E1BCE1E9AFE87F2A65EDDA3B0BDE6D8838DF;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
int32_t L_3 = ___0_svf;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StyleValueFunction_t6A7C77404C9BD98781B216CB2459C11962259F12_il2cpp_TypeInfo_var)), &L_4);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4C828D22EA1BC44F928A150AD9B5EBE43CC0B847)), L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB6EC324CECDA4F5EFE8BDB0781C279DFADEC6B75)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StyleValueFunctionExtension_ToUssString_mEA908E13522D1848C3530DAC54A7B02C6F13177C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
String_t* L_7 = V_2;
|
|
return L_7;
|
|
}
|
|
}
|
|
#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.StyleSelectorPart
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_pinvoke(const StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470& unmarshaled, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___m_Value_0 = il2cpp_codegen_marshal_string(unmarshaled.___m_Value_0);
|
|
marshaled.___m_Type_1 = unmarshaled.___m_Type_1;
|
|
if (unmarshaled.___tempData_2 != NULL)
|
|
{
|
|
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___tempData_2))
|
|
{
|
|
marshaled.___tempData_2 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___tempData_2));
|
|
(marshaled.___tempData_2)->AddRef();
|
|
}
|
|
else
|
|
{
|
|
marshaled.___tempData_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___tempData_2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
marshaled.___tempData_2 = NULL;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_pinvoke_back(const StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_pinvoke& marshaled, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
unmarshaled.___m_Value_0 = il2cpp_codegen_marshal_string_result(marshaled.___m_Value_0);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_Value_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_Value_0));
|
|
int32_t unmarshaledm_Type_temp_1 = 0;
|
|
unmarshaledm_Type_temp_1 = marshaled.___m_Type_1;
|
|
unmarshaled.___m_Type_1 = unmarshaledm_Type_temp_1;
|
|
if (marshaled.___tempData_2 != NULL)
|
|
{
|
|
unmarshaled.___tempData_2 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___tempData_2, Il2CppComObject_il2cpp_TypeInfo_var);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___tempData_2), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___tempData_2, Il2CppComObject_il2cpp_TypeInfo_var));
|
|
|
|
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___tempData_2))
|
|
{
|
|
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___tempData_2), Il2CppIUnknown::IID, marshaled.___tempData_2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
unmarshaled.___tempData_2 = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___tempData_2), (void*)NULL);
|
|
}
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleSelectorPart
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_pinvoke_cleanup(StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_pinvoke& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free(marshaled.___m_Value_0);
|
|
marshaled.___m_Value_0 = NULL;
|
|
if (marshaled.___tempData_2 != NULL)
|
|
{
|
|
(marshaled.___tempData_2)->Release();
|
|
marshaled.___tempData_2 = NULL;
|
|
}
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StyleSelectorPart
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_com(const StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470& unmarshaled, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___m_Value_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___m_Value_0);
|
|
marshaled.___m_Type_1 = unmarshaled.___m_Type_1;
|
|
if (unmarshaled.___tempData_2 != NULL)
|
|
{
|
|
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___tempData_2))
|
|
{
|
|
marshaled.___tempData_2 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___tempData_2));
|
|
(marshaled.___tempData_2)->AddRef();
|
|
}
|
|
else
|
|
{
|
|
marshaled.___tempData_2 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___tempData_2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
marshaled.___tempData_2 = NULL;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_com_back(const StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_com& marshaled, StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
unmarshaled.___m_Value_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___m_Value_0);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_Value_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_Value_0));
|
|
int32_t unmarshaledm_Type_temp_1 = 0;
|
|
unmarshaledm_Type_temp_1 = marshaled.___m_Type_1;
|
|
unmarshaled.___m_Type_1 = unmarshaledm_Type_temp_1;
|
|
if (marshaled.___tempData_2 != NULL)
|
|
{
|
|
unmarshaled.___tempData_2 = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___tempData_2, Il2CppComObject_il2cpp_TypeInfo_var);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___tempData_2), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___tempData_2, Il2CppComObject_il2cpp_TypeInfo_var));
|
|
|
|
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___tempData_2))
|
|
{
|
|
il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___tempData_2), Il2CppIUnknown::IID, marshaled.___tempData_2);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
unmarshaled.___tempData_2 = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___tempData_2), (void*)NULL);
|
|
}
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleSelectorPart
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshal_com_cleanup(StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470_marshaled_com& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___m_Value_0);
|
|
marshaled.___m_Value_0 = NULL;
|
|
if (marshaled.___tempData_2 != NULL)
|
|
{
|
|
(marshaled.___tempData_2)->Release();
|
|
marshaled.___tempData_2 = NULL;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_Value_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// 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)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_Type_1;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleSelectorPart::set_type(UnityEngine.UIElements.StyleSelectorType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleSelectorPart_set_type_mDBA92CF5DF4FB4A806978A0D916300EDE6CA144E (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_Type_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StyleSelectorPart_set_type_mDBA92CF5DF4FB4A806978A0D916300EDE6CA144E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470*>(__this + _offset);
|
|
StyleSelectorPart_set_type_mDBA92CF5DF4FB4A806978A0D916300EDE6CA144E(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// System.String UnityEngine.UIElements.StyleSelectorPart::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleSelectorPart_ToString_m894031E7CAE358204F8D1C334B76DD44A6775BB8 (StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C34C3EEB198D3EF05D02CDDC06335417B86081);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
|
|
String_t* L_2;
|
|
L_2 = StyleSelectorPart_get_value_mDE127D4691DDFF4F0F468DC08C0EB5248E0EE4D8(__this, NULL);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_2);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
|
|
int32_t L_4;
|
|
L_4 = StyleSelectorPart_get_type_m6543B5C01CBAC70D614A461800F50A67B0DD9818(__this, NULL);
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(StyleSelectorType_t425962DE6D175F785FA2B5554D793B71D39430A3_il2cpp_TypeInfo_var, &L_5);
|
|
NullCheck(L_3);
|
|
ArrayElementTypeCheck (L_3, L_6);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_6);
|
|
String_t* L_7;
|
|
L_7 = UnityString_Format_m98A0629641086A1BE20BBF7F4EADDE3FE3877D85(_stringLiteral75C34C3EEB198D3EF05D02CDDC06335417B86081, L_3, NULL);
|
|
V_0 = L_7;
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* StyleSelectorPart_ToString_m894031E7CAE358204F8D1C334B76DD44A6775BB8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = StyleSelectorPart_ToString_m894031E7CAE358204F8D1C334B76DD44A6775BB8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.UIElements.StyleSelectorPart UnityEngine.UIElements.StyleSelectorPart::CreateClass(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 StyleSelectorPart_CreateClass_m5B7F89D3BE469D181E0887E94F4031B92554656E (String_t* ___0_className, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470));
|
|
(&V_0)->___m_Type_1 = 3;
|
|
String_t* L_0 = ___0_className;
|
|
(&V_0)->___m_Value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___m_Value_0), (void*)L_0);
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_1 = V_0;
|
|
V_1 = L_1;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSelectorPart UnityEngine.UIElements.StyleSelectorPart::CreateId(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 StyleSelectorPart_CreateId_m8C5422E6675A02D0A623D8BB2A1F6704299F0357 (String_t* ___0_Id, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470));
|
|
(&V_0)->___m_Type_1 = 6;
|
|
String_t* L_0 = ___0_Id;
|
|
(&V_0)->___m_Value_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___m_Value_0), (void*)L_0);
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_1 = V_0;
|
|
V_1 = L_1;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleSelectorPart UnityEngine.UIElements.StyleSelectorPart::CreatePredicate(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 StyleSelectorPart_CreatePredicate_m9B21A0E45BE2A1EBCA075E7C3EA04216EFB99026 (RuntimeObject* ___0_predicate, const RuntimeMethod* method)
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470));
|
|
(&V_0)->___m_Type_1 = 7;
|
|
RuntimeObject* L_0 = ___0_predicate;
|
|
(&V_0)->___tempData_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___tempData_2), (void*)L_0);
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_1 = V_0;
|
|
V_1 = L_1;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
StyleSelectorPart_tEE5B8ADC7D114C7486CC8301FF96C114FF3C9470 L_2 = V_1;
|
|
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
|
|
// UnityEngine.UIElements.StyleProperty[] UnityEngine.UIElements.StyleRule::get_properties()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* StyleRule_get_properties_m0918E976C1000BC02985AFFE48919B5B7F45E6BC (StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* __this, const RuntimeMethod* method)
|
|
{
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* V_0 = NULL;
|
|
{
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* L_0 = __this->___m_Properties_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
StylePropertyU5BU5D_t1DEB0C869D51682C0583AA00CE776FE8B8C36783* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleRule::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleRule__ctor_mF640EB2B77D62984BD94C4C042E918CE7637AD32 (StyleRule_t69F0C0989004F85BBD9C72BC7A73F79BFE61651E* __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
|
|
#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.StyleValueKeywordExtension::ToUssString(UnityEngine.UIElements.StyleValueKeyword)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueKeywordExtension_ToUssString_m14BE58E94EF31E8F61F98C2A235EAAABC97E3DC1 (int32_t ___0_svk, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA2C46AAEB233C6D2DF0275EF92FB2E56BAFE9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E65690939804B15F12B14D2152EA638DCB3BF40);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA8104AF9ED983BC3636015A3F5EE0BC29ADE71F0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8EE39FC7B687281047DBD20AA11E9FDC82A3B8E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF152B296BCB34070EE69020F0A59C611E4BBA10F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
String_t* V_2 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_svk;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
V_2 = _stringLiteralA8104AF9ED983BC3636015A3F5EE0BC29ADE71F0;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_2 = _stringLiteral0E65690939804B15F12B14D2152EA638DCB3BF40;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
V_2 = _stringLiteralF152B296BCB34070EE69020F0A59C611E4BBA10F;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_2 = _stringLiteralE8EE39FC7B687281047DBD20AA11E9FDC82A3B8E;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
V_2 = _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
V_2 = _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
V_2 = _stringLiteral0AEA2C46AAEB233C6D2DF0275EF92FB2E56BAFE9;
|
|
goto IL_0077;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_3 = ___0_svk;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StyleValueKeyword_tD99A58D549C3614460643F9ED4C5D7B373E1B9E5_il2cpp_TypeInfo_var)), &L_4);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B6FF442851FEAB9E21EF5124A38B0DC49AD47FF)), L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral514F7AE67AA46F6564845DA7FFDF058F997B4817)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StyleValueKeywordExtension_ToUssString_m14BE58E94EF31E8F61F98C2A235EAAABC97E3DC1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
String_t* L_7 = V_2;
|
|
return L_7;
|
|
}
|
|
}
|
|
#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.StyleVariable
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_pinvoke(const StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269& unmarshaled, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___sheet_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'StyleVariable': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_pinvoke_back(const StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_pinvoke& marshaled, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269& unmarshaled)
|
|
{
|
|
Exception_t* ___sheet_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'StyleVariable': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleVariable
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_pinvoke_cleanup(StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StyleVariable
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_com(const StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269& unmarshaled, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___sheet_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'StyleVariable': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_com_back(const StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_com& marshaled, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269& unmarshaled)
|
|
{
|
|
Exception_t* ___sheet_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'StyleVariable': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleVariable
|
|
IL2CPP_EXTERN_C void StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshal_com_cleanup(StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariable::.ctor(System.String,UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariable__ctor_m139006F9D55C2648AA15252352A707F740F56FF1 (StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* __this, String_t* ___0_name, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___1_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___2_handles, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_name;
|
|
__this->___name_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_0), (void*)L_0);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_1 = ___1_sheet;
|
|
__this->___sheet_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___sheet_1), (void*)L_1);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_2 = ___2_handles;
|
|
__this->___handles_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___handles_2), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StyleVariable__ctor_m139006F9D55C2648AA15252352A707F740F56FF1_AdjustorThunk (RuntimeObject* __this, String_t* ___0_name, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___1_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___2_handles, const RuntimeMethod* method)
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*>(__this + _offset);
|
|
StyleVariable__ctor_m139006F9D55C2648AA15252352A707F740F56FF1(_thisAdjusted, ___0_name, ___1_sheet, ___2_handles, method);
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.StyleVariable::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129 (StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
String_t* L_0 = __this->___name_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_3 = __this->___sheet_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^L_4));
|
|
int32_t L_5 = V_0;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_6 = __this->___handles_2;
|
|
NullCheck((RuntimeObject*)L_6);
|
|
int32_t L_7;
|
|
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject*)L_6);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
V_1 = L_8;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129(_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.Void UnityEngine.UIElements.StyleVariableContext::Add(UnityEngine.UIElements.StyleVariable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext_Add_m287537A0FE5B6165509E2FADC0CD0257A1CB1E05 (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 ___0_sv, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mB41E8724CA0DDBEBD2EA8379D51E13F23F49176E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_BinarySearch_mE81A25C14E61997621A470D09BB4BAE1F8CF98F2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_mC1B6D4E6CC94D8BA82A60B2F80CE9684D9345AAE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* G_B4_0 = NULL;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* G_B3_0 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* G_B5_1 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129((&___0_sv), NULL);
|
|
V_0 = L_0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = __this->___m_SortedHash_3;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
int32_t L_3;
|
|
L_3 = List_1_BinarySearch_mE81A25C14E61997621A470D09BB4BAE1F8CF98F2(L_1, L_2, List_1_BinarySearch_mE81A25C14E61997621A470D09BB4BAE1F8CF98F2_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = __this->___m_SortedHash_3;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_6);
|
|
List_1_Insert_mC1B6D4E6CC94D8BA82A60B2F80CE9684D9345AAE(L_6, ((~L_7)), L_8, List_1_Insert_mC1B6D4E6CC94D8BA82A60B2F80CE9684D9345AAE_RuntimeMethod_var);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_9 = __this->___m_Variables_2;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_10 = ___0_sv;
|
|
NullCheck(L_9);
|
|
List_1_Add_mB41E8724CA0DDBEBD2EA8379D51E13F23F49176E_inline(L_9, L_10, List_1_Add_mB41E8724CA0DDBEBD2EA8379D51E13F23F49176E_RuntimeMethod_var);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_11 = __this->___m_Variables_2;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline(L_11, List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
G_B3_0 = __this;
|
|
if (!L_12)
|
|
{
|
|
G_B4_0 = __this;
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = __this->___m_VariableHash_1;
|
|
int32_t L_14;
|
|
L_14 = StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129((&___0_sv), NULL);
|
|
G_B5_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_13, ((int32_t)397)))^L_14));
|
|
G_B5_1 = G_B3_0;
|
|
goto IL_007d;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
int32_t L_15;
|
|
L_15 = StyleVariable_GetHashCode_m5936A2F0EF7628D537142F44DF65A097C8939129((&___0_sv), NULL);
|
|
G_B5_0 = L_15;
|
|
G_B5_1 = G_B4_0;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
G_B5_1->___m_VariableHash_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::AddInitialRange(UnityEngine.UIElements.StyleVariableContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext_AddInitialRange_m7233F55EAB55D2BA5AC0D704251A0444FA28D758 (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___0_other, 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*)&List_1_AddRange_m1A10E697703D67F6551D47C603FFE78E16CE4204_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m3FAF7B4CABAC116EF9E3084CD51B79BC9BF921EA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = ___0_other;
|
|
NullCheck(L_0);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_1 = L_0->___m_Variables_2;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline(L_1, List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_4 = __this->___m_Variables_2;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline(L_4, List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0), NULL);
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_6 = ___0_other;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___m_VariableHash_1;
|
|
__this->___m_VariableHash_1 = L_7;
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_8 = __this->___m_Variables_2;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_9 = ___0_other;
|
|
NullCheck(L_9);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_10 = L_9->___m_Variables_2;
|
|
NullCheck(L_8);
|
|
List_1_AddRange_m3FAF7B4CABAC116EF9E3084CD51B79BC9BF921EA(L_8, L_10, List_1_AddRange_m3FAF7B4CABAC116EF9E3084CD51B79BC9BF921EA_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_11 = __this->___m_SortedHash_3;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_12 = ___0_other;
|
|
NullCheck(L_12);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_13 = L_12->___m_SortedHash_3;
|
|
NullCheck(L_11);
|
|
List_1_AddRange_m1A10E697703D67F6551D47C603FFE78E16CE4204(L_11, L_13, List_1_AddRange_m1A10E697703D67F6551D47C603FFE78E16CE4204_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext_Clear_m409FA7B9B00D7E0851CD5C5ED20682690D0E7FDC (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m00AFA4A0337BBF3DC699C14107B3594CA904E971_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_0 = __this->___m_Variables_2;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline(L_0, List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_1) > ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_3 = __this->___m_Variables_2;
|
|
NullCheck(L_3);
|
|
List_1_Clear_m00AFA4A0337BBF3DC699C14107B3594CA904E971_inline(L_3, List_1_Clear_m00AFA4A0337BBF3DC699C14107B3594CA904E971_RuntimeMethod_var);
|
|
__this->___m_VariableHash_1 = 0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = __this->___m_SortedHash_3;
|
|
NullCheck(L_4);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_4, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext__ctor_mFECB2428A5FAEA2A6D361D51ADB2292965F0908E (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0C25EDC3BBFEAFC872D99F3EFF19813AA75D02C6_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_0 = (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777*)il2cpp_codegen_object_new(List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m0C25EDC3BBFEAFC872D99F3EFF19813AA75D02C6(L_0, List_1__ctor_m0C25EDC3BBFEAFC872D99F3EFF19813AA75D02C6_RuntimeMethod_var);
|
|
__this->___m_Variables_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Variables_2), (void*)L_0);
|
|
__this->___m_VariableHash_1 = 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_SortedHash_3 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SortedHash_3), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::.ctor(UnityEngine.UIElements.StyleVariableContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext__ctor_m67039FC8535557AF42934260B3BDF917A539DFA9 (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCC0E71080DE343C1A527526A1AC2DBEC355CEA6C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE716C60A18D9455EF0C58216ECCE11441F8EA90B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = ___0_other;
|
|
NullCheck(L_0);
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_1 = L_0->___m_Variables_2;
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_2 = (List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777*)il2cpp_codegen_object_new(List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_mE716C60A18D9455EF0C58216ECCE11441F8EA90B(L_2, L_1, List_1__ctor_mE716C60A18D9455EF0C58216ECCE11441F8EA90B_RuntimeMethod_var);
|
|
__this->___m_Variables_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Variables_2), (void*)L_2);
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_3 = ___0_other;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___m_VariableHash_1;
|
|
__this->___m_VariableHash_1 = L_4;
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_5 = ___0_other;
|
|
NullCheck(L_5);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = L_5->___m_SortedHash_3;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
List_1__ctor_mCC0E71080DE343C1A527526A1AC2DBEC355CEA6C(L_7, L_6, List_1__ctor_mCC0E71080DE343C1A527526A1AC2DBEC355CEA6C_RuntimeMethod_var);
|
|
__this->___m_SortedHash_3 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SortedHash_3), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleVariableContext::TryFindVariable(System.String,UnityEngine.UIElements.StyleVariable&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleVariableContext_TryFindVariable_m67DE560D44BE35AB5D4AA315C2C3208E9E736E8E (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, String_t* ___0_name, StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* ___1_v, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_0 = __this->___m_Variables_2;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_inline(L_0, List_1_get_Count_m28DF960E8AB7BB5A577DB76F89CEF2489E776610_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_2 = __this->___m_Variables_2;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_4;
|
|
L_4 = List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853(L_2, L_3, List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853_RuntimeMethod_var);
|
|
String_t* L_5 = L_4.___name_0;
|
|
String_t* L_6 = ___0_name;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, L_6, NULL);
|
|
V_1 = L_7;
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* L_9 = ___1_v;
|
|
List_1_t4EB7DA35FB6C543101A0C09A56EE4B652F4E1777* L_10 = __this->___m_Variables_2;
|
|
int32_t L_11 = V_0;
|
|
NullCheck(L_10);
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_12;
|
|
L_12 = List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853(L_10, L_11, List_1_get_Item_mA124F3E047E65F2F4B174B25FCE125E08BC17853_RuntimeMethod_var);
|
|
*(StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*)L_9 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*)L_9)->___name_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*)L_9)->___sheet_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269*)L_9)->___handles_2), (void*)NULL);
|
|
#endif
|
|
V_2 = (bool)1;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
int32_t L_14 = V_0;
|
|
V_3 = (bool)((((int32_t)((((int32_t)L_14) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269* L_16 = ___1_v;
|
|
il2cpp_codegen_initobj(L_16, sizeof(StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269));
|
|
V_2 = (bool)0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
bool L_17 = V_2;
|
|
return L_17;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.StyleVariableContext::GetVariableHash()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableContext_GetVariableHash_m432F7379E62997987F9B7D21888D67B62569A9D5 (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_VariableHash_1;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableContext::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableContext__cctor_m1342FDDC099E232904455A28753781AD7F9487CC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = (StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527*)il2cpp_codegen_object_new(StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
StyleVariableContext__ctor_mFECB2428A5FAEA2A6D361D51ADB2292965F0908E(L_0, NULL);
|
|
((StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_StaticFields*)il2cpp_codegen_static_fields_for(StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var))->___none_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_StaticFields*)il2cpp_codegen_static_fields_for(StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527_il2cpp_TypeInfo_var))->___none_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
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.StyleVariableResolver::get_currentSheet()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992* L_0 = (ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992*)(&__this->___m_CurrentContext_7);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_1 = L_0->___sheet_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleValueHandle[] UnityEngine.UIElements.StyleVariableResolver::get_currentHandles()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992* L_0 = (ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992*)(&__this->___m_CurrentContext_7);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_1 = L_0->___handles_1;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyValue> UnityEngine.UIElements.StyleVariableResolver::get_resolvedValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* StyleVariableResolver_get_resolvedValues_m75EB5A6B4C8F4BA8D36EA4A6DE514645DA44D712 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_0 = __this->___m_ResolvedValues_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleVariableContext UnityEngine.UIElements.StyleVariableResolver::get_variableContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* StyleVariableResolver_get_variableContext_m3775C7C5A8A41C7B3BDB487587A6A333C15606E4 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = __this->___U3CvariableContextU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::set_variableContext(UnityEngine.UIElements.StyleVariableContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_set_variableContext_m81CE99C4FF6661D64A3D838B54887B589D9A112F (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = ___0_value;
|
|
__this->___U3CvariableContextU3Ek__BackingField_8 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CvariableContextU3Ek__BackingField_8), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::Init(UnityEngine.UIElements.StyleProperty,UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_Init_mD906509FA4B2D98849009E5BEAD1E01F3CC2699B (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* ___0_property, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___1_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___2_handles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m51A5D7D883AF79511066B64E4CBC23C3DB6CCF54_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_mA8BCDF8A5DC47FB9DC9967E8423955DD37F0F190_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_0 = __this->___m_ResolvedValues_3;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m51A5D7D883AF79511066B64E4CBC23C3DB6CCF54_inline(L_0, List_1_Clear_m51A5D7D883AF79511066B64E4CBC23C3DB6CCF54_RuntimeMethod_var);
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* L_1 = __this->___m_ContextStack_6;
|
|
NullCheck(L_1);
|
|
Stack_1_Clear_mA8BCDF8A5DC47FB9DC9967E8423955DD37F0F190(L_1, Stack_1_Clear_mA8BCDF8A5DC47FB9DC9967E8423955DD37F0F190_RuntimeMethod_var);
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_2 = ___0_property;
|
|
__this->___m_Property_5 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Property_5), (void*)L_2);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_3 = ___1_sheet;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_4 = ___2_handles;
|
|
StyleVariableResolver_PushContext_m905420AD7B5F9CA63EA3A99F48A6A8C4CFFBF1BB(__this, L_3, L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::PushContext(UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_PushContext_m905420AD7B5F9CA63EA3A99F48A6A8C4CFFBF1BB (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___1_handles, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m20B8F6926877157FC7CA556376F45B0FB4BB779A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992));
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_0 = ___0_sheet;
|
|
(&V_0)->___sheet_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___sheet_0), (void*)L_0);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_1 = ___1_handles;
|
|
(&V_0)->___handles_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___handles_1), (void*)L_1);
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 L_2 = V_0;
|
|
__this->___m_CurrentContext_7 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_CurrentContext_7))->___sheet_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_CurrentContext_7))->___handles_1), (void*)NULL);
|
|
#endif
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* L_3 = __this->___m_ContextStack_6;
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 L_4 = __this->___m_CurrentContext_7;
|
|
NullCheck(L_3);
|
|
Stack_1_Push_m20B8F6926877157FC7CA556376F45B0FB4BB779A(L_3, L_4, Stack_1_Push_m20B8F6926877157FC7CA556376F45B0FB4BB779A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::PopContext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_PopContext_m86C19BEEF9C65B4BF0B328F93B17EF690CD0180A (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_m011BD98974FC916CFDA7912EAC8C9D363A0F8928_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m65349BF61582D9D047A8D6F160A750AF79C6957D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* L_0 = __this->___m_ContextStack_6;
|
|
NullCheck(L_0);
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 L_1;
|
|
L_1 = Stack_1_Pop_m65349BF61582D9D047A8D6F160A750AF79C6957D(L_0, Stack_1_Pop_m65349BF61582D9D047A8D6F160A750AF79C6957D_RuntimeMethod_var);
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* L_2 = __this->___m_ContextStack_6;
|
|
NullCheck(L_2);
|
|
ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992 L_3;
|
|
L_3 = Stack_1_Peek_m011BD98974FC916CFDA7912EAC8C9D363A0F8928(L_2, Stack_1_Peek_m011BD98974FC916CFDA7912EAC8C9D363A0F8928_RuntimeMethod_var);
|
|
__this->___m_CurrentContext_7 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_CurrentContext_7))->___sheet_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_CurrentContext_7))->___handles_1), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::AddValue(UnityEngine.UIElements.StyleValueHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_AddValue_m62206748596D3BC58ED3B63197614248ADBBF39B (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D ___0_handle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_0 = __this->___m_ResolvedValues_3;
|
|
il2cpp_codegen_initobj((&V_0), sizeof(StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2));
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_1;
|
|
L_1 = StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA(__this, NULL);
|
|
(&V_0)->___sheet_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___sheet_0), (void*)L_1);
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_2 = ___0_handle;
|
|
(&V_0)->___handle_1 = L_2;
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 L_3 = V_0;
|
|
NullCheck(L_0);
|
|
List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_inline(L_0, L_3, List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleVariableResolver::ResolveVarFunction(System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleVariableResolver_ResolveVarFunction_mE00F9D6362DAA156EBDAE76F1F2D6A80FB61C7E5 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, int32_t* ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Clear_mB5DD9A67516D41D7A82FD1B0ABFA38AAA8593C0E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
{
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* L_0 = __this->___m_ResolvedVarStack_4;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mB5DD9A67516D41D7A82FD1B0ABFA38AAA8593C0E(L_0, Stack_1_Clear_mB5DD9A67516D41D7A82FD1B0ABFA38AAA8593C0E_RuntimeMethod_var);
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_1;
|
|
L_1 = StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA(__this, NULL);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_2;
|
|
L_2 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
int32_t* L_3 = ___0_index;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
StyleVariableResolver_ParseVarFunction_mD4A13A63F7D98DA760604D611B9DDABDFAD682BA(L_1, L_2, L_3, (&V_0), (&V_1), NULL);
|
|
int32_t* L_4 = ___0_index;
|
|
int32_t L_5 = V_0;
|
|
String_t* L_6 = V_1;
|
|
int32_t L_7;
|
|
L_7 = StyleVariableResolver_ResolveVarFunction_mB000A4AA0547EB3E6B7C0D5B1F20E7CACDB89622(__this, L_4, L_5, L_6, NULL);
|
|
V_2 = L_7;
|
|
int32_t L_8 = V_2;
|
|
V_3 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_9 = V_3;
|
|
return L_9;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveVarFunction(System.Int32&,System.Int32,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveVarFunction_mB000A4AA0547EB3E6B7C0D5B1F20E7CACDB89622 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, int32_t* ___0_index, int32_t ___1_argc, String_t* ___2_varName, 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*)&StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4351F4420DAC70B43EE9931A2C0D31288835FC4);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
String_t* L_0 = ___2_varName;
|
|
int32_t L_1;
|
|
L_1 = StyleVariableResolver_ResolveVariable_mA9A45E2DF3F9A4707C5D440B4C8BCA1BEADF76D6(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___1_argc;
|
|
G_B3_0 = ((((int32_t)L_3) > ((int32_t)1))? 1 : 0);
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_5;
|
|
L_5 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
int32_t* L_6 = ___0_index;
|
|
int32_t* L_7 = ___0_index;
|
|
int32_t L_8 = *((int32_t*)L_7);
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
int32_t L_9 = V_3;
|
|
*((int32_t*)L_6) = (int32_t)L_9;
|
|
int32_t L_10 = V_3;
|
|
NullCheck(L_5);
|
|
int32_t L_11 = L_10;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_12 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
V_2 = L_12;
|
|
int32_t L_13;
|
|
L_13 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_2), NULL);
|
|
int32_t L_14;
|
|
L_14 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_2), NULL);
|
|
int32_t L_15 = L_14;
|
|
RuntimeObject* L_16 = Box(StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var, &L_15);
|
|
String_t* L_17;
|
|
L_17 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralE4351F4420DAC70B43EE9931A2C0D31288835FC4, L_16, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)((((int32_t)L_13) == ((int32_t)((int32_t)11)))? 1 : 0), L_17, NULL);
|
|
int32_t L_18;
|
|
L_18 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_2), NULL);
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)11)))))
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_19 = ___0_index;
|
|
int32_t L_20 = *((int32_t*)L_19);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_21;
|
|
L_21 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
NullCheck(L_21);
|
|
G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_20, 1))) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))))? 1 : 0);
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
V_4 = (bool)G_B7_0;
|
|
bool L_22 = V_4;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_23 = ___0_index;
|
|
int32_t* L_24 = ___0_index;
|
|
int32_t L_25 = *((int32_t*)L_24);
|
|
*((int32_t*)L_23) = (int32_t)((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
int32_t* L_26 = ___0_index;
|
|
int32_t L_27;
|
|
L_27 = StyleVariableResolver_ResolveFallback_mB9AAE3A0B198D66083E92DAEB3A5A575F3927457(__this, L_26, NULL);
|
|
V_0 = L_27;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
int32_t L_28 = V_0;
|
|
V_5 = L_28;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
int32_t L_29 = V_5;
|
|
return L_29;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StyleVariableResolver::ValidateResolvedValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StyleVariableResolver_ValidateResolvedValues_mD5DE36CE9BF36FB47F51DC217E737F0F91658108 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __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*)&StylePropertyCache_t026956492B146632E15AD91F6AC0793E64D8CF00_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A6344B3113734F6F0041E886A4E2FDFD6FC9FBC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6* V_1 = NULL;
|
|
MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
{
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_0 = __this->___m_Property_5;
|
|
NullCheck(L_0);
|
|
bool L_1 = L_0->___isCustomProperty_3;
|
|
V_3 = L_1;
|
|
bool L_2 = V_3;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
V_4 = (bool)1;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_3 = __this->___m_Property_5;
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = StyleProperty_get_name_mB093E71395D32578890C11C6CED189B06F495015(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(StylePropertyCache_t026956492B146632E15AD91F6AC0793E64D8CF00_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = StylePropertyCache_TryGetSyntax_mC0BC9AEE43ACCB89541554339EB12EC2D09A4F77(L_4, (&V_0), NULL);
|
|
V_5 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_5;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
StyleProperty_tD117EB807BAA83855E65AC56B8D6FB84D6F7CF83* L_7 = __this->___m_Property_5;
|
|
NullCheck(L_7);
|
|
String_t* L_8;
|
|
L_8 = StyleProperty_get_name_mB093E71395D32578890C11C6CED189B06F495015(L_7, NULL);
|
|
String_t* L_9;
|
|
L_9 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral6A6344B3113734F6F0041E886A4E2FDFD6FC9FBC, L_8, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogAssertion_m71A412A496EAB476FFF6253618C706B2F1E4AFF0(L_9, NULL);
|
|
V_4 = (bool)0;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263* L_10 = ((StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_StaticFields*)il2cpp_codegen_static_fields_for(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var))->___s_SyntaxParser_1;
|
|
String_t* L_11 = V_0;
|
|
NullCheck(L_10);
|
|
Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6* L_12;
|
|
L_12 = StyleSyntaxParser_Parse_mA1B3223B21B613631673FB591DC1AC15AC19DD59(L_10, L_11, NULL);
|
|
V_1 = L_12;
|
|
StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248* L_13 = __this->___m_Matcher_2;
|
|
Expression_tCF765985229BD440260CA349B7CCD263AEF4A7C6* L_14 = V_1;
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_15 = __this->___m_ResolvedValues_3;
|
|
NullCheck(L_13);
|
|
MatchResult_t466703B46AB8050EABFF2E93F9439AD049D2566A L_16;
|
|
L_16 = StylePropertyValueMatcher_Match_m9200D93F5E6516142F71A23B2BA83AA98409FC1D(L_13, L_14, L_15, NULL);
|
|
V_2 = L_16;
|
|
bool L_17;
|
|
L_17 = MatchResult_get_success_mDCB87B0AB8A1E77378EAE079EC6DC9BF8C87347A((&V_2), NULL);
|
|
V_4 = L_17;
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
bool L_18 = V_4;
|
|
return L_18;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveVariable(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveVariable_mA9A45E2DF3F9A4707C5D440B4C8BCA1BEADF76D6 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, String_t* ___0_variableName, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFCF2B2ECBAC0430A3776BA1C3AE0B4B59733CB85_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Contains_m2295EAFF1463FC139CCF3E975EC2B7000B18CE7A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mFE7E2A46CC49662C0B06E3F80D39FA8986EE690D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m6735A1D45311268768814737E1F1884B3615CA20_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
int32_t V_9 = 0;
|
|
String_t* V_10 = NULL;
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
bool V_12 = false;
|
|
int32_t G_B14_0 = 0;
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0;
|
|
L_0 = StyleVariableResolver_get_variableContext_m3775C7C5A8A41C7B3BDB487587A6A333C15606E4_inline(__this, NULL);
|
|
String_t* L_1 = ___0_variableName;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = StyleVariableContext_TryFindVariable_m67DE560D44BE35AB5D4AA315C2C3208E9E736E8E(L_0, L_1, (&V_0), NULL);
|
|
V_2 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 2;
|
|
goto IL_0137;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* L_4 = __this->___m_ResolvedVarStack_4;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_5 = V_0;
|
|
String_t* L_6 = L_5.___name_0;
|
|
NullCheck(L_4);
|
|
bool L_7;
|
|
L_7 = Stack_1_Contains_m2295EAFF1463FC139CCF3E975EC2B7000B18CE7A(L_4, L_6, Stack_1_Contains_m2295EAFF1463FC139CCF3E975EC2B7000B18CE7A_RuntimeMethod_var);
|
|
V_4 = L_7;
|
|
bool L_8 = V_4;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 2;
|
|
goto IL_0137;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* L_9 = __this->___m_ResolvedVarStack_4;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_10 = V_0;
|
|
String_t* L_11 = L_10.___name_0;
|
|
NullCheck(L_9);
|
|
Stack_1_Push_m6735A1D45311268768814737E1F1884B3615CA20(L_9, L_11, Stack_1_Push_m6735A1D45311268768814737E1F1884B3615CA20_RuntimeMethod_var);
|
|
V_1 = 0;
|
|
V_5 = 0;
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_12 = __this->___m_ResolvedValues_3;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = List_1_get_Count_mFCF2B2ECBAC0430A3776BA1C3AE0B4B59733CB85_inline(L_12, List_1_get_Count_mFCF2B2ECBAC0430A3776BA1C3AE0B4B59733CB85_RuntimeMethod_var);
|
|
V_7 = (bool)((((int32_t)((int32_t)il2cpp_codegen_add(L_13, 1))) > ((int32_t)((int32_t)100)))? 1 : 0);
|
|
bool L_14 = V_7;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 1;
|
|
goto IL_0137;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_15 = V_0;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_16 = L_15.___handles_2;
|
|
int32_t L_17 = V_5;
|
|
NullCheck(L_16);
|
|
int32_t L_18 = L_17;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
|
|
V_6 = L_19;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_20 = V_6;
|
|
bool L_21;
|
|
L_21 = StyleSheetExtensions_IsVarFunction_mC992EF8AACF37ACA03E6564DCF595276B0B49E89(L_20, NULL);
|
|
V_8 = L_21;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_23 = V_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_24 = L_23.___sheet_1;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_25 = V_0;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_26 = L_25.___handles_2;
|
|
StyleVariableResolver_PushContext_m905420AD7B5F9CA63EA3A99F48A6A8C4CFFBF1BB(__this, L_24, L_26, NULL);
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_27 = V_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_28 = L_27.___sheet_1;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_29 = V_0;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_30 = L_29.___handles_2;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
StyleVariableResolver_ParseVarFunction_mD4A13A63F7D98DA760604D611B9DDABDFAD682BA(L_28, L_30, (&V_5), (&V_9), (&V_10), NULL);
|
|
int32_t L_31 = V_9;
|
|
String_t* L_32 = V_10;
|
|
int32_t L_33;
|
|
L_33 = StyleVariableResolver_ResolveVarFunction_mB000A4AA0547EB3E6B7C0D5B1F20E7CACDB89622(__this, (&V_5), L_31, L_32, NULL);
|
|
V_1 = L_33;
|
|
StyleVariableResolver_PopContext_m86C19BEEF9C65B4BF0B328F93B17EF690CD0180A(__this, NULL);
|
|
goto IL_0104;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_34 = __this->___m_ResolvedValues_3;
|
|
il2cpp_codegen_initobj((&V_11), sizeof(StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2));
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_35 = V_0;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_36 = L_35.___sheet_1;
|
|
(&V_11)->___sheet_0 = L_36;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_11)->___sheet_0), (void*)L_36);
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_37 = V_6;
|
|
(&V_11)->___handle_1 = L_37;
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 L_38 = V_11;
|
|
NullCheck(L_34);
|
|
List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_inline(L_34, L_38, List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
int32_t L_39 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
int32_t L_40 = V_5;
|
|
StyleVariable_t5D4DEC936102A13961F4F2C6214B83D6CDC56269 L_41 = V_0;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_42 = L_41.___handles_2;
|
|
NullCheck(L_42);
|
|
if ((((int32_t)L_40) >= ((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))))
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_43 = V_1;
|
|
G_B14_0 = ((((int32_t)L_43) == ((int32_t)0))? 1 : 0);
|
|
goto IL_011e;
|
|
}
|
|
|
|
IL_011d:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
V_12 = (bool)G_B14_0;
|
|
bool L_44 = V_12;
|
|
if (L_44)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* L_45 = __this->___m_ResolvedVarStack_4;
|
|
NullCheck(L_45);
|
|
String_t* L_46;
|
|
L_46 = Stack_1_Pop_mFE7E2A46CC49662C0B06E3F80D39FA8986EE690D(L_45, Stack_1_Pop_mFE7E2A46CC49662C0B06E3F80D39FA8986EE690D_RuntimeMethod_var);
|
|
int32_t L_47 = V_1;
|
|
V_3 = L_47;
|
|
goto IL_0137;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
int32_t L_48 = V_3;
|
|
return L_48;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.StyleVariableResolver/Result UnityEngine.UIElements.StyleVariableResolver::ResolveFallback(System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleVariableResolver_ResolveFallback_mB9AAE3A0B198D66083E92DAEB3A5A575F3927457 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, int32_t* ___0_index, 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*)&List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4351F4420DAC70B43EE9931A2C0D31288835FC4);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
int32_t V_7 = 0;
|
|
bool V_8 = false;
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
bool V_10 = false;
|
|
int32_t V_11 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0105;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_0;
|
|
L_0 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
int32_t* L_1 = ___0_index;
|
|
int32_t L_2 = *((int32_t*)L_1);
|
|
NullCheck(L_0);
|
|
int32_t L_3 = L_2;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
V_1 = L_4;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_5 = V_1;
|
|
bool L_6;
|
|
L_6 = StyleSheetExtensions_IsVarFunction_mC992EF8AACF37ACA03E6564DCF595276B0B49E89(L_5, NULL);
|
|
V_2 = L_6;
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_00d1;
|
|
}
|
|
}
|
|
{
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_8;
|
|
L_8 = StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA(__this, NULL);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_9;
|
|
L_9 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
int32_t* L_10 = ___0_index;
|
|
il2cpp_codegen_runtime_class_init_inline(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
StyleVariableResolver_ParseVarFunction_mD4A13A63F7D98DA760604D611B9DDABDFAD682BA(L_8, L_9, L_10, (&V_3), (&V_4), NULL);
|
|
String_t* L_11 = V_4;
|
|
int32_t L_12;
|
|
L_12 = StyleVariableResolver_ResolveVariable_mA9A45E2DF3F9A4707C5D440B4C8BCA1BEADF76D6(__this, L_11, NULL);
|
|
V_0 = L_12;
|
|
int32_t L_13 = V_0;
|
|
V_5 = (bool)((((int32_t)L_13) == ((int32_t)2))? 1 : 0);
|
|
bool L_14 = V_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_00ce;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_3;
|
|
V_6 = (bool)((((int32_t)L_15) > ((int32_t)1))? 1 : 0);
|
|
bool L_16 = V_6;
|
|
if (!L_16)
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_17;
|
|
L_17 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
int32_t* L_18 = ___0_index;
|
|
int32_t* L_19 = ___0_index;
|
|
int32_t L_20 = *((int32_t*)L_19);
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
int32_t L_21 = V_7;
|
|
*((int32_t*)L_18) = (int32_t)L_21;
|
|
int32_t L_22 = V_7;
|
|
NullCheck(L_17);
|
|
int32_t L_23 = L_22;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_24 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_1 = L_24;
|
|
int32_t L_25;
|
|
L_25 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_1), NULL);
|
|
int32_t L_26;
|
|
L_26 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_1), NULL);
|
|
int32_t L_27 = L_26;
|
|
RuntimeObject* L_28 = Box(StyleValueType_tC3253FE046DBB95224A74D13B534D015CC4AADDE_il2cpp_TypeInfo_var, &L_27);
|
|
String_t* L_29;
|
|
L_29 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteralE4351F4420DAC70B43EE9931A2C0D31288835FC4, L_28, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)((((int32_t)L_25) == ((int32_t)((int32_t)11)))? 1 : 0), L_29, NULL);
|
|
int32_t L_30;
|
|
L_30 = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9((&V_1), NULL);
|
|
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)11)))))
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_31 = ___0_index;
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_33;
|
|
L_33 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
NullCheck(L_33);
|
|
G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_32, 1))) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
V_8 = (bool)G_B7_0;
|
|
bool L_34 = V_8;
|
|
if (!L_34)
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_35 = ___0_index;
|
|
int32_t* L_36 = ___0_index;
|
|
int32_t L_37 = *((int32_t*)L_36);
|
|
*((int32_t*)L_35) = (int32_t)((int32_t)il2cpp_codegen_add(L_37, 1));
|
|
int32_t* L_38 = ___0_index;
|
|
int32_t L_39;
|
|
L_39 = StyleVariableResolver_ResolveFallback_mB9AAE3A0B198D66083E92DAEB3A5A575F3927457(__this, L_38, NULL);
|
|
V_0 = L_39;
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
}
|
|
|
|
IL_00ce:
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00d1:
|
|
{
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_40 = __this->___m_ResolvedValues_3;
|
|
il2cpp_codegen_initobj((&V_9), sizeof(StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2));
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_41;
|
|
L_41 = StyleVariableResolver_get_currentSheet_mCA3C11C583BEA675EC5F9838F7C78CF141C178DA(__this, NULL);
|
|
(&V_9)->___sheet_0 = L_41;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_9)->___sheet_0), (void*)L_41);
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_42 = V_1;
|
|
(&V_9)->___handle_1 = L_42;
|
|
StylePropertyValue_tED32F617FABE99611B213BFCF9D1D909E7F141C2 L_43 = V_9;
|
|
NullCheck(L_40);
|
|
List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_inline(L_40, L_43, List_1_Add_m0816FF64696BD2E13C77ACA78959BF6927C064D1_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
int32_t* L_44 = ___0_index;
|
|
int32_t* L_45 = ___0_index;
|
|
int32_t L_46 = *((int32_t*)L_45);
|
|
*((int32_t*)L_44) = (int32_t)((int32_t)il2cpp_codegen_add(L_46, 1));
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
int32_t* L_47 = ___0_index;
|
|
int32_t L_48 = *((int32_t*)L_47);
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_49;
|
|
L_49 = StyleVariableResolver_get_currentHandles_m98A0796473D12DFE9242EDBE0AB607571B9DC833(__this, NULL);
|
|
NullCheck(L_49);
|
|
if ((((int32_t)L_48) >= ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_0;
|
|
G_B17_0 = ((((int32_t)L_50) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0118;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
G_B17_0 = 0;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
V_10 = (bool)G_B17_0;
|
|
bool L_51 = V_10;
|
|
if (L_51)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_52 = V_0;
|
|
V_11 = L_52;
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
int32_t L_53 = V_11;
|
|
return L_53;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::ParseVarFunction(UnityEngine.UIElements.StyleSheet,UnityEngine.UIElements.StyleValueHandle[],System.Int32&,System.Int32&,System.String&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver_ParseVarFunction_mD4A13A63F7D98DA760604D611B9DDABDFAD682BA (StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___0_sheet, StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* ___1_handles, int32_t* ___2_index, int32_t* ___3_argCount, String_t** ___4_variableName, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t* L_0 = ___3_argCount;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_1 = ___0_sheet;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_2 = ___1_handles;
|
|
int32_t* L_3 = ___2_index;
|
|
int32_t* L_4 = ___2_index;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
int32_t L_6 = V_0;
|
|
*((int32_t*)L_3) = (int32_t)L_6;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_8 = L_7;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_9 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
NullCheck(L_1);
|
|
float L_10;
|
|
L_10 = StyleSheet_ReadFloat_m851DC327CFD6A2D3115007D0898DADF20588FC41(L_1, L_9, NULL);
|
|
*((int32_t*)L_0) = (int32_t)il2cpp_codegen_cast_double_to_int<int32_t>(L_10);
|
|
String_t** L_11 = ___4_variableName;
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* L_12 = ___0_sheet;
|
|
StyleValueHandleU5BU5D_t66B7732469E9E30B1FB9A6E386315DAB36914ADE* L_13 = ___1_handles;
|
|
int32_t* L_14 = ___2_index;
|
|
int32_t* L_15 = ___2_index;
|
|
int32_t L_16 = *((int32_t*)L_15);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
int32_t L_17 = V_0;
|
|
*((int32_t*)L_14) = (int32_t)L_17;
|
|
int32_t L_18 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_19 = L_18;
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D L_20 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
|
|
NullCheck(L_12);
|
|
String_t* L_21;
|
|
L_21 = StyleSheet_ReadVariable_m5DF0761434CC3AABB1F75CFB6ECACDC638373F14(L_12, L_20, NULL);
|
|
*((RuntimeObject**)L_11) = (RuntimeObject*)L_21;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_21);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver__ctor_m717C48C9FD5E8CF77C0A7A132412E9D1737BE795 (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m5DEA6A9EF0E521472F19D3A747780F7274B36F04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m335E848ED0B875E3163CBDF6F077EF89DE99D59E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_mC5657DF3C282DA5CDD0BBD6368F49EC16FDC47CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248* L_0 = (StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248*)il2cpp_codegen_object_new(StylePropertyValueMatcher_tE39FB52A804864748CF9C473A45F065A89500248_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
StylePropertyValueMatcher__ctor_mF7898D0C87D9285AA99E046209BF4A8F19E4940B(L_0, NULL);
|
|
__this->___m_Matcher_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Matcher_2), (void*)L_0);
|
|
List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122* L_1 = (List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122*)il2cpp_codegen_object_new(List_1_t893BC4E6EA21D89E7107414FB1199B089EB9F122_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m5DEA6A9EF0E521472F19D3A747780F7274B36F04(L_1, List_1__ctor_m5DEA6A9EF0E521472F19D3A747780F7274B36F04_RuntimeMethod_var);
|
|
__this->___m_ResolvedValues_3 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ResolvedValues_3), (void*)L_1);
|
|
Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094* L_2 = (Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094*)il2cpp_codegen_object_new(Stack_1_tD770B7BA3385BBF3A1703E386B6006FF670C5094_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Stack_1__ctor_m335E848ED0B875E3163CBDF6F077EF89DE99D59E(L_2, Stack_1__ctor_m335E848ED0B875E3163CBDF6F077EF89DE99D59E_RuntimeMethod_var);
|
|
__this->___m_ResolvedVarStack_4 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ResolvedVarStack_4), (void*)L_2);
|
|
Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C* L_3 = (Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C*)il2cpp_codegen_object_new(Stack_1_t0B236E77382B6037C04F4090B3C6259495694C1C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
Stack_1__ctor_mC5657DF3C282DA5CDD0BBD6368F49EC16FDC47CB(L_3, Stack_1__ctor_mC5657DF3C282DA5CDD0BBD6368F49EC16FDC47CB_RuntimeMethod_var);
|
|
__this->___m_ContextStack_6 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ContextStack_6), (void*)L_3);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleVariableResolver::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleVariableResolver__cctor_m78680A7CBBBF55F9E7D7EA7ED83BD3A7E504BE6B (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263* L_0 = (StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263*)il2cpp_codegen_object_new(StyleSyntaxParser_t7032C3985ADE57F59D635A1BA773DC75D1895263_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
StyleSyntaxParser__ctor_m1FD9FDD76886E8C0E3FD388FB22A786B579D1971(L_0, NULL);
|
|
((StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_StaticFields*)il2cpp_codegen_static_fields_for(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var))->___s_SyntaxParser_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_StaticFields*)il2cpp_codegen_static_fields_for(StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185_il2cpp_TypeInfo_var))->___s_SyntaxParser_1), (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
|
|
#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.StyleVariableResolver/ResolveContext
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_pinvoke(const ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992& unmarshaled, ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___sheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'ResolveContext': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_pinvoke_back(const ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_pinvoke& marshaled, ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992& unmarshaled)
|
|
{
|
|
Exception_t* ___sheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'ResolveContext': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_pinvoke_cleanup(ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_com(const ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992& unmarshaled, ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___sheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'ResolveContext': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_com_back(const ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_com& marshaled, ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992& unmarshaled)
|
|
{
|
|
Exception_t* ___sheet_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'sheet' of type 'ResolveContext': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___sheet_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StyleVariableResolver/ResolveContext
|
|
IL2CPP_EXTERN_C void ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshal_com_cleanup(ResolveContext_tEF37DBA22D641E4FE1568C5EBE1605A98D86C992_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.ThemeStyleSheet::OnEnable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThemeStyleSheet_OnEnable_mA88CDAE3FFA92428EB0C087E8D2037D1F2F7895D (ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleSheet_set_isDefaultStyleSheet_mF3452A31475F8C3788BC850A151AE9C7B022C7C6(__this, (bool)1, NULL);
|
|
StyleSheet_OnEnable_m7BF2712DBEB0B4E827B69EBF6EAF81DEE390F98A(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ThemeStyleSheet::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThemeStyleSheet__ctor_m87228274BC02C51CAB28ABCCAC126259BB297530 (ThemeStyleSheet_t770F966C0D561FCCB90D490215FCE8B01B709553* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428_il2cpp_TypeInfo_var);
|
|
StyleSheet__ctor_m1AA637A96DFEE2522AEC2BC1962E7B02D690C1BA(__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.StyleValueType UnityEngine.UIElements.StyleValueHandle::get_valueType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9 (StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_ValueType_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = StyleValueHandle_get_valueType_m4FC4142350A61A75D5CD80C559689A5CC2F741B9(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.StyleValueHandle::set_valueType(UnityEngine.UIElements.StyleValueType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StyleValueHandle_set_valueType_m19D5FCB629ECFB1A46688D27F0E06505A38D2CA3 (StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_ValueType_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void StyleValueHandle_set_valueType_m19D5FCB629ECFB1A46688D27F0E06505A38D2CA3_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StyleValueHandle_t5831643AAA7AD8C5C43A4498C5E0A2545F78227D*>(__this + _offset);
|
|
StyleValueHandle_set_valueType_m19D5FCB629ECFB1A46688D27F0E06505A38D2CA3(_thisAdjusted, ___0_value, 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
|
|
|
|
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.InheritedData
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_pinvoke(const InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67& unmarshaled, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___unityFont_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'unityFont' of type 'InheritedData': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___unityFont_4Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_pinvoke_back(const InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_pinvoke& marshaled, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67& unmarshaled)
|
|
{
|
|
Exception_t* ___unityFont_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'unityFont' of type 'InheritedData': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___unityFont_4Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.InheritedData
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_pinvoke_cleanup(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.InheritedData
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_com(const InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67& unmarshaled, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___unityFont_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'unityFont' of type 'InheritedData': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___unityFont_4Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_com_back(const InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_com& marshaled, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67& unmarshaled)
|
|
{
|
|
Exception_t* ___unityFont_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'unityFont' of type 'InheritedData': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___unityFont_4Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.InheritedData
|
|
IL2CPP_EXTERN_C void InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshal_com_cleanup(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.UIElements.InheritedData UnityEngine.UIElements.InheritedData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 InheritedData_Copy_m0EABC6E355A3778EBE1EBBC888F0A33D4A3CC12E (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_0 = (*(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 InheritedData_Copy_m0EABC6E355A3778EBE1EBBC888F0A33D4A3CC12E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*>(__this + _offset);
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 _returnValue;
|
|
_returnValue = InheritedData_Copy_m0EABC6E355A3778EBE1EBBC888F0A33D4A3CC12E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.InheritedData::CopyFrom(UnityEngine.UIElements.InheritedData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InheritedData_CopyFrom_m39AB40A6947A53FBEEC936E1BC2465993D8E5461 (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* L_0 = ___0_other;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_1 = (*(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)L_0);
|
|
*(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this)->___unityFont_4), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this)->___unityFontDefinition_5))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this)->___unityFontDefinition_5))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InheritedData_CopyFrom_m39AB40A6947A53FBEEC936E1BC2465993D8E5461_AdjustorThunk (RuntimeObject* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*>(__this + _offset);
|
|
InheritedData_CopyFrom_m39AB40A6947A53FBEEC936E1BC2465993D8E5461(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::op_Equality(UnityEngine.UIElements.InheritedData,UnityEngine.UIElements.InheritedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_op_Equality_mB40583E4A30EC8D5EF57DC89690B2026A1E69CBE (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___0_lhs, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B15_0 = 0;
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_0 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = L_0.___color_0;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_2 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = L_2.___color_0;
|
|
bool L_4;
|
|
L_4 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_5 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_6 = L_5.___fontSize_1;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_7 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_8 = L_7.___fontSize_1;
|
|
bool L_9;
|
|
L_9 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_10 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_11 = L_10.___letterSpacing_2;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_12 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_13 = L_12.___letterSpacing_2;
|
|
bool L_14;
|
|
L_14 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_15 = ___0_lhs;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_16 = L_15.___textShadow_3;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_17 = ___1_rhs;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_18 = L_17.___textShadow_3;
|
|
bool L_19;
|
|
L_19 = TextShadow_op_Equality_m7B840C994A00FDC98F55FAD2BBB395447A29792A(L_16, L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_20 = ___0_lhs;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_21 = L_20.___unityFont_4;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_22 = ___1_rhs;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_23 = L_22.___unityFont_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_24;
|
|
L_24 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_25 = ___0_lhs;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_26 = L_25.___unityFontDefinition_5;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_27 = ___1_rhs;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_28 = L_27.___unityFontDefinition_5;
|
|
bool L_29;
|
|
L_29 = FontDefinition_op_Equality_m12CB2472CEB30AB267FCEB0FD758ACF331CB2930(L_26, L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_30 = ___0_lhs;
|
|
int32_t L_31 = L_30.___unityFontStyleAndWeight_6;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_32 = ___1_rhs;
|
|
int32_t L_33 = L_32.___unityFontStyleAndWeight_6;
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_34 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_35 = L_34.___unityParagraphSpacing_7;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_36 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_37 = L_36.___unityParagraphSpacing_7;
|
|
bool L_38;
|
|
L_38 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_35, L_37, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_39 = ___0_lhs;
|
|
int32_t L_40 = L_39.___unityTextAlign_8;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_41 = ___1_rhs;
|
|
int32_t L_42 = L_41.___unityTextAlign_8;
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)L_42))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_43 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_44 = L_43.___unityTextOutlineColor_9;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_45 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_46 = L_45.___unityTextOutlineColor_9;
|
|
bool L_47;
|
|
L_47 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_44, L_46, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_48 = ___0_lhs;
|
|
float L_49 = L_48.___unityTextOutlineWidth_10;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_50 = ___1_rhs;
|
|
float L_51 = L_50.___unityTextOutlineWidth_10;
|
|
if ((!(((float)L_49) == ((float)L_51))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_52 = ___0_lhs;
|
|
int32_t L_53 = L_52.___visibility_11;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_54 = ___1_rhs;
|
|
int32_t L_55 = L_54.___visibility_11;
|
|
if ((!(((uint32_t)L_53) == ((uint32_t)L_55))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_56 = ___0_lhs;
|
|
int32_t L_57 = L_56.___whiteSpace_12;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_58 = ___1_rhs;
|
|
int32_t L_59 = L_58.___whiteSpace_12;
|
|
if ((!(((uint32_t)L_57) == ((uint32_t)L_59))))
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_60 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_61 = L_60.___wordSpacing_13;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_62 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_63 = L_62.___wordSpacing_13;
|
|
bool L_64;
|
|
L_64 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_61, L_63, NULL);
|
|
G_B15_0 = ((int32_t)(L_64));
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
G_B15_0 = 0;
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
V_0 = (bool)G_B15_0;
|
|
goto IL_0105;
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
bool L_65 = V_0;
|
|
return L_65;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::Equals(UnityEngine.UIElements.InheritedData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_Equals_m2303E9AFBB261F8EAC84A22E1847EEF57601563D (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_0 = ___0_other;
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 L_1 = (*(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)__this);
|
|
bool L_2;
|
|
L_2 = InheritedData_op_Equality_mB40583E4A30EC8D5EF57DC89690B2026A1E69CBE(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InheritedData_Equals_m2303E9AFBB261F8EAC84A22E1847EEF57601563D_AdjustorThunk (RuntimeObject* __this, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InheritedData_Equals_m2303E9AFBB261F8EAC84A22E1847EEF57601563D(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.InheritedData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InheritedData_Equals_m55D9E33D7C8FE6B15B9C9788540026AFD9E82D9E (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = InheritedData_Equals_m2303E9AFBB261F8EAC84A22E1847EEF57601563D(__this, ((*(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)((InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)(InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*)UnBox(L_3, InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InheritedData_Equals_m55D9E33D7C8FE6B15B9C9788540026AFD9E82D9E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InheritedData_Equals_m55D9E33D7C8FE6B15B9C9788540026AFD9E82D9E(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.InheritedData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InheritedData_GetHashCode_m50716E1D6CB590CB4024244B02360ECD30BC3244 (InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B1_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_0 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color_0);
|
|
int32_t L_1;
|
|
L_1 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_3 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___fontSize_1);
|
|
int32_t L_4;
|
|
L_4 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_3, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^L_4));
|
|
int32_t L_5 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_6 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___letterSpacing_2);
|
|
int32_t L_7;
|
|
L_7 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_6, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* L_9 = (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*)(&__this->___textShadow_3);
|
|
int32_t L_10;
|
|
L_10 = TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04(L_9, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)397)))^L_10));
|
|
int32_t L_11 = V_0;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_12 = __this->___unityFont_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_13;
|
|
L_13 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_12, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
G_B1_0 = ((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)397)));
|
|
if (L_13)
|
|
{
|
|
G_B2_0 = ((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)397)));
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_14 = __this->___unityFont_4;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_14);
|
|
G_B3_0 = L_15;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0085;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
G_B3_0 = 0;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
V_0 = ((int32_t)(G_B3_1^G_B3_0));
|
|
int32_t L_16 = V_0;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C* L_17 = (FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C*)(&__this->___unityFontDefinition_5);
|
|
int32_t L_18;
|
|
L_18 = FontDefinition_GetHashCode_mAE455799B250E80471E797D4497B1DB9B715D8F6(L_17, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_16, ((int32_t)397)))^L_18));
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = __this->___unityFontStyleAndWeight_6;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_19, ((int32_t)397)))^(int32_t)L_20));
|
|
int32_t L_21 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_22 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___unityParagraphSpacing_7);
|
|
int32_t L_23;
|
|
L_23 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_22, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_21, ((int32_t)397)))^L_23));
|
|
int32_t L_24 = V_0;
|
|
int32_t L_25 = __this->___unityTextAlign_8;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_24, ((int32_t)397)))^(int32_t)L_25));
|
|
int32_t L_26 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_27 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___unityTextOutlineColor_9);
|
|
int32_t L_28;
|
|
L_28 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_27, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_26, ((int32_t)397)))^L_28));
|
|
int32_t L_29 = V_0;
|
|
float* L_30 = (float*)(&__this->___unityTextOutlineWidth_10);
|
|
int32_t L_31;
|
|
L_31 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_30, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_29, ((int32_t)397)))^L_31));
|
|
int32_t L_32 = V_0;
|
|
int32_t L_33 = __this->___visibility_11;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)397)))^(int32_t)L_33));
|
|
int32_t L_34 = V_0;
|
|
int32_t L_35 = __this->___whiteSpace_12;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_34, ((int32_t)397)))^(int32_t)L_35));
|
|
int32_t L_36 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_37 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___wordSpacing_13);
|
|
int32_t L_38;
|
|
L_38 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_37, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_36, ((int32_t)397)))^L_38));
|
|
int32_t L_39 = V_0;
|
|
V_1 = L_39;
|
|
goto IL_0143;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
int32_t L_40 = V_1;
|
|
return L_40;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InheritedData_GetHashCode_m50716E1D6CB590CB4024244B02360ECD30BC3244_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InheritedData_t9CB0AE42B025C0BD86FEF0C979D5BFE15E188E67*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InheritedData_GetHashCode_m50716E1D6CB590CB4024244B02360ECD30BC3244(_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
|
|
// UnityEngine.UIElements.LayoutData UnityEngine.UIElements.LayoutData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 LayoutData_Copy_m43CB8791B4A3BEDD9E8184D6E868008688E9EC31 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_0 = (*(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)__this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 LayoutData_Copy_m43CB8791B4A3BEDD9E8184D6E868008688E9EC31_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*>(__this + _offset);
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 _returnValue;
|
|
_returnValue = LayoutData_Copy_m43CB8791B4A3BEDD9E8184D6E868008688E9EC31(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.LayoutData::CopyFrom(UnityEngine.UIElements.LayoutData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutData_CopyFrom_m34EED1AA355708FEFEBA572584B314F5F1F02FDE (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* L_0 = ___0_other;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_1 = (*(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)L_0);
|
|
*(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)__this = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void LayoutData_CopyFrom_m34EED1AA355708FEFEBA572584B314F5F1F02FDE_AdjustorThunk (RuntimeObject* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*>(__this + _offset);
|
|
LayoutData_CopyFrom_m34EED1AA355708FEFEBA572584B314F5F1F02FDE(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::op_Equality(UnityEngine.UIElements.LayoutData,UnityEngine.UIElements.LayoutData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_op_Equality_mD276612460EDC6222A8A7278215CFBE3B595F9B4 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___0_lhs, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B34_0 = 0;
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_0 = ___0_lhs;
|
|
int32_t L_1 = L_0.___alignContent_0;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_2 = ___1_rhs;
|
|
int32_t L_3 = L_2.___alignContent_0;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_4 = ___0_lhs;
|
|
int32_t L_5 = L_4.___alignItems_1;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_6 = ___1_rhs;
|
|
int32_t L_7 = L_6.___alignItems_1;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_7))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_8 = ___0_lhs;
|
|
int32_t L_9 = L_8.___alignSelf_2;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_10 = ___1_rhs;
|
|
int32_t L_11 = L_10.___alignSelf_2;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_12 = ___0_lhs;
|
|
float L_13 = L_12.___borderBottomWidth_3;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_14 = ___1_rhs;
|
|
float L_15 = L_14.___borderBottomWidth_3;
|
|
if ((!(((float)L_13) == ((float)L_15))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_16 = ___0_lhs;
|
|
float L_17 = L_16.___borderLeftWidth_4;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_18 = ___1_rhs;
|
|
float L_19 = L_18.___borderLeftWidth_4;
|
|
if ((!(((float)L_17) == ((float)L_19))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_20 = ___0_lhs;
|
|
float L_21 = L_20.___borderRightWidth_5;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_22 = ___1_rhs;
|
|
float L_23 = L_22.___borderRightWidth_5;
|
|
if ((!(((float)L_21) == ((float)L_23))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_24 = ___0_lhs;
|
|
float L_25 = L_24.___borderTopWidth_6;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_26 = ___1_rhs;
|
|
float L_27 = L_26.___borderTopWidth_6;
|
|
if ((!(((float)L_25) == ((float)L_27))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_28 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_29 = L_28.___bottom_7;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_30 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_31 = L_30.___bottom_7;
|
|
bool L_32;
|
|
L_32 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_29, L_31, NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_33 = ___0_lhs;
|
|
int32_t L_34 = L_33.___display_8;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_35 = ___1_rhs;
|
|
int32_t L_36 = L_35.___display_8;
|
|
if ((!(((uint32_t)L_34) == ((uint32_t)L_36))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_37 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_38 = L_37.___flexBasis_9;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_39 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_40 = L_39.___flexBasis_9;
|
|
bool L_41;
|
|
L_41 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_38, L_40, NULL);
|
|
if (!L_41)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_42 = ___0_lhs;
|
|
int32_t L_43 = L_42.___flexDirection_10;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_44 = ___1_rhs;
|
|
int32_t L_45 = L_44.___flexDirection_10;
|
|
if ((!(((uint32_t)L_43) == ((uint32_t)L_45))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_46 = ___0_lhs;
|
|
float L_47 = L_46.___flexGrow_11;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_48 = ___1_rhs;
|
|
float L_49 = L_48.___flexGrow_11;
|
|
if ((!(((float)L_47) == ((float)L_49))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_50 = ___0_lhs;
|
|
float L_51 = L_50.___flexShrink_12;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_52 = ___1_rhs;
|
|
float L_53 = L_52.___flexShrink_12;
|
|
if ((!(((float)L_51) == ((float)L_53))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_54 = ___0_lhs;
|
|
int32_t L_55 = L_54.___flexWrap_13;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_56 = ___1_rhs;
|
|
int32_t L_57 = L_56.___flexWrap_13;
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_57))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_58 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_59 = L_58.___height_14;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_60 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_61 = L_60.___height_14;
|
|
bool L_62;
|
|
L_62 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_59, L_61, NULL);
|
|
if (!L_62)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_63 = ___0_lhs;
|
|
int32_t L_64 = L_63.___justifyContent_15;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_65 = ___1_rhs;
|
|
int32_t L_66 = L_65.___justifyContent_15;
|
|
if ((!(((uint32_t)L_64) == ((uint32_t)L_66))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_67 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_68 = L_67.___left_16;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_69 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_70 = L_69.___left_16;
|
|
bool L_71;
|
|
L_71 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_68, L_70, NULL);
|
|
if (!L_71)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_72 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_73 = L_72.___marginBottom_17;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_74 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_75 = L_74.___marginBottom_17;
|
|
bool L_76;
|
|
L_76 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_77 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_78 = L_77.___marginLeft_18;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_79 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_80 = L_79.___marginLeft_18;
|
|
bool L_81;
|
|
L_81 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_82 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_83 = L_82.___marginRight_19;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_84 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_85 = L_84.___marginRight_19;
|
|
bool L_86;
|
|
L_86 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_83, L_85, NULL);
|
|
if (!L_86)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_87 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_88 = L_87.___marginTop_20;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_89 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_90 = L_89.___marginTop_20;
|
|
bool L_91;
|
|
L_91 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_88, L_90, NULL);
|
|
if (!L_91)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_92 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_93 = L_92.___maxHeight_21;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_94 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_95 = L_94.___maxHeight_21;
|
|
bool L_96;
|
|
L_96 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_93, L_95, NULL);
|
|
if (!L_96)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_97 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_98 = L_97.___maxWidth_22;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_99 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_100 = L_99.___maxWidth_22;
|
|
bool L_101;
|
|
L_101 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_98, L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_102 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_103 = L_102.___minHeight_23;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_104 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_105 = L_104.___minHeight_23;
|
|
bool L_106;
|
|
L_106 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_103, L_105, NULL);
|
|
if (!L_106)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_107 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_108 = L_107.___minWidth_24;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_109 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_110 = L_109.___minWidth_24;
|
|
bool L_111;
|
|
L_111 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_108, L_110, NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_112 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_113 = L_112.___paddingBottom_25;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_114 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_115 = L_114.___paddingBottom_25;
|
|
bool L_116;
|
|
L_116 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_113, L_115, NULL);
|
|
if (!L_116)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_117 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_118 = L_117.___paddingLeft_26;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_119 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_120 = L_119.___paddingLeft_26;
|
|
bool L_121;
|
|
L_121 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_118, L_120, NULL);
|
|
if (!L_121)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_122 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_123 = L_122.___paddingRight_27;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_124 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_125 = L_124.___paddingRight_27;
|
|
bool L_126;
|
|
L_126 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_123, L_125, NULL);
|
|
if (!L_126)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_127 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_128 = L_127.___paddingTop_28;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_129 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_130 = L_129.___paddingTop_28;
|
|
bool L_131;
|
|
L_131 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_128, L_130, NULL);
|
|
if (!L_131)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_132 = ___0_lhs;
|
|
int32_t L_133 = L_132.___position_29;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_134 = ___1_rhs;
|
|
int32_t L_135 = L_134.___position_29;
|
|
if ((!(((uint32_t)L_133) == ((uint32_t)L_135))))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_136 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_137 = L_136.___right_30;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_138 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_139 = L_138.___right_30;
|
|
bool L_140;
|
|
L_140 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_137, L_139, NULL);
|
|
if (!L_140)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_141 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_142 = L_141.___top_31;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_143 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_144 = L_143.___top_31;
|
|
bool L_145;
|
|
L_145 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_142, L_144, NULL);
|
|
if (!L_145)
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_146 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_147 = L_146.___width_32;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_148 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_149 = L_148.___width_32;
|
|
bool L_150;
|
|
L_150 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_147, L_149, NULL);
|
|
G_B34_0 = ((int32_t)(L_150));
|
|
goto IL_027d;
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
G_B34_0 = 0;
|
|
}
|
|
|
|
IL_027d:
|
|
{
|
|
V_0 = (bool)G_B34_0;
|
|
goto IL_0280;
|
|
}
|
|
|
|
IL_0280:
|
|
{
|
|
bool L_151 = V_0;
|
|
return L_151;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::Equals(UnityEngine.UIElements.LayoutData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_Equals_m1CB214831A92A7B5946B2C1A0B9EDC291B8A3F16 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_0 = ___0_other;
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 L_1 = (*(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)__this);
|
|
bool L_2;
|
|
L_2 = LayoutData_op_Equality_mD276612460EDC6222A8A7278215CFBE3B595F9B4(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool LayoutData_Equals_m1CB214831A92A7B5946B2C1A0B9EDC291B8A3F16_AdjustorThunk (RuntimeObject* __this, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = LayoutData_Equals_m1CB214831A92A7B5946B2C1A0B9EDC291B8A3F16(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.LayoutData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LayoutData_Equals_m17F0A8E1B74F777F6C075F47C199A3576F6AEEB9 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = LayoutData_Equals_m1CB214831A92A7B5946B2C1A0B9EDC291B8A3F16(__this, ((*(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)((LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)(LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*)UnBox(L_3, LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool LayoutData_Equals_m17F0A8E1B74F777F6C075F47C199A3576F6AEEB9_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = LayoutData_Equals_m17F0A8E1B74F777F6C075F47C199A3576F6AEEB9(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.LayoutData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LayoutData_GetHashCode_m316500D290BE2DB9EC94AB1F9D1CCBC16C9FA9D8 (LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->___alignContent_0;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
int32_t L_2 = __this->___alignItems_1;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)397)))^(int32_t)L_2));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = __this->___alignSelf_2;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)397)))^(int32_t)L_4));
|
|
int32_t L_5 = V_0;
|
|
float* L_6 = (float*)(&__this->___borderBottomWidth_3);
|
|
int32_t L_7;
|
|
L_7 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_6, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
float* L_9 = (float*)(&__this->___borderLeftWidth_4);
|
|
int32_t L_10;
|
|
L_10 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_9, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)397)))^L_10));
|
|
int32_t L_11 = V_0;
|
|
float* L_12 = (float*)(&__this->___borderRightWidth_5);
|
|
int32_t L_13;
|
|
L_13 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_12, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)397)))^L_13));
|
|
int32_t L_14 = V_0;
|
|
float* L_15 = (float*)(&__this->___borderTopWidth_6);
|
|
int32_t L_16;
|
|
L_16 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_15, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_14, ((int32_t)397)))^L_16));
|
|
int32_t L_17 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_18 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___bottom_7);
|
|
int32_t L_19;
|
|
L_19 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_18, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_17, ((int32_t)397)))^L_19));
|
|
int32_t L_20 = V_0;
|
|
int32_t L_21 = __this->___display_8;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)397)))^(int32_t)L_21));
|
|
int32_t L_22 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_23 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___flexBasis_9);
|
|
int32_t L_24;
|
|
L_24 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_23, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_22, ((int32_t)397)))^L_24));
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = __this->___flexDirection_10;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_25, ((int32_t)397)))^(int32_t)L_26));
|
|
int32_t L_27 = V_0;
|
|
float* L_28 = (float*)(&__this->___flexGrow_11);
|
|
int32_t L_29;
|
|
L_29 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_28, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_27, ((int32_t)397)))^L_29));
|
|
int32_t L_30 = V_0;
|
|
float* L_31 = (float*)(&__this->___flexShrink_12);
|
|
int32_t L_32;
|
|
L_32 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_31, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_30, ((int32_t)397)))^L_32));
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = __this->___flexWrap_13;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_33, ((int32_t)397)))^(int32_t)L_34));
|
|
int32_t L_35 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_36 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___height_14);
|
|
int32_t L_37;
|
|
L_37 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_36, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_35, ((int32_t)397)))^L_37));
|
|
int32_t L_38 = V_0;
|
|
int32_t L_39 = __this->___justifyContent_15;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_38, ((int32_t)397)))^(int32_t)L_39));
|
|
int32_t L_40 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_41 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___left_16);
|
|
int32_t L_42;
|
|
L_42 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_41, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_40, ((int32_t)397)))^L_42));
|
|
int32_t L_43 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_44 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___marginBottom_17);
|
|
int32_t L_45;
|
|
L_45 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_44, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_43, ((int32_t)397)))^L_45));
|
|
int32_t L_46 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_47 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___marginLeft_18);
|
|
int32_t L_48;
|
|
L_48 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_47, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_46, ((int32_t)397)))^L_48));
|
|
int32_t L_49 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_50 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___marginRight_19);
|
|
int32_t L_51;
|
|
L_51 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_50, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_49, ((int32_t)397)))^L_51));
|
|
int32_t L_52 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_53 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___marginTop_20);
|
|
int32_t L_54;
|
|
L_54 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_53, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_52, ((int32_t)397)))^L_54));
|
|
int32_t L_55 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_56 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___maxHeight_21);
|
|
int32_t L_57;
|
|
L_57 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_56, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_55, ((int32_t)397)))^L_57));
|
|
int32_t L_58 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_59 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___maxWidth_22);
|
|
int32_t L_60;
|
|
L_60 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_59, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_58, ((int32_t)397)))^L_60));
|
|
int32_t L_61 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_62 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___minHeight_23);
|
|
int32_t L_63;
|
|
L_63 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_62, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_61, ((int32_t)397)))^L_63));
|
|
int32_t L_64 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_65 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___minWidth_24);
|
|
int32_t L_66;
|
|
L_66 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_65, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_64, ((int32_t)397)))^L_66));
|
|
int32_t L_67 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_68 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___paddingBottom_25);
|
|
int32_t L_69;
|
|
L_69 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_68, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_67, ((int32_t)397)))^L_69));
|
|
int32_t L_70 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_71 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___paddingLeft_26);
|
|
int32_t L_72;
|
|
L_72 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_71, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_70, ((int32_t)397)))^L_72));
|
|
int32_t L_73 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_74 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___paddingRight_27);
|
|
int32_t L_75;
|
|
L_75 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_74, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_73, ((int32_t)397)))^L_75));
|
|
int32_t L_76 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_77 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___paddingTop_28);
|
|
int32_t L_78;
|
|
L_78 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_77, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_76, ((int32_t)397)))^L_78));
|
|
int32_t L_79 = V_0;
|
|
int32_t L_80 = __this->___position_29;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_79, ((int32_t)397)))^(int32_t)L_80));
|
|
int32_t L_81 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_82 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___right_30);
|
|
int32_t L_83;
|
|
L_83 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_82, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_81, ((int32_t)397)))^L_83));
|
|
int32_t L_84 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_85 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___top_31);
|
|
int32_t L_86;
|
|
L_86 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_85, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_84, ((int32_t)397)))^L_86));
|
|
int32_t L_87 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_88 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___width_32);
|
|
int32_t L_89;
|
|
L_89 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_88, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_87, ((int32_t)397)))^L_89));
|
|
int32_t L_90 = V_0;
|
|
V_1 = L_90;
|
|
goto IL_02dc;
|
|
}
|
|
|
|
IL_02dc:
|
|
{
|
|
int32_t L_91 = V_1;
|
|
return L_91;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t LayoutData_GetHashCode_m316500D290BE2DB9EC94AB1F9D1CCBC16C9FA9D8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LayoutData_tEFB8DF2EADED24B7658EB2987E991107CCA22440*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = LayoutData_GetHashCode_m316500D290BE2DB9EC94AB1F9D1CCBC16C9FA9D8(_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.RareData
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_pinvoke(const RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26& unmarshaled, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___cursor_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'cursor' of type 'RareData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___cursor_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_pinvoke_back(const RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_pinvoke& marshaled, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26& unmarshaled)
|
|
{
|
|
Exception_t* ___cursor_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'cursor' of type 'RareData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___cursor_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.RareData
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_pinvoke_cleanup(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.RareData
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_com(const RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26& unmarshaled, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___cursor_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'cursor' of type 'RareData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___cursor_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_com_back(const RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_com& marshaled, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26& unmarshaled)
|
|
{
|
|
Exception_t* ___cursor_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'cursor' of type 'RareData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___cursor_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.RareData
|
|
IL2CPP_EXTERN_C void RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshal_com_cleanup(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.UIElements.RareData UnityEngine.UIElements.RareData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 RareData_Copy_m704FCCC82A27DD5034CFB2E88E94D1C27582E29E (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_0 = (*(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)__this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 RareData_Copy_m704FCCC82A27DD5034CFB2E88E94D1C27582E29E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*>(__this + _offset);
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 _returnValue;
|
|
_returnValue = RareData_Copy_m704FCCC82A27DD5034CFB2E88E94D1C27582E29E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.RareData::CopyFrom(UnityEngine.UIElements.RareData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RareData_CopyFrom_m51E068167FABCD68FDCF134993FDD2810EF4AAC4 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* L_0 = ___0_other;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_1 = (*(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)L_0);
|
|
*(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)__this = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)__this)->___cursor_0))->___U3CtextureU3Ek__BackingField_0), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void RareData_CopyFrom_m51E068167FABCD68FDCF134993FDD2810EF4AAC4_AdjustorThunk (RuntimeObject* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*>(__this + _offset);
|
|
RareData_CopyFrom_m51E068167FABCD68FDCF134993FDD2810EF4AAC4(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.RareData::op_Equality(UnityEngine.UIElements.RareData,UnityEngine.UIElements.RareData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_op_Equality_m9E1D93A50125C3603B714C4F00F173509C87DE28 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___0_lhs, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_0 = ___0_lhs;
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 L_1 = L_0.___cursor_0;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_2 = ___1_rhs;
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82 L_3 = L_2.___cursor_0;
|
|
bool L_4;
|
|
L_4 = Cursor_op_Equality_m9796DE28D214A3B7371A36CF753F9D59FB508DF4(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_5 = ___0_lhs;
|
|
int32_t L_6 = L_5.___textOverflow_1;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_7 = ___1_rhs;
|
|
int32_t L_8 = L_7.___textOverflow_1;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_9 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_10 = L_9.___unityBackgroundImageTintColor_2;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_11 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = L_11.___unityBackgroundImageTintColor_2;
|
|
bool L_13;
|
|
L_13 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_10, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_14 = ___0_lhs;
|
|
int32_t L_15 = L_14.___unityBackgroundScaleMode_3;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_16 = ___1_rhs;
|
|
int32_t L_17 = L_16.___unityBackgroundScaleMode_3;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)L_17))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_18 = ___0_lhs;
|
|
int32_t L_19 = L_18.___unityOverflowClipBox_4;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_20 = ___1_rhs;
|
|
int32_t L_21 = L_20.___unityOverflowClipBox_4;
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)L_21))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_22 = ___0_lhs;
|
|
int32_t L_23 = L_22.___unitySliceBottom_5;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_24 = ___1_rhs;
|
|
int32_t L_25 = L_24.___unitySliceBottom_5;
|
|
if ((!(((uint32_t)L_23) == ((uint32_t)L_25))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_26 = ___0_lhs;
|
|
int32_t L_27 = L_26.___unitySliceLeft_6;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_28 = ___1_rhs;
|
|
int32_t L_29 = L_28.___unitySliceLeft_6;
|
|
if ((!(((uint32_t)L_27) == ((uint32_t)L_29))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_30 = ___0_lhs;
|
|
int32_t L_31 = L_30.___unitySliceRight_7;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_32 = ___1_rhs;
|
|
int32_t L_33 = L_32.___unitySliceRight_7;
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)L_33))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_34 = ___0_lhs;
|
|
int32_t L_35 = L_34.___unitySliceTop_8;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_36 = ___1_rhs;
|
|
int32_t L_37 = L_36.___unitySliceTop_8;
|
|
if ((!(((uint32_t)L_35) == ((uint32_t)L_37))))
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_38 = ___0_lhs;
|
|
int32_t L_39 = L_38.___unityTextOverflowPosition_9;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_40 = ___1_rhs;
|
|
int32_t L_41 = L_40.___unityTextOverflowPosition_9;
|
|
G_B11_0 = ((((int32_t)L_39) == ((int32_t)L_41))? 1 : 0);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
G_B11_0 = 0;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
V_0 = (bool)G_B11_0;
|
|
goto IL_00a0;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
bool L_42 = V_0;
|
|
return L_42;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.RareData::Equals(UnityEngine.UIElements.RareData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_Equals_m90BFF382BCC28B8DBBD529A087A3C7C9A3FCF229 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_0 = ___0_other;
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 L_1 = (*(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)__this);
|
|
bool L_2;
|
|
L_2 = RareData_op_Equality_m9E1D93A50125C3603B714C4F00F173509C87DE28(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool RareData_Equals_m90BFF382BCC28B8DBBD529A087A3C7C9A3FCF229_AdjustorThunk (RuntimeObject* __this, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = RareData_Equals_m90BFF382BCC28B8DBBD529A087A3C7C9A3FCF229(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.RareData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RareData_Equals_m1FDADD8434EC378278BA443CCEF66FF714F789F2 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = RareData_Equals_m90BFF382BCC28B8DBBD529A087A3C7C9A3FCF229(__this, ((*(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)((RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)(RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*)UnBox(L_3, RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool RareData_Equals_m1FDADD8434EC378278BA443CCEF66FF714F789F2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = RareData_Equals_m1FDADD8434EC378278BA443CCEF66FF714F789F2(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.RareData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RareData_GetHashCode_m4D59FF7E8EDAC75140675A614305C95C692FB659 (RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82* L_0 = (Cursor_t24C3B5095F65B86794C4F7EA168E324DFDA9EE82*)(&__this->___cursor_0);
|
|
int32_t L_1;
|
|
L_1 = Cursor_GetHashCode_mC6C773C4969C45189BBD9A11F8EB7ACC17F5745B(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3 = __this->___textOverflow_1;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^(int32_t)L_3));
|
|
int32_t L_4 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_5 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___unityBackgroundImageTintColor_2);
|
|
int32_t L_6;
|
|
L_6 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_5, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_4, ((int32_t)397)))^L_6));
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = __this->___unityBackgroundScaleMode_3;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_7, ((int32_t)397)))^(int32_t)L_8));
|
|
int32_t L_9 = V_0;
|
|
int32_t L_10 = __this->___unityOverflowClipBox_4;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_9, ((int32_t)397)))^(int32_t)L_10));
|
|
int32_t L_11 = V_0;
|
|
int32_t L_12 = __this->___unitySliceBottom_5;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)397)))^L_12));
|
|
int32_t L_13 = V_0;
|
|
int32_t L_14 = __this->___unitySliceLeft_6;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_13, ((int32_t)397)))^L_14));
|
|
int32_t L_15 = V_0;
|
|
int32_t L_16 = __this->___unitySliceRight_7;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_15, ((int32_t)397)))^L_16));
|
|
int32_t L_17 = V_0;
|
|
int32_t L_18 = __this->___unitySliceTop_8;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_17, ((int32_t)397)))^L_18));
|
|
int32_t L_19 = V_0;
|
|
int32_t L_20 = __this->___unityTextOverflowPosition_9;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_19, ((int32_t)397)))^(int32_t)L_20));
|
|
int32_t L_21 = V_0;
|
|
V_1 = L_21;
|
|
goto IL_00aa;
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
int32_t L_22 = V_1;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t RareData_GetHashCode_m4D59FF7E8EDAC75140675A614305C95C692FB659_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RareData_t2F466D955456C8E8898324C284948FCB0F4D6F26*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = RareData_GetHashCode_m4D59FF7E8EDAC75140675A614305C95C692FB659(_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.TransformData
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_pinvoke(const TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808& unmarshaled, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_pinvoke& marshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke(unmarshaled.___rotate_0, marshaled.___rotate_0);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke(unmarshaled.___scale_1, marshaled.___scale_1);
|
|
marshaled.___transformOrigin_2 = unmarshaled.___transformOrigin_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke(unmarshaled.___translate_3, marshaled.___translate_3);
|
|
}
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_pinvoke_back(const TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_pinvoke& marshaled, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808& unmarshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 unmarshaledrotate_temp_0;
|
|
memset((&unmarshaledrotate_temp_0), 0, sizeof(unmarshaledrotate_temp_0));
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke_back(marshaled.___rotate_0, unmarshaledrotate_temp_0);
|
|
unmarshaled.___rotate_0 = unmarshaledrotate_temp_0;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 unmarshaledscale_temp_1;
|
|
memset((&unmarshaledscale_temp_1), 0, sizeof(unmarshaledscale_temp_1));
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke_back(marshaled.___scale_1, unmarshaledscale_temp_1);
|
|
unmarshaled.___scale_1 = unmarshaledscale_temp_1;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 unmarshaledtransformOrigin_temp_2;
|
|
memset((&unmarshaledtransformOrigin_temp_2), 0, sizeof(unmarshaledtransformOrigin_temp_2));
|
|
unmarshaledtransformOrigin_temp_2 = marshaled.___transformOrigin_2;
|
|
unmarshaled.___transformOrigin_2 = unmarshaledtransformOrigin_temp_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E unmarshaledtranslate_temp_3;
|
|
memset((&unmarshaledtranslate_temp_3), 0, sizeof(unmarshaledtranslate_temp_3));
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke_back(marshaled.___translate_3, unmarshaledtranslate_temp_3);
|
|
unmarshaled.___translate_3 = unmarshaledtranslate_temp_3;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TransformData
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_pinvoke_cleanup(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_pinvoke& marshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_pinvoke_cleanup(marshaled.___rotate_0);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_pinvoke_cleanup(marshaled.___scale_1);
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_pinvoke_cleanup(marshaled.___translate_3);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.TransformData
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_com(const TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808& unmarshaled, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_com& marshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com(unmarshaled.___rotate_0, marshaled.___rotate_0);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com(unmarshaled.___scale_1, marshaled.___scale_1);
|
|
marshaled.___transformOrigin_2 = unmarshaled.___transformOrigin_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com(unmarshaled.___translate_3, marshaled.___translate_3);
|
|
}
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_com_back(const TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_com& marshaled, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808& unmarshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 unmarshaledrotate_temp_0;
|
|
memset((&unmarshaledrotate_temp_0), 0, sizeof(unmarshaledrotate_temp_0));
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com_back(marshaled.___rotate_0, unmarshaledrotate_temp_0);
|
|
unmarshaled.___rotate_0 = unmarshaledrotate_temp_0;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 unmarshaledscale_temp_1;
|
|
memset((&unmarshaledscale_temp_1), 0, sizeof(unmarshaledscale_temp_1));
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com_back(marshaled.___scale_1, unmarshaledscale_temp_1);
|
|
unmarshaled.___scale_1 = unmarshaledscale_temp_1;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 unmarshaledtransformOrigin_temp_2;
|
|
memset((&unmarshaledtransformOrigin_temp_2), 0, sizeof(unmarshaledtransformOrigin_temp_2));
|
|
unmarshaledtransformOrigin_temp_2 = marshaled.___transformOrigin_2;
|
|
unmarshaled.___transformOrigin_2 = unmarshaledtransformOrigin_temp_2;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E unmarshaledtranslate_temp_3;
|
|
memset((&unmarshaledtranslate_temp_3), 0, sizeof(unmarshaledtranslate_temp_3));
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com_back(marshaled.___translate_3, unmarshaledtranslate_temp_3);
|
|
unmarshaled.___translate_3 = unmarshaledtranslate_temp_3;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TransformData
|
|
IL2CPP_EXTERN_C void TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshal_com_cleanup(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_marshaled_com& marshaled)
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_marshal_com_cleanup(marshaled.___rotate_0);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_marshal_com_cleanup(marshaled.___scale_1);
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_marshal_com_cleanup(marshaled.___translate_3);
|
|
}
|
|
// UnityEngine.UIElements.TransformData UnityEngine.UIElements.TransformData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 TransformData_Copy_m1C72DA746E9EDA30EF3A0B6B582ADE0D1F1CC1E1 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_0 = (*(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)__this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 TransformData_Copy_m1C72DA746E9EDA30EF3A0B6B582ADE0D1F1CC1E1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*>(__this + _offset);
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 _returnValue;
|
|
_returnValue = TransformData_Copy_m1C72DA746E9EDA30EF3A0B6B582ADE0D1F1CC1E1(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransformData::CopyFrom(UnityEngine.UIElements.TransformData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformData_CopyFrom_mE61FA7D18331DDF93C862DD92E48A661B41DFA72 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* L_0 = ___0_other;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_1 = (*(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)L_0);
|
|
*(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)__this = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TransformData_CopyFrom_mE61FA7D18331DDF93C862DD92E48A661B41DFA72_AdjustorThunk (RuntimeObject* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*>(__this + _offset);
|
|
TransformData_CopyFrom_mE61FA7D18331DDF93C862DD92E48A661B41DFA72(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransformData::op_Equality(UnityEngine.UIElements.TransformData,UnityEngine.UIElements.TransformData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_op_Equality_mC05A93308EAD030871F5FF7C06A92A7EB486287A (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___0_lhs, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_0 = ___0_lhs;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_1 = L_0.___rotate_0;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_2 = ___1_rhs;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_3 = L_2.___rotate_0;
|
|
bool L_4;
|
|
L_4 = Rotate_op_Equality_m17193DD52205405DE23ADA71B1E19AFF8A4364AD(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_5 = ___0_lhs;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_6 = L_5.___scale_1;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_7 = ___1_rhs;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_8 = L_7.___scale_1;
|
|
bool L_9;
|
|
L_9 = Scale_op_Equality_mCF310871A942D356F82D2A2F4E23B5BC3C248F65(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_10 = ___0_lhs;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_11 = L_10.___transformOrigin_2;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_12 = ___1_rhs;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_13 = L_12.___transformOrigin_2;
|
|
bool L_14;
|
|
L_14 = TransformOrigin_op_Equality_mD0114AF86353C451148D3E0EB2287FE3BCD87B1D(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_15 = ___0_lhs;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_16 = L_15.___translate_3;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_17 = ___1_rhs;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_18 = L_17.___translate_3;
|
|
bool L_19;
|
|
L_19 = Translate_op_Equality_m320CFAF67C0BEF258338E5529C9E5921A3C822F1(L_16, L_18, NULL);
|
|
G_B5_0 = ((int32_t)(L_19));
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
bool L_20 = V_0;
|
|
return L_20;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransformData::Equals(UnityEngine.UIElements.TransformData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_Equals_m35B6DAE3446E9D7B7F550BE551DEBEF0466A0E40 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_0 = ___0_other;
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 L_1 = (*(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)__this);
|
|
bool L_2;
|
|
L_2 = TransformData_op_Equality_mC05A93308EAD030871F5FF7C06A92A7EB486287A(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TransformData_Equals_m35B6DAE3446E9D7B7F550BE551DEBEF0466A0E40_AdjustorThunk (RuntimeObject* __this, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TransformData_Equals_m35B6DAE3446E9D7B7F550BE551DEBEF0466A0E40(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransformData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransformData_Equals_m6E9AA5D46B377F962FB2A7FB0F141E317C9C46AA (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = TransformData_Equals_m35B6DAE3446E9D7B7F550BE551DEBEF0466A0E40(__this, ((*(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)((TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)(TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*)UnBox(L_3, TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TransformData_Equals_m6E9AA5D46B377F962FB2A7FB0F141E317C9C46AA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TransformData_Equals_m6E9AA5D46B377F962FB2A7FB0F141E317C9C46AA(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TransformData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransformData_GetHashCode_m2C32917E8F3D81762F0C320B0C4D3AAC94FDAA80 (TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7* L_0 = (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7*)(&__this->___rotate_0);
|
|
int32_t L_1;
|
|
L_1 = Rotate_GetHashCode_mB52BF9E6E8AE32B9B7F2AF8B57B6938A714A949E(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7* L_3 = (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7*)(&__this->___scale_1);
|
|
int32_t L_4;
|
|
L_4 = Scale_GetHashCode_m1B766BD8284D4E093BD69BE58D0F6B886AC29B30(L_3, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^L_4));
|
|
int32_t L_5 = V_0;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* L_6 = (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502*)(&__this->___transformOrigin_2);
|
|
int32_t L_7;
|
|
L_7 = TransformOrigin_GetHashCode_mCA4900A38F79C225517D2F7196BC7E25DEF54F24(L_6, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* L_9 = (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E*)(&__this->___translate_3);
|
|
int32_t L_10;
|
|
L_10 = Translate_GetHashCode_m6154995C5157AC77ED6F1EFC5C1FD60EF0B3CA1C(L_9, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)397)))^L_10));
|
|
int32_t L_11 = V_0;
|
|
V_1 = L_11;
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TransformData_GetHashCode_m2C32917E8F3D81762F0C320B0C4D3AAC94FDAA80_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransformData_tC4540FA2761D7981877CC9077301F6AFEF1CF808*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TransformData_GetHashCode_m2C32917E8F3D81762F0C320B0C4D3AAC94FDAA80(_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.TransitionData
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_pinvoke(const TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321& unmarshaled, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___transitionDelay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'transitionDelay' of type 'TransitionData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___transitionDelay_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_pinvoke_back(const TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_pinvoke& marshaled, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321& unmarshaled)
|
|
{
|
|
Exception_t* ___transitionDelay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'transitionDelay' of type 'TransitionData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___transitionDelay_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TransitionData
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_pinvoke_cleanup(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.TransitionData
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_com(const TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321& unmarshaled, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___transitionDelay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'transitionDelay' of type 'TransitionData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___transitionDelay_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_com_back(const TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_com& marshaled, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321& unmarshaled)
|
|
{
|
|
Exception_t* ___transitionDelay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'transitionDelay' of type 'TransitionData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___transitionDelay_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.TransitionData
|
|
IL2CPP_EXTERN_C void TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshal_com_cleanup(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.UIElements.TransitionData UnityEngine.UIElements.TransitionData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 TransitionData_Copy_m6AECD90470D754363F0DCB00918CB167788DC51B (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3A1D78F766364DE1EABDE6A34F5E55E1B50096E0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4B55D26AC4826CFF1DE9D6B3BFA517E7AEECF9D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321));
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_0 = __this->___transitionDelay_0;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_1 = (List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)il2cpp_codegen_object_new(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C(L_1, L_0, List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C_RuntimeMethod_var);
|
|
(&V_0)->___transitionDelay_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___transitionDelay_0), (void*)L_1);
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_2 = __this->___transitionDuration_1;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_3 = (List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)il2cpp_codegen_object_new(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C(L_3, L_2, List_1__ctor_m7B1232DFE6403576191C56D651675A43821CA68C_RuntimeMethod_var);
|
|
(&V_0)->___transitionDuration_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___transitionDuration_1), (void*)L_3);
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_4 = __this->___transitionProperty_2;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_5 = (List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*)il2cpp_codegen_object_new(List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
List_1__ctor_m3A1D78F766364DE1EABDE6A34F5E55E1B50096E0(L_5, L_4, List_1__ctor_m3A1D78F766364DE1EABDE6A34F5E55E1B50096E0_RuntimeMethod_var);
|
|
(&V_0)->___transitionProperty_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___transitionProperty_2), (void*)L_5);
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_6 = __this->___transitionTimingFunction_3;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_7 = (List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B*)il2cpp_codegen_object_new(List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
List_1__ctor_m4B55D26AC4826CFF1DE9D6B3BFA517E7AEECF9D8(L_7, L_6, List_1__ctor_m4B55D26AC4826CFF1DE9D6B3BFA517E7AEECF9D8_RuntimeMethod_var);
|
|
(&V_0)->___transitionTimingFunction_3 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___transitionTimingFunction_3), (void*)L_7);
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_8 = V_0;
|
|
V_1 = L_8;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 TransitionData_Copy_m6AECD90470D754363F0DCB00918CB167788DC51B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*>(__this + _offset);
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 _returnValue;
|
|
_returnValue = TransitionData_Copy_m6AECD90470D754363F0DCB00918CB167788DC51B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TransitionData::CopyFrom(UnityEngine.UIElements.TransitionData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionData_CopyFrom_m9EDC4E24EC85926EB5C4C645F7B5D5126E1B5C19 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mC10AB6995B62FFCB7480E88ADA61465B0644FC36_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mFC68F05E4252312CF997EF77D05B91BEEB8CC00A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m02854A6986DEFDEC2E4B791FD155C5D7FCBB8842_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m65AF27AF349D5AD5EB39FAA6836FA296600DA6FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_0 = __this->___transitionDelay_0;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_1 = ___0_other;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_2 = L_1->___transitionDelay_0;
|
|
V_0 = (bool)((((int32_t)((((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_0) == ((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_4 = __this->___transitionDelay_0;
|
|
NullCheck(L_4);
|
|
List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_inline(L_4, List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_RuntimeMethod_var);
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_5 = __this->___transitionDelay_0;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_6 = ___0_other;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_7 = L_6->___transitionDelay_0;
|
|
NullCheck(L_5);
|
|
List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB(L_5, L_7, List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_8 = __this->___transitionDuration_1;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_9 = ___0_other;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_10 = L_9->___transitionDuration_1;
|
|
V_1 = (bool)((((int32_t)((((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_8) == ((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_10))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_11 = V_1;
|
|
if (!L_11)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_12 = __this->___transitionDuration_1;
|
|
NullCheck(L_12);
|
|
List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_inline(L_12, List_1_Clear_mEAD58F71FB68894CD4B42B8B1FF527387E22F1B0_RuntimeMethod_var);
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_13 = __this->___transitionDuration_1;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_14 = ___0_other;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_15 = L_14->___transitionDuration_1;
|
|
NullCheck(L_13);
|
|
List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB(L_13, L_15, List_1_AddRange_m66D40F60D60CF3FA653432ABEBEBF703840689DB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_16 = __this->___transitionProperty_2;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_17 = ___0_other;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_18 = L_17->___transitionProperty_2;
|
|
V_2 = (bool)((((int32_t)((((RuntimeObject*)(List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*)L_16) == ((RuntimeObject*)(List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*)L_18))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_19 = V_2;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_20 = __this->___transitionProperty_2;
|
|
NullCheck(L_20);
|
|
List_1_Clear_m02854A6986DEFDEC2E4B791FD155C5D7FCBB8842_inline(L_20, List_1_Clear_m02854A6986DEFDEC2E4B791FD155C5D7FCBB8842_RuntimeMethod_var);
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_21 = __this->___transitionProperty_2;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_22 = ___0_other;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_23 = L_22->___transitionProperty_2;
|
|
NullCheck(L_21);
|
|
List_1_AddRange_mC10AB6995B62FFCB7480E88ADA61465B0644FC36(L_21, L_23, List_1_AddRange_mC10AB6995B62FFCB7480E88ADA61465B0644FC36_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_24 = __this->___transitionTimingFunction_3;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_25 = ___0_other;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_26 = L_25->___transitionTimingFunction_3;
|
|
V_3 = (bool)((((int32_t)((((RuntimeObject*)(List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B*)L_24) == ((RuntimeObject*)(List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B*)L_26))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_27 = V_3;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_28 = __this->___transitionTimingFunction_3;
|
|
NullCheck(L_28);
|
|
List_1_Clear_m65AF27AF349D5AD5EB39FAA6836FA296600DA6FA_inline(L_28, List_1_Clear_m65AF27AF349D5AD5EB39FAA6836FA296600DA6FA_RuntimeMethod_var);
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_29 = __this->___transitionTimingFunction_3;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* L_30 = ___0_other;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_31 = L_30->___transitionTimingFunction_3;
|
|
NullCheck(L_29);
|
|
List_1_AddRange_mFC68F05E4252312CF997EF77D05B91BEEB8CC00A(L_29, L_31, List_1_AddRange_mFC68F05E4252312CF997EF77D05B91BEEB8CC00A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TransitionData_CopyFrom_m9EDC4E24EC85926EB5C4C645F7B5D5126E1B5C19_AdjustorThunk (RuntimeObject* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*>(__this + _offset);
|
|
TransitionData_CopyFrom_m9EDC4E24EC85926EB5C4C645F7B5D5126E1B5C19(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::op_Equality(UnityEngine.UIElements.TransitionData,UnityEngine.UIElements.TransitionData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_op_Equality_m655A0E6E46ACAE2E35990D819DA96A6EE1EE834A (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___0_lhs, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_0 = ___0_lhs;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_1 = L_0.___transitionDelay_0;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_2 = ___1_rhs;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_3 = L_2.___transitionDelay_0;
|
|
if ((!(((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_1) == ((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_3))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_4 = ___0_lhs;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_5 = L_4.___transitionDuration_1;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_6 = ___1_rhs;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_7 = L_6.___transitionDuration_1;
|
|
if ((!(((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_5) == ((RuntimeObject*)(List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF*)L_7))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_8 = ___0_lhs;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_9 = L_8.___transitionProperty_2;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_10 = ___1_rhs;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_11 = L_10.___transitionProperty_2;
|
|
if ((!(((RuntimeObject*)(List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*)L_9) == ((RuntimeObject*)(List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268*)L_11))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_12 = ___0_lhs;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_13 = L_12.___transitionTimingFunction_3;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_14 = ___1_rhs;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_15 = L_14.___transitionTimingFunction_3;
|
|
G_B5_0 = ((((RuntimeObject*)(List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B*)L_13) == ((RuntimeObject*)(List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B*)L_15))? 1 : 0);
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
bool L_16 = V_0;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::Equals(UnityEngine.UIElements.TransitionData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_Equals_m3FD210CEE421D718892EFAD77154D1658460F8E1 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_0 = ___0_other;
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 L_1 = (*(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*)__this);
|
|
bool L_2;
|
|
L_2 = TransitionData_op_Equality_m655A0E6E46ACAE2E35990D819DA96A6EE1EE834A(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TransitionData_Equals_m3FD210CEE421D718892EFAD77154D1658460F8E1_AdjustorThunk (RuntimeObject* __this, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TransitionData_Equals_m3FD210CEE421D718892EFAD77154D1658460F8E1(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TransitionData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionData_Equals_m51355384DD148C5C717BF529A50074AD2FF33D9D (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = TransitionData_Equals_m3FD210CEE421D718892EFAD77154D1658460F8E1(__this, ((*(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*)((TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*)(TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*)UnBox(L_3, TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TransitionData_Equals_m51355384DD148C5C717BF529A50074AD2FF33D9D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TransitionData_Equals_m51355384DD148C5C717BF529A50074AD2FF33D9D(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TransitionData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionData_GetHashCode_mC94D81B16F514D74260FED3EBB13F123BACE5279 (TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_0 = __this->___transitionDelay_0;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
List_1_t437B6C3879E969156A381BDC3C459CF809D39DDF* L_3 = __this->___transitionDuration_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^L_4));
|
|
int32_t L_5 = V_0;
|
|
List_1_tD6F1685FEE5A196B3002ACC649A1DF5C65162268* L_6 = __this->___transitionProperty_2;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_6);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
List_1_tE7FB077B3CEA6371A27F72CC60962491AB71490B* L_9 = __this->___transitionTimingFunction_3;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_9);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)397)))^L_10));
|
|
int32_t L_11 = V_0;
|
|
V_1 = L_11;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TransitionData_GetHashCode_mC94D81B16F514D74260FED3EBB13F123BACE5279_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TransitionData_tF097DCEA6AD59BAD8C54693D84B3E2AE248AB321*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TransitionData_GetHashCode_mC94D81B16F514D74260FED3EBB13F123BACE5279(_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.VisualData
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_pinvoke(const VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B& unmarshaled, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___backgroundImage_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'backgroundImage' of type 'VisualData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___backgroundImage_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_pinvoke_back(const VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_pinvoke& marshaled, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B& unmarshaled)
|
|
{
|
|
Exception_t* ___backgroundImage_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'backgroundImage' of type 'VisualData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___backgroundImage_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.VisualData
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_pinvoke_cleanup(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.VisualData
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_com(const VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B& unmarshaled, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___backgroundImage_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'backgroundImage' of type 'VisualData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___backgroundImage_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_com_back(const VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_com& marshaled, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B& unmarshaled)
|
|
{
|
|
Exception_t* ___backgroundImage_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'backgroundImage' of type 'VisualData'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___backgroundImage_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.VisualData
|
|
IL2CPP_EXTERN_C void VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshal_com_cleanup(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.UIElements.VisualData UnityEngine.UIElements.VisualData::Copy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B VisualData_Copy_m4672E40E37CE425C9991B5FC11EE9EEF32CD1A0F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_0 = (*(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B VisualData_Copy_m4672E40E37CE425C9991B5FC11EE9EEF32CD1A0F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*>(__this + _offset);
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B _returnValue;
|
|
_returnValue = VisualData_Copy_m4672E40E37CE425C9991B5FC11EE9EEF32CD1A0F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualData::CopyFrom(UnityEngine.UIElements.VisualData&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualData_CopyFrom_mBE7C373910958DF08B3C077F3C7902D9B5F71A38 (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* L_0 = ___0_other;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_1 = (*(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)L_0);
|
|
*(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this)->___backgroundImage_1))->___m_Texture_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this)->___backgroundImage_1))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this)->___backgroundImage_1))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this)->___backgroundImage_1))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void VisualData_CopyFrom_mBE7C373910958DF08B3C077F3C7902D9B5F71A38_AdjustorThunk (RuntimeObject* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* ___0_other, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*>(__this + _offset);
|
|
VisualData_CopyFrom_mBE7C373910958DF08B3C077F3C7902D9B5F71A38(_thisAdjusted, ___0_other, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualData::op_Equality(UnityEngine.UIElements.VisualData,UnityEngine.UIElements.VisualData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_op_Equality_mF2EBF06E20B4CA0C69EE5D4E3DB1A2F62598ECBC (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___0_lhs, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B13_0 = 0;
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_0 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = L_0.___backgroundColor_0;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_2 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = L_2.___backgroundColor_0;
|
|
bool L_4;
|
|
L_4 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_5 = ___0_lhs;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_6 = L_5.___backgroundImage_1;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_7 = ___1_rhs;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_8 = L_7.___backgroundImage_1;
|
|
bool L_9;
|
|
L_9 = Background_op_Equality_m8939ED12827755FD24AF8206DCFF65A4639AC51E(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_10 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_11 = L_10.___borderBottomColor_2;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_12 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_13 = L_12.___borderBottomColor_2;
|
|
bool L_14;
|
|
L_14 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_15 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_16 = L_15.___borderBottomLeftRadius_3;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_17 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_18 = L_17.___borderBottomLeftRadius_3;
|
|
bool L_19;
|
|
L_19 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_16, L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_20 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_21 = L_20.___borderBottomRightRadius_4;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_22 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_23 = L_22.___borderBottomRightRadius_4;
|
|
bool L_24;
|
|
L_24 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_21, L_23, NULL);
|
|
if (!L_24)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_25 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_26 = L_25.___borderLeftColor_5;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_27 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_28 = L_27.___borderLeftColor_5;
|
|
bool L_29;
|
|
L_29 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_26, L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_30 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_31 = L_30.___borderRightColor_6;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_32 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_33 = L_32.___borderRightColor_6;
|
|
bool L_34;
|
|
L_34 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_31, L_33, NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_35 = ___0_lhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_36 = L_35.___borderTopColor_7;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_37 = ___1_rhs;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_38 = L_37.___borderTopColor_7;
|
|
bool L_39;
|
|
L_39 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_40 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_41 = L_40.___borderTopLeftRadius_8;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_42 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_43 = L_42.___borderTopLeftRadius_8;
|
|
bool L_44;
|
|
L_44 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_41, L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_45 = ___0_lhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_46 = L_45.___borderTopRightRadius_9;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_47 = ___1_rhs;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_48 = L_47.___borderTopRightRadius_9;
|
|
bool L_49;
|
|
L_49 = Length_op_Equality_m2714C67D7F1391E9AE335F71CB446B90876D96D3(L_46, L_48, NULL);
|
|
if (!L_49)
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_50 = ___0_lhs;
|
|
float L_51 = L_50.___opacity_10;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_52 = ___1_rhs;
|
|
float L_53 = L_52.___opacity_10;
|
|
if ((!(((float)L_51) == ((float)L_53))))
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_54 = ___0_lhs;
|
|
int32_t L_55 = L_54.___overflow_11;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_56 = ___1_rhs;
|
|
int32_t L_57 = L_56.___overflow_11;
|
|
G_B13_0 = ((((int32_t)L_55) == ((int32_t)L_57))? 1 : 0);
|
|
goto IL_00ea;
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
G_B13_0 = 0;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
V_0 = (bool)G_B13_0;
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
bool L_58 = V_0;
|
|
return L_58;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualData::Equals(UnityEngine.UIElements.VisualData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_Equals_m2F0C3647F1ADDE8E87C069EDDD04890CAAEAF64F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_0 = ___0_other;
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B L_1 = (*(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)__this);
|
|
bool L_2;
|
|
L_2 = VisualData_op_Equality_mF2EBF06E20B4CA0C69EE5D4E3DB1A2F62598ECBC(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool VisualData_Equals_m2F0C3647F1ADDE8E87C069EDDD04890CAAEAF64F_AdjustorThunk (RuntimeObject* __this, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B ___0_other, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = VisualData_Equals_m2F0C3647F1ADDE8E87C069EDDD04890CAAEAF64F(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualData::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualData_Equals_mFB3EFC6BFF7FC717C1EF742B4EF66C4C97DA623F (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = VisualData_Equals_m2F0C3647F1ADDE8E87C069EDDD04890CAAEAF64F(__this, ((*(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)((VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)(VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*)UnBox(L_3, VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool VisualData_Equals_mFB3EFC6BFF7FC717C1EF742B4EF66C4C97DA623F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = VisualData_Equals_mFB3EFC6BFF7FC717C1EF742B4EF66C4C97DA623F(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.VisualData::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualData_GetHashCode_mD97AA0FE25F68DEC74E92B61C06BFE81BCEFB05B (VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_0 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___backgroundColor_0);
|
|
int32_t L_1;
|
|
L_1 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8* L_3 = (Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8*)(&__this->___backgroundImage_1);
|
|
int32_t L_4;
|
|
L_4 = Background_GetHashCode_m04082ADB61D83A618047D6DB649B3C34F18C47B1(L_3, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^L_4));
|
|
int32_t L_5 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_6 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___borderBottomColor_2);
|
|
int32_t L_7;
|
|
L_7 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_6, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)397)))^L_7));
|
|
int32_t L_8 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_9 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___borderBottomLeftRadius_3);
|
|
int32_t L_10;
|
|
L_10 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_9, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_8, ((int32_t)397)))^L_10));
|
|
int32_t L_11 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_12 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___borderBottomRightRadius_4);
|
|
int32_t L_13;
|
|
L_13 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_12, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)397)))^L_13));
|
|
int32_t L_14 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_15 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___borderLeftColor_5);
|
|
int32_t L_16;
|
|
L_16 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_15, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_14, ((int32_t)397)))^L_16));
|
|
int32_t L_17 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_18 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___borderRightColor_6);
|
|
int32_t L_19;
|
|
L_19 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_18, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_17, ((int32_t)397)))^L_19));
|
|
int32_t L_20 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_21 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___borderTopColor_7);
|
|
int32_t L_22;
|
|
L_22 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_21, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_20, ((int32_t)397)))^L_22));
|
|
int32_t L_23 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_24 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___borderTopLeftRadius_8);
|
|
int32_t L_25;
|
|
L_25 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_24, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_23, ((int32_t)397)))^L_25));
|
|
int32_t L_26 = V_0;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_27 = (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256*)(&__this->___borderTopRightRadius_9);
|
|
int32_t L_28;
|
|
L_28 = Length_GetHashCode_m7FCE192F1A91640A688A055D08767B5964DAAF33(L_27, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_26, ((int32_t)397)))^L_28));
|
|
int32_t L_29 = V_0;
|
|
float* L_30 = (float*)(&__this->___opacity_10);
|
|
int32_t L_31;
|
|
L_31 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_30, NULL);
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_29, ((int32_t)397)))^L_31));
|
|
int32_t L_32 = V_0;
|
|
int32_t L_33 = __this->___overflow_11;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_32, ((int32_t)397)))^(int32_t)L_33));
|
|
int32_t L_34 = V_0;
|
|
V_1 = L_34;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
int32_t L_35 = V_1;
|
|
return L_35;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t VisualData_GetHashCode_mD97AA0FE25F68DEC74E92B61C06BFE81BCEFB05B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<VisualData_t64B2C5387387BCEC426F3981BECC8582A02D3F1B*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = VisualData_GetHashCode_mD97AA0FE25F68DEC74E92B61C06BFE81BCEFB05B(_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.Action`2<UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::get_unbindItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* InternalTreeView_get_unbindItem_m8DF797282645E00D19DD2D3E1BE7AA3A7287514B (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_0 = __this->___U3CunbindItemU3Ek__BackingField_76;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_itemHeight(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_itemHeight_m35EB30D758F0AEDCAF1A0F6E3DDD50556C5277F4 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
int32_t L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_set_fixedItemHeight_m14CA50DAC1007FB42483201BCBB2FAEBBDC7F5F5(L_0, ((float)L_1), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_showBorder(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_showBorder_m49CD2757C59C987D4FE8F4D5C58E939E3DF836B7 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
bool L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_set_showBorder_mA9E3C8D24D94CC86E68633440599C0DF46C63F0D(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_selectionType(UnityEngine.UIElements.SelectionType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_selectionType_m218A0CD82295797F6D271346B030A895E41E2790 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
int32_t L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_set_selectionType_m92B637F0AA1583F7C1732CC936BB4553BAB13C13(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::set_showAlternatingRowBackgrounds(UnityEngine.UIElements.AlternatingRowBackground)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_set_showAlternatingRowBackgrounds_mBA96C39E21C306DBA4A92F39A3D49B6AD6F59394 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
int32_t L_1 = ___0_value;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_set_showAlternatingRowBackgrounds_m92D6D5331D46614EFD787A843287E665FF326060(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView__ctor_m55812E8CC9B18266788D54072DCF40689AC45004 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_BindTreeItem_m857379544B0260386A81D9F9BA47A96E671082A1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_GetItemId_m677EB88DED8F23B1D63F31AFB85E95D37609FCB6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_MakeTreeItem_m9D3B207009C95919BC8EBCB15B4405AF6137072B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnCustomStyleResolved_mE1716300CCAF189071740EA28C7719FB3A57A9C5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnItemsChosen_mE6FE7556190C365FEBD9A778006A20916C28D943_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnKeyDown_m8F8BA42BE0060AD32E949F02073ABFD3621F0189_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnSelectionChange_m45D7C7D2717B082839A2AE8CCC15219B6C8AE9BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnTreeViewMouseUp_mD677316216EE636C9FFFC1E22988B70B6E3C88B8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_UnbindTreeItem_mB379B33187EF4C6EA7F38250F3ECB26AAD87DDA3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_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_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(__this, NULL);
|
|
__this->___m_SelectedItems_74 = (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedItems_74), (void*)(List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5*)NULL);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_0, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
__this->___m_ExpandedItemIds_78 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ExpandedItemIds_78), (void*)L_0);
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_1 = (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177*)il2cpp_codegen_object_new(List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC(L_1, List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC_RuntimeMethod_var);
|
|
__this->___m_ItemWrappers_79 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemWrappers_79), (void*)L_1);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_2 = (ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD*)il2cpp_codegen_object_new(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
ListView__ctor_m08ADD99C1C6FBD6BA8F821AAD93374C3E8F8BED6(L_2, NULL);
|
|
__this->___m_ListView_80 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ListView_80), (void*)L_2);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_3 = __this->___m_ListView_80;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_4 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ListViewName_65;
|
|
NullCheck(L_3);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_3, L_4, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_5 = __this->___m_ListView_80;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_6 = __this->___m_ItemWrappers_79;
|
|
NullCheck(L_5);
|
|
BaseVerticalCollectionView_set_itemsSource_mD1B669C6202DE74A6DBF3D99488D7E939267BC3B(L_5, L_6, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_7 = __this->___m_ListView_80;
|
|
String_t* L_8 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ListViewName_65;
|
|
NullCheck(L_7);
|
|
VisualElement_set_viewDataKey_m6318C0A701350678B0DBF34939C3BC392134B092(L_7, L_8, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_9 = __this->___m_ListView_80;
|
|
String_t* L_10 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ListViewName_65;
|
|
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;
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_12 = __this->___m_ListView_80;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_0), L_12, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_13 = __this->___m_ListView_80;
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_14 = (Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2*)il2cpp_codegen_object_new(Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
Func_1__ctor_mF6EF1F2D908EA8D26E877D4C5365D5777FBA75EB(L_14, __this, (intptr_t)((void*)InternalTreeView_MakeTreeItem_m9D3B207009C95919BC8EBCB15B4405AF6137072B_RuntimeMethod_var), NULL);
|
|
NullCheck(L_13);
|
|
BaseVerticalCollectionView_set_makeItem_m4EFF623FA38FA7522CA88DF8F2673F4FEA88CBE1(L_13, L_14, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_15 = __this->___m_ListView_80;
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_16 = (Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88*)il2cpp_codegen_object_new(Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88_il2cpp_TypeInfo_var);
|
|
NullCheck(L_16);
|
|
Action_2__ctor_m11D9EAD42C98B55B456FC8F13B897CFEB2549F81(L_16, __this, (intptr_t)((void*)InternalTreeView_BindTreeItem_m857379544B0260386A81D9F9BA47A96E671082A1_RuntimeMethod_var), NULL);
|
|
NullCheck(L_15);
|
|
BaseVerticalCollectionView_set_bindItem_m7D68A21C470BC6F26E87C8B012850FCCA0789153(L_15, L_16, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_17 = __this->___m_ListView_80;
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_18 = (Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88*)il2cpp_codegen_object_new(Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88_il2cpp_TypeInfo_var);
|
|
NullCheck(L_18);
|
|
Action_2__ctor_m11D9EAD42C98B55B456FC8F13B897CFEB2549F81(L_18, __this, (intptr_t)((void*)InternalTreeView_UnbindTreeItem_mB379B33187EF4C6EA7F38250F3ECB26AAD87DDA3_RuntimeMethod_var), NULL);
|
|
NullCheck(L_17);
|
|
BaseVerticalCollectionView_set_unbindItem_m70B66966E4F15F175715762AF824862980920F71_inline(L_17, L_18, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_19 = __this->___m_ListView_80;
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_20 = (Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354*)il2cpp_codegen_object_new(Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354_il2cpp_TypeInfo_var);
|
|
NullCheck(L_20);
|
|
Func_2__ctor_mE96A3D11B34E447E159E761DC39D520D6E7CBEA5(L_20, __this, (intptr_t)((void*)InternalTreeView_GetItemId_m677EB88DED8F23B1D63F31AFB85E95D37609FCB6_RuntimeMethod_var), NULL);
|
|
NullCheck(L_19);
|
|
BaseVerticalCollectionView_set_getItemId_mDCE0D8D2F43CD303F8F5DD368C0B70CFCC073704(L_19, L_20, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_21 = __this->___m_ListView_80;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_22 = (Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)il2cpp_codegen_object_new(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_22);
|
|
Action_1__ctor_mD91234F5DBFEC63F8EC0464BC308B25212B28A26(L_22, __this, (intptr_t)((void*)InternalTreeView_OnItemsChosen_mE6FE7556190C365FEBD9A778006A20916C28D943_RuntimeMethod_var), NULL);
|
|
NullCheck(L_21);
|
|
BaseVerticalCollectionView_add_onItemsChosen_m5EF76FF94F96078F0B95ECEC7702B12E62FE7C70(L_21, L_22, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_23 = __this->___m_ListView_80;
|
|
Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5* L_24 = (Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5*)il2cpp_codegen_object_new(Action_1_tCB2600FFD386071D232B22D0FFBB8989B853DFD5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_24);
|
|
Action_1__ctor_mD91234F5DBFEC63F8EC0464BC308B25212B28A26(L_24, __this, (intptr_t)((void*)InternalTreeView_OnSelectionChange_m45D7C7D2717B082839A2AE8CCC15219B6C8AE9BB_RuntimeMethod_var), NULL);
|
|
NullCheck(L_23);
|
|
BaseVerticalCollectionView_add_onSelectionChange_mFFA799BCADAA39108F69E1713258C6FCB8CF10D1(L_23, L_24, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_25 = __this->___m_ListView_80;
|
|
NullCheck(L_25);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_26;
|
|
L_26 = BaseVerticalCollectionView_get_scrollView_mB4F44C6276CC57A0D8AD030F3C396650532E83CC_inline(L_25, NULL);
|
|
__this->___m_ScrollView_81 = L_26;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ScrollView_81), (void*)L_26);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_27 = __this->___m_ScrollView_81;
|
|
NullCheck(L_27);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28;
|
|
L_28 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(96 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_27);
|
|
EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C* L_29 = (EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C*)il2cpp_codegen_object_new(EventCallback_1_tF213A6C7DEAE29A9970B73DB52E8778214E5CD9C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
EventCallback_1__ctor_m9784A8620A12F32140DB764C2DAC0CD4AE9A91CF(L_29, __this, (intptr_t)((void*)InternalTreeView_OnKeyDown_m8F8BA42BE0060AD32E949F02073ABFD3621F0189_RuntimeMethod_var), NULL);
|
|
NullCheck(L_28);
|
|
CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66(L_28, L_29, 0, CallbackEventHandler_RegisterCallback_TisKeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_m046581E97BE6F7CECB84314566EB164BC15C9A66_RuntimeMethod_var);
|
|
EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* L_30 = (EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*)il2cpp_codegen_object_new(EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_30);
|
|
EventCallback_1__ctor_m1A63B71064E62E50488869A1FEDA9E3F2F231257(L_30, __this, (intptr_t)((void*)InternalTreeView_OnTreeViewMouseUp_mD677316216EE636C9FFFC1E22988B70B6E3C88B8_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14(__this, L_30, 1, CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14_RuntimeMethod_var);
|
|
EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F* L_31 = (EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F*)il2cpp_codegen_object_new(EventCallback_1_tDE93D01AB4244ED03015ADF985CF61A9E3CA060F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_31);
|
|
EventCallback_1__ctor_mA03324C646FE93909402ABA6C660D14D22ACE4F8(L_31, __this, (intptr_t)((void*)InternalTreeView_OnCustomStyleResolved_mE1716300CCAF189071740EA28C7719FB3A57A9C5_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401(__this, L_31, 0, CallbackEventHandler_RegisterCallback_TisCustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6_m667D7BACFE267AD56818889E3879640E13998401_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::RefreshItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_RefreshItems_m9015009DD22BB7DC0DC9834E0752F3586B1CC65A (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
InternalTreeView_RegenerateWrappers_m8A4AB7F383C53AAF8E04F695DCE78321BB4B666F(__this, NULL);
|
|
InternalTreeView_ListViewRefresh_m8B9FFAEDD58FA4FDC6516F203417224A7C87BED0(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::Rebuild()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_Rebuild_mC31E78B7039207DF1BAA12F48C0B1D02F409C109 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
InternalTreeView_RegenerateWrappers_m8A4AB7F383C53AAF8E04F695DCE78321BB4B666F(__this, NULL);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnViewDataReady()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnViewDataReady_m890C288AA99DE97B1FF492256E12BD78C3AA1A8A (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __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);
|
|
InternalTreeView_Rebuild_mC31E78B7039207DF1BAA12F48C0B1D02F409C109(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView::GetAllItems(System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InternalTreeView_GetAllItems_m09A593DED4F268F45D9E305C17768163E17B57ED (RuntimeObject* ___0_rootItems, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* L_0 = (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5*)il2cpp_codegen_object_new(U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
U3CGetAllItemsU3Ed__64__ctor_m0253749740A0BD91742FC88913D44801C8A01A6B(L_0, ((int32_t)-2), NULL);
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* L_1 = L_0;
|
|
RuntimeObject* L_2 = ___0_rootItems;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E3__rootItems_4 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E3__rootItems_4), (void*)L_2);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnKeyDown(UnityEngine.UIElements.KeyDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnKeyDown_m8F8BA42BE0060AD32E949F02073ABFD3621F0189 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = BaseVerticalCollectionView_get_selectedIndex_m3BB7BE9EEBE76A482FA0747031B16CD566052F7B(L_0, NULL);
|
|
V_0 = L_1;
|
|
V_1 = (bool)1;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_inline(L_2, KeyboardEventBase_1_get_keyCode_m1F9724EFC75BE6E998EC0DB5515F7FD577257D6B_RuntimeMethod_var);
|
|
V_3 = L_3;
|
|
int32_t L_4 = V_3;
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
if ((((int32_t)L_5) == ((int32_t)((int32_t)275))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)276))))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
bool L_8;
|
|
L_8 = InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D(__this, L_7, NULL);
|
|
V_4 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
bool L_9 = V_4;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
InternalTreeView_ExpandItemByIndex_m88C1496C8F74A4D8497F84B0DD367711EEFB85E3(__this, L_10, NULL);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
bool L_12;
|
|
L_12 = InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D(__this, L_11, NULL);
|
|
V_5 = L_12;
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = V_0;
|
|
InternalTreeView_CollapseItemByIndex_mD53D1FA2F0A63D8A36E67261019FBAB585F1DC3A(__this, L_14, NULL);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
bool L_15 = V_1;
|
|
V_6 = L_15;
|
|
bool L_16 = V_6;
|
|
if (!L_16)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_17 = ___0_evt;
|
|
NullCheck(L_17);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_17, NULL);
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::ListViewRefresh()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_ListViewRefresh_m8B9FFAEDD58FA4FDC6516F203417224A7C87BED0 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
NullCheck(L_0);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnItemsChosen(System.Collections.Generic.IEnumerable`1<System.Object>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnItemsChosen_mE6FE7556190C365FEBD9A778006A20916C28D943 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, RuntimeObject* ___0_chosenItems, 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_tF95C9E01A913DD50575531C8305932628663D9E9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD_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_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
RuntimeObject* V_3 = NULL;
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* L_0 = __this->___onItemsChosen_72;
|
|
V_1 = (bool)((((RuntimeObject*)(Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_2 = (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5*)il2cpp_codegen_object_new(List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077(L_2, List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3 = ___0_chosenItems;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9_il2cpp_TypeInfo_var, L_3);
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_2;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_003f_1;
|
|
}
|
|
|
|
IL_0020_1:
|
|
{
|
|
RuntimeObject* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD_il2cpp_TypeInfo_var, L_7);
|
|
V_3 = L_8;
|
|
RuntimeObject* L_9 = V_3;
|
|
V_4 = ((*(TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F*)((TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F*)(TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F*)UnBox(L_9, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_il2cpp_TypeInfo_var))));
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_10 = V_0;
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_11 = V_4;
|
|
RuntimeObject* L_12 = L_11.___item_1;
|
|
NullCheck(L_10);
|
|
List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_inline(L_10, L_12, List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003f_1:
|
|
{
|
|
RuntimeObject* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
|
|
if (L_14)
|
|
{
|
|
goto IL_0020_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* L_15 = __this->___onItemsChosen_72;
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_16 = V_0;
|
|
NullCheck(L_15);
|
|
Action_1_Invoke_m9366513947DE9DD1457272607DE98291A6F5EC53_inline(L_15, L_16, NULL);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnSelectionChange(System.Collections.Generic.IEnumerable`1<System.Object>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnSelectionChange_m45D7C7D2717B082839A2AE8CCC15219B6C8AE9BB (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, RuntimeObject* ___0_selectedListItems, 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_tF95C9E01A913DD50575531C8305932628663D9E9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD_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_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mC94BDA7971ECE1D983E3904F1A38903AF450EC6F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* G_B12_0 = NULL;
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* G_B11_0 = NULL;
|
|
{
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_0 = __this->___m_SelectedItems_74;
|
|
V_0 = (bool)((((RuntimeObject*)(List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_2 = (List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5*)il2cpp_codegen_object_new(List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077(L_2, List_1__ctor_m8734A63C508C26773AC6DC25F62543D0787B4077_RuntimeMethod_var);
|
|
__this->___m_SelectedItems_74 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedItems_74), (void*)L_2);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_3 = __this->___m_SelectedItems_74;
|
|
NullCheck(L_3);
|
|
List_1_Clear_mC94BDA7971ECE1D983E3904F1A38903AF450EC6F_inline(L_3, List_1_Clear_mC94BDA7971ECE1D983E3904F1A38903AF450EC6F_RuntimeMethod_var);
|
|
RuntimeObject* L_4 = ___0_selectedListItems;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9_il2cpp_TypeInfo_var, L_4);
|
|
V_1 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0057:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_004d_1;
|
|
}
|
|
|
|
IL_002f_1:
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9;
|
|
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD_il2cpp_TypeInfo_var, L_8);
|
|
V_2 = L_9;
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_10 = __this->___m_SelectedItems_74;
|
|
RuntimeObject* L_11 = V_2;
|
|
RuntimeObject* L_12 = ((TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F*)UnBox(L_11, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_il2cpp_TypeInfo_var))->___item_1;
|
|
NullCheck(L_10);
|
|
List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_inline(L_10, L_12, List_1_Add_m466CF851626CB6B44B7C9B3F8EA75EB2D420BB76_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004d_1:
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
|
|
if (L_14)
|
|
{
|
|
goto IL_002f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* L_15 = __this->___onSelectionChange_73;
|
|
Action_1_t9A37C6B6201E9FC3C77CCBE144E1FAD2D38636F9* L_16 = L_15;
|
|
G_B11_0 = L_16;
|
|
if (L_16)
|
|
{
|
|
G_B12_0 = L_16;
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
List_1_t059F6FED02B2A0F89251DCE8D373562D7D5187F5* L_17 = __this->___m_SelectedItems_74;
|
|
NullCheck(G_B12_0);
|
|
Action_1_Invoke_m9366513947DE9DD1457272607DE98291A6F5EC53_inline(G_B12_0, L_17, NULL);
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnTreeViewMouseUp(UnityEngine.UIElements.MouseUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnTreeViewMouseUp_mD677316216EE636C9FFFC1E22988B70B6E3C88B8 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_0 = __this->___m_ScrollView_81;
|
|
NullCheck(L_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(96 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_0);
|
|
NullCheck(L_1);
|
|
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.Focusable::Focus() */, L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnItemMouseUp(UnityEngine.UIElements.MouseUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnItemMouseUp_m80FBB2D24871F66087E2A1180A312A925E2AFEC2 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToList_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m3E9A8F467117CBA5D91E50BC524DEA85E532EAAC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m3F29A5426149F521CEE6900B9A4097810124ED8E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_get_modifiers_mBCB36BF375976B2E6CE9390CECCC21E5A35934D5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
bool V_4 = false;
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
RuntimeObject* V_9 = NULL;
|
|
RuntimeObject* V_10 = NULL;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = MouseEventBase_1_get_modifiers_mBCB36BF375976B2E6CE9390CECCC21E5A35934D5_inline(L_0, MouseEventBase_1_get_modifiers_mBCB36BF375976B2E6CE9390CECCC21E5A35934D5_RuntimeMethod_var);
|
|
V_6 = (bool)((((int32_t)((int32_t)((int32_t)L_1&4))) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_6;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(10 /* UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.EventBase::get_currentTarget() */, L_3);
|
|
V_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_4, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_6 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemToggleName_66;
|
|
il2cpp_codegen_runtime_class_init_inline(UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_7;
|
|
L_7 = UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA(L_5, L_6, (String_t*)NULL, UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_8 = V_1;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9;
|
|
L_9 = VisualElement_get_userData_mB304DD064D255F64BB5A2EBC9233E2468B79ECE4(L_8, NULL);
|
|
V_2 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_9, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_10 = __this->___m_ItemWrappers_79;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_12;
|
|
L_12 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_10, L_11, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_13 = L_12.___item_1;
|
|
V_3 = L_13;
|
|
int32_t L_14 = V_2;
|
|
bool L_15;
|
|
L_15 = InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D(__this, L_14, NULL);
|
|
V_4 = L_15;
|
|
RuntimeObject* L_16 = V_3;
|
|
NullCheck(L_16);
|
|
bool L_17;
|
|
L_17 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_16);
|
|
V_7 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
|
|
bool L_18 = V_7;
|
|
if (!L_18)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = __this->___m_ExpandedItemIds_78;
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_20 = (HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2*)il2cpp_codegen_object_new(HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2_il2cpp_TypeInfo_var);
|
|
NullCheck(L_20);
|
|
HashSet_1__ctor_m3F29A5426149F521CEE6900B9A4097810124ED8E(L_20, L_19, HashSet_1__ctor_m3F29A5426149F521CEE6900B9A4097810124ED8E_RuntimeMethod_var);
|
|
V_5 = L_20;
|
|
bool L_21 = V_4;
|
|
V_8 = L_21;
|
|
bool L_22 = V_8;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_23 = V_5;
|
|
RuntimeObject* L_24 = V_3;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_24);
|
|
NullCheck(L_23);
|
|
bool L_26;
|
|
L_26 = HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65(L_23, L_25, HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65_RuntimeMethod_var);
|
|
goto IL_009e;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_27 = V_5;
|
|
RuntimeObject* L_28 = V_3;
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_28);
|
|
NullCheck(L_27);
|
|
bool L_30;
|
|
L_30 = HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB(L_27, L_29, HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
RuntimeObject* L_31 = V_3;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_32;
|
|
L_32 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.ITreeViewItem::get_children() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_31);
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_33;
|
|
L_33 = InternalTreeView_GetAllItems_m09A593DED4F268F45D9E305C17768163E17B57ED(L_32, NULL);
|
|
NullCheck(L_33);
|
|
RuntimeObject* L_34;
|
|
L_34 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>::GetEnumerator() */, IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var, L_33);
|
|
V_9 = L_34;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0100:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_35 = V_9;
|
|
if (!L_35)
|
|
{
|
|
goto IL_010c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_36 = V_9;
|
|
NullCheck(L_36);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_36);
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_00f5_1;
|
|
}
|
|
|
|
IL_00b3_1:
|
|
{
|
|
RuntimeObject* L_37 = V_9;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_38;
|
|
L_38 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>::get_Current() */, IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var, L_37);
|
|
V_10 = L_38;
|
|
RuntimeObject* L_39 = V_10;
|
|
NullCheck(L_39);
|
|
bool L_40;
|
|
L_40 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_39);
|
|
V_11 = L_40;
|
|
bool L_41 = V_11;
|
|
if (!L_41)
|
|
{
|
|
goto IL_00f4_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_42 = V_4;
|
|
V_12 = L_42;
|
|
bool L_43 = V_12;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00e4_1;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_44 = V_5;
|
|
RuntimeObject* L_45 = V_10;
|
|
NullCheck(L_45);
|
|
int32_t L_46;
|
|
L_46 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_45);
|
|
NullCheck(L_44);
|
|
bool L_47;
|
|
L_47 = HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65(L_44, L_46, HashSet_1_Remove_mF4C8539185EBCAAE0803DF227E006B701007DD65_RuntimeMethod_var);
|
|
goto IL_00f3_1;
|
|
}
|
|
|
|
IL_00e4_1:
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_48 = V_5;
|
|
RuntimeObject* L_49 = V_10;
|
|
NullCheck(L_49);
|
|
int32_t L_50;
|
|
L_50 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_49);
|
|
NullCheck(L_48);
|
|
bool L_51;
|
|
L_51 = HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB(L_48, L_50, HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00f3_1:
|
|
{
|
|
}
|
|
|
|
IL_00f4_1:
|
|
{
|
|
}
|
|
|
|
IL_00f5_1:
|
|
{
|
|
RuntimeObject* L_52 = V_9;
|
|
NullCheck(L_52);
|
|
bool L_53;
|
|
L_53 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_52);
|
|
if (L_53)
|
|
{
|
|
goto IL_00b3_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_54 = V_5;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_55;
|
|
L_55 = Enumerable_ToList_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m3E9A8F467117CBA5D91E50BC524DEA85E532EAAC(L_54, Enumerable_ToList_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m3E9A8F467117CBA5D91E50BC524DEA85E532EAAC_RuntimeMethod_var);
|
|
__this->___m_ExpandedItemIds_78 = L_55;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ExpandedItemIds_78), (void*)L_55);
|
|
InternalTreeView_RefreshItems_m9015009DD22BB7DC0DC9834E0752F3586B1CC65A(__this, NULL);
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_56 = ___0_evt;
|
|
NullCheck(L_56);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_56, NULL);
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.InternalTreeView::MakeTreeItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* InternalTreeView_MakeTreeItem_m9D3B207009C95919BC8EBCB15B4405AF6137072B (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&INotifyValueChangedExtensions_RegisterValueChangedCallback_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m21346157EFCB13A3F77EDC25116E4898A4C1FB90_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_OnItemMouseUp_m80FBB2D24871F66087E2A1180A312A925E2AFEC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_ToggleExpandedState_m47FB929714A43D85B2F7E6E45B5C7EE3AA188D37_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* V_2 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_6 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_0, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_2 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___itemUssClassName_70;
|
|
NullCheck(L_1);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_1, L_2, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = L_1;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_3, NULL);
|
|
StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE L_5;
|
|
L_5 = StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD(2, StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker1< StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE >::Invoke(19 /* System.Void UnityEngine.UIElements.IStyle::set_flexDirection(UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_4, L_5);
|
|
V_0 = L_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
String_t* L_7 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___itemUssClassName_70;
|
|
NullCheck(L_6);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_6, L_7, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = V_0;
|
|
EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* L_9 = (EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*)il2cpp_codegen_object_new(EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
EventCallback_1__ctor_m1A63B71064E62E50488869A1FEDA9E3F2F231257(L_9, __this, (intptr_t)((void*)InternalTreeView_OnItemMouseUp_m80FBB2D24871F66087E2A1180A312A925E2AFEC2_RuntimeMethod_var), NULL);
|
|
NullCheck(L_8);
|
|
CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14(L_8, L_9, 0, CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_mEE27E25124FA3AE55245CBE54428CC1F223F7D14_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_10, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = L_10;
|
|
String_t* L_12 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentsContainerName_67;
|
|
NullCheck(L_11);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_11, L_12, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = L_11;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14;
|
|
L_14 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_13, NULL);
|
|
StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE L_15;
|
|
L_15 = StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD(2, StyleEnum_1_op_Implicit_m9CC7BE6DFC463FD482DC9D6E3A496FCD0017FCCD_RuntimeMethod_var);
|
|
NullCheck(L_14);
|
|
InterfaceActionInvoker1< StyleEnum_1_t4C47F320FF81E91A50EC2AD0D70A3D620362BBAE >::Invoke(19 /* System.Void UnityEngine.UIElements.IStyle::set_flexDirection(UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.FlexDirection>) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_14, L_15);
|
|
V_1 = L_13;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_1;
|
|
String_t* L_17 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentsContainerName_67;
|
|
NullCheck(L_16);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_16, L_17, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_19;
|
|
L_19 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_18, NULL);
|
|
V_4 = L_19;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = V_1;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_4), L_20, NULL);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_21 = (Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C*)il2cpp_codegen_object_new(Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_21);
|
|
Toggle__ctor_mE11B7E9846C56B588C2FCECD43BA701104F71676(L_21, NULL);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_22 = L_21;
|
|
String_t* L_23 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemToggleName_66;
|
|
NullCheck(L_22);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_22, L_23, NULL);
|
|
V_2 = L_22;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_24 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var);
|
|
String_t* L_25 = ((Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_StaticFields*)il2cpp_codegen_static_fields_for(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var))->___toggleUssClassName_71;
|
|
NullCheck(L_24);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_24, L_25, NULL);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_26 = V_2;
|
|
EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103* L_27 = (EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103*)il2cpp_codegen_object_new(EventCallback_1_t0FE3F70E94CC4C4904A9F1C171A3DE56EE41F103_il2cpp_TypeInfo_var);
|
|
NullCheck(L_27);
|
|
EventCallback_1__ctor_m2AECF13AF3DE354C723AC2C870875E894C4D96C9(L_27, __this, (intptr_t)((void*)InternalTreeView_ToggleExpandedState_m47FB929714A43D85B2F7E6E45B5C7EE3AA188D37_RuntimeMethod_var), NULL);
|
|
bool L_28;
|
|
L_28 = INotifyValueChangedExtensions_RegisterValueChangedCallback_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m21346157EFCB13A3F77EDC25116E4898A4C1FB90(L_26, L_27, INotifyValueChangedExtensions_RegisterValueChangedCallback_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m21346157EFCB13A3F77EDC25116E4898A4C1FB90_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29 = V_0;
|
|
NullCheck(L_29);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_30;
|
|
L_30 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_29, NULL);
|
|
V_4 = L_30;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_31 = V_2;
|
|
Hierarchy_Add_mDDEF4932C9E9FC302755C45A9F7966AEEBC26648((&V_4), L_31, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_32);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_32, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_33 = L_32;
|
|
String_t* L_34 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69;
|
|
NullCheck(L_33);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_33, L_34, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_35 = L_33;
|
|
NullCheck(L_35);
|
|
RuntimeObject* L_36;
|
|
L_36 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_35, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_37;
|
|
L_37 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((1.0f), NULL);
|
|
NullCheck(L_36);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_36, L_37);
|
|
V_3 = L_35;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_38 = V_3;
|
|
String_t* L_39 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69;
|
|
NullCheck(L_38);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_38, L_39, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_40 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_41 = V_3;
|
|
NullCheck(L_40);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_40, L_41, NULL);
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_42 = __this->___m_MakeItem_71;
|
|
V_5 = (bool)((!(((RuntimeObject*)(Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2*)L_42) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_43 = V_5;
|
|
if (!L_43)
|
|
{
|
|
goto IL_0125;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_44 = V_3;
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_45 = __this->___m_MakeItem_71;
|
|
NullCheck(L_45);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_46;
|
|
L_46 = Func_1_Invoke_m073521535E43A005444DC0A7BA0082D630D54BCC_inline(L_45, NULL);
|
|
NullCheck(L_44);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_44, L_46, NULL);
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_47 = V_0;
|
|
V_6 = L_47;
|
|
goto IL_012a;
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_48 = V_6;
|
|
return L_48;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::UnbindTreeItem(UnityEngine.UIElements.VisualElement,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_UnbindTreeItem_mB379B33187EF4C6EA7F38250F3ECB26AAD87DDA3 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
{
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_0;
|
|
L_0 = InternalTreeView_get_unbindItem_m8DF797282645E00D19DD2D3E1BE7AA3A7287514B_inline(__this, NULL);
|
|
V_2 = (bool)((((RuntimeObject*)(Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_2 = __this->___m_ItemWrappers_79;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_inline(L_2, List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_RuntimeMethod_var);
|
|
int32_t L_4 = ___1_index;
|
|
if ((((int32_t)L_3) > ((int32_t)L_4)))
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_5 = __this->___m_ItemWrappers_79;
|
|
int32_t L_6 = ___1_index;
|
|
NullCheck(L_5);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_7;
|
|
L_7 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_5, L_6, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_8 = L_7.___item_1;
|
|
G_B5_0 = L_8;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
V_0 = G_B5_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ___0_element;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_10 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69;
|
|
il2cpp_codegen_runtime_class_init_inline(UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = UQueryExtensions_Q_m95306617BF08AC2853EABB5299786D2095BE631E(L_9, L_10, (String_t*)NULL, NULL);
|
|
NullCheck(L_11);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12;
|
|
L_12 = VisualElement_ElementAt_m980D009F3780523D910429B71C6335B3BD8E84A7(L_11, 0, NULL);
|
|
V_1 = L_12;
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_13;
|
|
L_13 = InternalTreeView_get_unbindItem_m8DF797282645E00D19DD2D3E1BE7AA3A7287514B_inline(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_1;
|
|
RuntimeObject* L_15 = V_0;
|
|
NullCheck(L_13);
|
|
Action_2_Invoke_mC8CA1CAE64EB2ED9C28DB2B4946A15CB6AF33CEA_inline(L_13, L_14, L_15, NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::BindTreeItem(UnityEngine.UIElements.VisualElement,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_BindTreeItem_m857379544B0260386A81D9F9BA47A96E671082A1 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* V_2 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_0 = __this->___m_ItemWrappers_79;
|
|
int32_t L_1 = ___1_index;
|
|
NullCheck(L_0);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_2;
|
|
L_2 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_0, L_1, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_3 = L_2.___item_1;
|
|
V_0 = L_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_element;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_5 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentsContainerName_67;
|
|
il2cpp_codegen_runtime_class_init_inline(UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = UQueryExtensions_Q_m95306617BF08AC2853EABB5299786D2095BE631E(L_4, L_5, (String_t*)NULL, NULL);
|
|
V_1 = L_6;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
VisualElement_Clear_m201F95F3031691823F39BAEC5ED378C82F34AC7F(L_7, NULL);
|
|
V_4 = 0;
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_8, NULL);
|
|
V_5 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_10 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentName_68;
|
|
NullCheck(L_9);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_9, L_10, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_5;
|
|
NullCheck(L_11);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_11, L_12, NULL);
|
|
int32_t L_13 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_14 = V_4;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_15 = __this->___m_ItemWrappers_79;
|
|
int32_t L_16 = ___1_index;
|
|
NullCheck(L_15);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_17;
|
|
L_17 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_15, L_16, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
int32_t L_18 = L_17.___depth_0;
|
|
V_6 = (bool)((((int32_t)L_14) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_6;
|
|
if (L_19)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = ___0_element;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_21 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemToggleName_66;
|
|
il2cpp_codegen_runtime_class_init_inline(UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_22;
|
|
L_22 = UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA(L_20, L_21, (String_t*)NULL, UQueryExtensions_Q_TisToggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_m5E8F6142F47C5B5A96F866B2955BAD07AEA28ECA_RuntimeMethod_var);
|
|
V_2 = L_22;
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_23 = V_2;
|
|
int32_t L_24 = ___1_index;
|
|
bool L_25;
|
|
L_25 = InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D(__this, L_24, NULL);
|
|
NullCheck(L_23);
|
|
VirtualActionInvoker1< bool >::Invoke(107 /* System.Void UnityEngine.UIElements.BaseField`1<System.Boolean>::SetValueWithoutNotify(TValueType) */, L_23, L_25);
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_26 = V_2;
|
|
int32_t L_27 = ___1_index;
|
|
int32_t L_28 = L_27;
|
|
RuntimeObject* L_29 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_28);
|
|
NullCheck(L_26);
|
|
VisualElement_set_userData_mBE9192EE3470BC5B061DFB86B7A38C97DB816F66(L_26, L_29, NULL);
|
|
RuntimeObject* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
bool L_31;
|
|
L_31 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_30);
|
|
V_7 = L_31;
|
|
bool L_32 = V_7;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_33 = V_2;
|
|
NullCheck(L_33);
|
|
VisualElement_set_visible_m02861A5BE4F26942CB5EE857FF4FDB584009E9C3(L_33, (bool)1, NULL);
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_34 = V_2;
|
|
NullCheck(L_34);
|
|
VisualElement_set_visible_m02861A5BE4F26942CB5EE857FF4FDB584009E9C3(L_34, (bool)0, NULL);
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_35 = __this->___m_BindItem_75;
|
|
V_8 = (bool)((((RuntimeObject*)(Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9*)L_35) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_36 = V_8;
|
|
if (!L_36)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = ___0_element;
|
|
il2cpp_codegen_runtime_class_init_inline(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
String_t* L_38 = ((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69;
|
|
il2cpp_codegen_runtime_class_init_inline(UQueryExtensions_t1271382882DF1B8FEEDE5EFA510405ABA7BD3426_il2cpp_TypeInfo_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39;
|
|
L_39 = UQueryExtensions_Q_m95306617BF08AC2853EABB5299786D2095BE631E(L_37, L_38, (String_t*)NULL, NULL);
|
|
NullCheck(L_39);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_40;
|
|
L_40 = VisualElement_ElementAt_m980D009F3780523D910429B71C6335B3BD8E84A7(L_39, 0, NULL);
|
|
V_3 = L_40;
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_41 = __this->___m_BindItem_75;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_42 = V_3;
|
|
RuntimeObject* L_43 = V_0;
|
|
NullCheck(L_41);
|
|
Action_2_Invoke_mC8CA1CAE64EB2ED9C28DB2B4946A15CB6AF33CEA_inline(L_41, L_42, L_43, NULL);
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView::GetItemId(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalTreeView_GetItemId_m677EB88DED8F23B1D63F31AFB85E95D37609FCB6 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_0 = __this->___m_ItemWrappers_79;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_2;
|
|
L_2 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_0, L_1, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
int32_t L_3;
|
|
L_3 = TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.InternalTreeView::IsExpandedByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_ExpandedItemIds_78;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_1 = __this->___m_ItemWrappers_79;
|
|
int32_t L_2 = ___0_index;
|
|
NullCheck(L_1);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_3;
|
|
L_3 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_1, L_2, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
int32_t L_4;
|
|
L_4 = TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6((&V_0), NULL);
|
|
NullCheck(L_0);
|
|
bool L_5;
|
|
L_5 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_0, L_4, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::CollapseItemByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_CollapseItemByIndex_mD53D1FA2F0A63D8A36E67261019FBAB585F1DC3A (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m15B78CA8F6C94A17CB48014CE1B2D2DA3C8BECAD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_0 = __this->___m_ItemWrappers_79;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_2;
|
|
L_2 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_0, L_1, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_3 = L_2.___item_1;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_3);
|
|
V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_3;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = __this->___m_ExpandedItemIds_78;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_7 = __this->___m_ItemWrappers_79;
|
|
int32_t L_8 = ___0_index;
|
|
NullCheck(L_7);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_9;
|
|
L_9 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_7, L_8, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_10 = L_9.___item_1;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_10);
|
|
NullCheck(L_6);
|
|
bool L_12;
|
|
L_12 = List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5(L_6, L_11, List_1_Remove_m2B41E5B9E061DD4D5F58B693018024AADF2AD7F5_RuntimeMethod_var);
|
|
V_0 = 0;
|
|
int32_t L_13 = ___0_index;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_14 = __this->___m_ItemWrappers_79;
|
|
int32_t L_15 = ___0_index;
|
|
NullCheck(L_14);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_16;
|
|
L_16 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_14, L_15, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
int32_t L_17 = L_16.___depth_0;
|
|
V_2 = L_17;
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_18 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_21 = __this->___m_ItemWrappers_79;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_inline(L_21, List_1_get_Count_mBBF88BF379B73679E09AA64EE4D5DCC15CEE02A9_RuntimeMethod_var);
|
|
if ((((int32_t)L_20) >= ((int32_t)L_22)))
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_23 = __this->___m_ItemWrappers_79;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_25;
|
|
L_25 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_23, L_24, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
int32_t L_26 = L_25.___depth_0;
|
|
int32_t L_27 = V_2;
|
|
G_B7_0 = ((((int32_t)L_26) > ((int32_t)L_27))? 1 : 0);
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
V_4 = (bool)G_B7_0;
|
|
bool L_28 = V_4;
|
|
if (L_28)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_29 = __this->___m_ItemWrappers_79;
|
|
int32_t L_30 = ___0_index;
|
|
int32_t L_31 = V_0;
|
|
NullCheck(L_29);
|
|
List_1_RemoveRange_m15B78CA8F6C94A17CB48014CE1B2D2DA3C8BECAD(L_29, ((int32_t)il2cpp_codegen_add(L_30, 1)), L_31, List_1_RemoveRange_m15B78CA8F6C94A17CB48014CE1B2D2DA3C8BECAD_RuntimeMethod_var);
|
|
InternalTreeView_ListViewRefresh_m8B9FFAEDD58FA4FDC6516F203417224A7C87BED0(__this, NULL);
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::ExpandItemByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_ExpandItemByIndex_m88C1496C8F74A4D8497F84B0DD367711EEFB85E3 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_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_InsertRange_m72CEB2CF00535CD03F0B0E21E16BE247647FBEA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_0 = __this->___m_ItemWrappers_79;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_2;
|
|
L_2 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_0, L_1, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_3 = L_2.___item_1;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_3);
|
|
V_1 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_6 = (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177*)il2cpp_codegen_object_new(List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC(L_6, List_1__ctor_m56CB014CCE28C737F2A37C5A20276C6CAAB34EBC_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_7 = __this->___m_ItemWrappers_79;
|
|
int32_t L_8 = ___0_index;
|
|
NullCheck(L_7);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_9;
|
|
L_9 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_7, L_8, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_10 = L_9.___item_1;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.ITreeViewItem::get_children() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_10);
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_12 = __this->___m_ItemWrappers_79;
|
|
int32_t L_13 = ___0_index;
|
|
NullCheck(L_12);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_14;
|
|
L_14 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_12, L_13, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
int32_t L_15 = L_14.___depth_0;
|
|
InternalTreeView_CreateWrappers_m211E98B335DCB3D4F15A041D8B16E7BA13FF6F5C(__this, L_11, ((int32_t)il2cpp_codegen_add(L_15, 1)), (&V_0), NULL);
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_16 = __this->___m_ItemWrappers_79;
|
|
int32_t L_17 = ___0_index;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_18 = V_0;
|
|
NullCheck(L_16);
|
|
List_1_InsertRange_m72CEB2CF00535CD03F0B0E21E16BE247647FBEA0(L_16, ((int32_t)il2cpp_codegen_add(L_17, 1)), L_18, List_1_InsertRange_m72CEB2CF00535CD03F0B0E21E16BE247647FBEA0_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = __this->___m_ExpandedItemIds_78;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_20 = __this->___m_ItemWrappers_79;
|
|
int32_t L_21 = ___0_index;
|
|
NullCheck(L_20);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_22;
|
|
L_22 = List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D(L_20, L_21, List_1_get_Item_mA82A9F55819633B998A37EE7BB47668D60010F9D_RuntimeMethod_var);
|
|
RuntimeObject* L_23 = L_22.___item_1;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_23);
|
|
NullCheck(L_19);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_19, L_24, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
InternalTreeView_ListViewRefresh_m8B9FFAEDD58FA4FDC6516F203417224A7C87BED0(__this, NULL);
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::ToggleExpandedState(UnityEngine.UIElements.ChangeEvent`1<System.Boolean>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_ToggleExpandedState_m47FB929714A43D85B2F7E6E45B5C7EE3AA188D37 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_AreNotEqual_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mC857334D41CB0182D0EBF516EDB7C88F2917AAEA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChangeEvent_1_get_newValue_m0D62ED9449CF3368792D1D5BBC7839722E995776_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_0, NULL);
|
|
V_0 = ((Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C*)IsInstClass((RuntimeObject*)L_1, Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C_il2cpp_TypeInfo_var));
|
|
Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = VisualElement_get_userData_mB304DD064D255F64BB5A2EBC9233E2468B79ECE4(L_2, NULL);
|
|
V_1 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_3, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
|
|
int32_t L_4 = V_1;
|
|
bool L_5;
|
|
L_5 = InternalTreeView_IsExpandedByIndex_mCC18311FA5070D73C6714393C0C088EE8EB3876D(__this, L_4, NULL);
|
|
V_2 = L_5;
|
|
bool L_6 = V_2;
|
|
ChangeEvent_1_t2AA4161DCA648D276CFE726DD08B0D55FA799D4B* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = ChangeEvent_1_get_newValue_m0D62ED9449CF3368792D1D5BBC7839722E995776_inline(L_7, ChangeEvent_1_get_newValue_m0D62ED9449CF3368792D1D5BBC7839722E995776_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
Assert_AreNotEqual_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mC857334D41CB0182D0EBF516EDB7C88F2917AAEA(L_6, L_8, Assert_AreNotEqual_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mC857334D41CB0182D0EBF516EDB7C88F2917AAEA_RuntimeMethod_var);
|
|
bool L_9 = V_2;
|
|
V_3 = L_9;
|
|
bool L_10 = V_3;
|
|
if (!L_10)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_1;
|
|
InternalTreeView_CollapseItemByIndex_mD53D1FA2F0A63D8A36E67261019FBAB585F1DC3A(__this, L_11, NULL);
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
InternalTreeView_ExpandItemByIndex_m88C1496C8F74A4D8497F84B0DD367711EEFB85E3(__this, L_12, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_13 = __this->___m_ScrollView_81;
|
|
NullCheck(L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(96 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_13);
|
|
NullCheck(L_14);
|
|
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.Focusable::Focus() */, L_14);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::CreateWrappers(System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>,System.Int32,System.Collections.Generic.List`1<UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper>&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_CreateWrappers_m211E98B335DCB3D4F15A041D8B16E7BA13FF6F5C (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, RuntimeObject* ___0_treeViewItems, int32_t ___1_depth, List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177** ___2_wrappers, 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_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m5A36B75E5CA8E1C05E38BEBED22E42C9085DF149_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_treeViewItems;
|
|
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.ITreeViewItem>::GetEnumerator() */, IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_006a_1;
|
|
}
|
|
|
|
IL_000b_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>::get_Current() */, IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var, L_4);
|
|
V_1 = L_5;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F));
|
|
int32_t L_6 = ___1_depth;
|
|
(&V_3)->___depth_0 = L_6;
|
|
RuntimeObject* L_7 = V_1;
|
|
(&V_3)->___item_1 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_3)->___item_1), (void*)L_7);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_8 = V_3;
|
|
V_2 = L_8;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177** L_9 = ___2_wrappers;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_10 = *((List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177**)L_9);
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F L_11 = V_2;
|
|
NullCheck(L_10);
|
|
List_1_Add_m5A36B75E5CA8E1C05E38BEBED22E42C9085DF149_inline(L_10, L_11, List_1_Add_m5A36B75E5CA8E1C05E38BEBED22E42C9085DF149_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_12 = __this->___m_ExpandedItemIds_78;
|
|
RuntimeObject* L_13 = V_1;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_13);
|
|
NullCheck(L_12);
|
|
bool L_15;
|
|
L_15 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_12, L_14, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0051_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
bool L_17;
|
|
L_17 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_16);
|
|
G_B5_0 = ((int32_t)(L_17));
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
V_4 = (bool)G_B5_0;
|
|
bool L_18 = V_4;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_19 = V_1;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_20;
|
|
L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.ITreeViewItem::get_children() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_19);
|
|
int32_t L_21 = ___1_depth;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177** L_22 = ___2_wrappers;
|
|
InternalTreeView_CreateWrappers_m211E98B335DCB3D4F15A041D8B16E7BA13FF6F5C(__this, L_20, ((int32_t)il2cpp_codegen_add(L_21, 1)), L_22, NULL);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
RuntimeObject* L_23 = V_0;
|
|
NullCheck(L_23);
|
|
bool L_24;
|
|
L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
|
|
if (L_24)
|
|
{
|
|
goto IL_000b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::RegenerateWrappers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_RegenerateWrappers_m8A4AB7F383C53AAF8E04F695DCE78321BB4B666F (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mACEF452653CD84830D1C884CC5AB8AC460301A92_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177* L_0 = __this->___m_ItemWrappers_79;
|
|
NullCheck(L_0);
|
|
List_1_Clear_mACEF452653CD84830D1C884CC5AB8AC460301A92_inline(L_0, List_1_Clear_mACEF452653CD84830D1C884CC5AB8AC460301A92_RuntimeMethod_var);
|
|
RuntimeObject* L_1 = __this->___m_RootItems_77;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
RuntimeObject* L_3 = __this->___m_RootItems_77;
|
|
List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177** L_4 = (List_1_tC41C589EC5D2B0C53BF9E6B76193FECB76139177**)(&__this->___m_ItemWrappers_79);
|
|
InternalTreeView_CreateWrappers_m211E98B335DCB3D4F15A041D8B16E7BA13FF6F5C(__this, L_3, 0, L_4, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::OnCustomStyleResolved(UnityEngine.UIElements.CustomStyleResolvedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView_OnCustomStyleResolved_mE1716300CCAF189071740EA28C7719FB3A57A9C5 (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __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);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0 = __this->___m_ListView_80;
|
|
NullCheck(L_0);
|
|
float L_1;
|
|
L_1 = BaseVerticalCollectionView_get_fixedItemHeight_m7478BCCFEB566DBC1FF0D99BA0357D12FF8BC481_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_2 = __this->___m_ListView_80;
|
|
NullCheck(L_2);
|
|
bool L_3 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*)L_2)->___m_ItemHeightIsInline_84;
|
|
if (L_3)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
CustomStyleResolvedEvent_t54D095D62773F628A6A05A4531DEE990166062E6* L_4 = ___0_e;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = CustomStyleResolvedEvent_get_customStyle_m0F9CBEBB0EAF766F4A913974871BB5B4DCE1D3F4(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
CustomStyleProperty_1_t6871E5DBF19AB4DC7E1134B32A03B7A458D52E9F L_6 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_ItemHeightProperty_97;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = 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_5, L_6, (&V_0));
|
|
G_B3_0 = ((int32_t)(L_7));
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
V_2 = (bool)G_B3_0;
|
|
bool L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_9 = __this->___m_ListView_80;
|
|
int32_t L_10 = V_0;
|
|
NullCheck(L_9);
|
|
((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*)L_9)->___m_FixedItemHeight_83 = ((float)L_10);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_11 = __this->___m_ListView_80;
|
|
NullCheck(L_11);
|
|
float L_12 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE*)L_11)->___m_FixedItemHeight_83;
|
|
float L_13 = V_1;
|
|
V_3 = (bool)((((int32_t)((((float)L_12) == ((float)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_14 = V_3;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_15 = __this->___m_ListView_80;
|
|
NullCheck(L_15);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(L_15, NULL);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalTreeView__cctor_mD18677C953A2D8A460DE5F28630DBCBCE30452AE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21901F110A9EF6EE4BF90EC534066C1066EB8DDC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral30F4592FAA87F5A071ECFA5A1419274E1E2B465F);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34ACA25DBF2A2F2A6404B2727F20D4415EF95FD6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9120CE52729063099E1090CC0F02B702F2D1EFA7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8899F53C545899EB5B4B4EE963A8A9B987E7DE5);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE2DC374FD848D9CCD14547A479C8B7F3C1C05DA4);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ListViewName_65 = _stringLiteral9120CE52729063099E1090CC0F02B702F2D1EFA7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ListViewName_65), (void*)_stringLiteral9120CE52729063099E1090CC0F02B702F2D1EFA7);
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemToggleName_66 = _stringLiteralE2DC374FD848D9CCD14547A479C8B7F3C1C05DA4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemToggleName_66), (void*)_stringLiteralE2DC374FD848D9CCD14547A479C8B7F3C1C05DA4);
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentsContainerName_67 = _stringLiteral21901F110A9EF6EE4BF90EC534066C1066EB8DDC;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentsContainerName_67), (void*)_stringLiteral21901F110A9EF6EE4BF90EC534066C1066EB8DDC);
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentName_68 = _stringLiteralD8899F53C545899EB5B4B4EE963A8A9B987E7DE5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemIndentName_68), (void*)_stringLiteralD8899F53C545899EB5B4B4EE963A8A9B987E7DE5);
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69 = _stringLiteral30F4592FAA87F5A071ECFA5A1419274E1E2B465F;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___s_ItemContentContainerName_69), (void*)_stringLiteral30F4592FAA87F5A071ECFA5A1419274E1E2B465F);
|
|
((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___itemUssClassName_70 = _stringLiteral34ACA25DBF2A2F2A6404B2727F20D4415EF95FD6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_StaticFields*)il2cpp_codegen_static_fields_for(InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var))->___itemUssClassName_70), (void*)_stringLiteral34ACA25DBF2A2F2A6404B2727F20D4415EF95FD6);
|
|
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.InternalTreeView/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_m819E102F97537DC2BA6F4E59F073D8ECF0FB851F (UxmlFactory_t8C0CFA338F9D59EB753E147466CE3C307797B50B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_mE5749865C77DEAF2FAE6B6BA4DAE9EEF7913F380_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_mE5749865C77DEAF2FAE6B6BA4DAE9EEF7913F380(__this, UxmlFactory_2__ctor_mE5749865C77DEAF2FAE6B6BA4DAE9EEF7913F380_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.InternalTreeView/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_mD2AD574EB5A9575DFFD2610A3BAC71CE4C154442 (UxmlTraits_t6A5EA2E9F2DB65C27764862855EB4B3F02FD9C34* __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*)&InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
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);
|
|
V_0 = 0;
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_3 = __this->___m_ItemHeight_12;
|
|
RuntimeObject* L_4 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_5 = ___2_cc;
|
|
NullCheck(L_3);
|
|
bool L_6;
|
|
L_6 = UxmlIntAttributeDescription_TryGetValueFromBag_mDA355BAD8A840E989A86049EF3DD0F641A56C9B9(L_3, L_4, L_5, (&V_0), NULL);
|
|
V_1 = L_6;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_ve;
|
|
int32_t L_9 = V_0;
|
|
NullCheck(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_8, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)));
|
|
InternalTreeView_set_itemHeight_m35EB30D758F0AEDCAF1A0F6E3DDD50556C5277F4(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_8, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)), L_9, NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_ve;
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_11 = __this->___m_ShowBorder_13;
|
|
RuntimeObject* L_12 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_13 = ___2_cc;
|
|
NullCheck(L_11);
|
|
bool L_14;
|
|
L_14 = VirtualFuncInvoker2< bool, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_11, L_12, L_13);
|
|
NullCheck(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_10, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)));
|
|
InternalTreeView_set_showBorder_m49CD2757C59C987D4FE8F4D5C58E939E3DF836B7(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_10, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)), L_14, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = ___0_ve;
|
|
UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* L_16 = __this->___m_SelectionType_14;
|
|
RuntimeObject* L_17 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_18 = ___2_cc;
|
|
NullCheck(L_16);
|
|
int32_t L_19;
|
|
L_19 = VirtualFuncInvoker2< int32_t, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.SelectionType>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_16, L_17, L_18);
|
|
NullCheck(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_15, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)));
|
|
InternalTreeView_set_selectionType_m218A0CD82295797F6D271346B030A895E41E2790(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_15, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)), L_19, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = ___0_ve;
|
|
UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* L_21 = __this->___m_ShowAlternatingRowBackgrounds_15;
|
|
RuntimeObject* L_22 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_23 = ___2_cc;
|
|
NullCheck(L_21);
|
|
int32_t L_24;
|
|
L_24 = VirtualFuncInvoker2< int32_t, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<UnityEngine.UIElements.AlternatingRowBackground>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_21, L_22, L_23);
|
|
NullCheck(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_20, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)));
|
|
InternalTreeView_set_showAlternatingRowBackgrounds_mBA96C39E21C306DBA4A92F39A3D49B6AD6F59394(((InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D*)CastclassClass((RuntimeObject*)L_20, InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D_il2cpp_TypeInfo_var)), L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_mC2B5644027EAD374805434B02B63E58CFAC87439 (UxmlTraits_t6A5EA2E9F2DB65C27764862855EB4B3F02FD9C34* __this, 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*)&TypedUxmlAttributeDescription_1_set_defaultValue_m396CE8DBEB33097C72955E72BC61FF8116890A56_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedUxmlAttributeDescription_1_set_defaultValue_m6C7A6564E2433A152B5E820242C98F939D400D75_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1__ctor_m7BEBF12D3F3F60FBEAB82EC2A25063BB9A98B4F4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1__ctor_mB098781FD9AFFEAE0E69A10F4837BF2CEAD7FFCC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral606CFCEF059936E75E875E2B8EF9F56D7C369C29);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral68D8319E1BA348F308A9B257F3AB19FBB0ADE8C0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1B3E69DA55CFB97DB529ABA6F16920A49FA4B51);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA9090AFE82E5E36A3F986207EB9613D71234988);
|
|
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, _stringLiteralB1B3E69DA55CFB97DB529ABA6F16920A49FA4B51, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_2 = L_1;
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___s_DefaultItemHeight_82;
|
|
NullCheck(L_2);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline(L_2, L_3, TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
__this->___m_ItemHeight_12 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemHeight_12), (void*)L_2);
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_4 = (UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE*)il2cpp_codegen_object_new(UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
UxmlBoolAttributeDescription__ctor_m32928BDCA34A048BB5CCD64422AD9115EFE92298(L_4, NULL);
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_5, _stringLiteral606CFCEF059936E75E875E2B8EF9F56D7C369C29, NULL);
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_6 = L_5;
|
|
NullCheck(L_6);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_inline(L_6, (bool)0, TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_RuntimeMethod_var);
|
|
__this->___m_ShowBorder_13 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShowBorder_13), (void*)L_6);
|
|
UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* L_7 = (UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300*)il2cpp_codegen_object_new(UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
UxmlEnumAttributeDescription_1__ctor_m7BEBF12D3F3F60FBEAB82EC2A25063BB9A98B4F4(L_7, UxmlEnumAttributeDescription_1__ctor_m7BEBF12D3F3F60FBEAB82EC2A25063BB9A98B4F4_RuntimeMethod_var);
|
|
UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_8, _stringLiteralEA9090AFE82E5E36A3F986207EB9613D71234988, NULL);
|
|
UxmlEnumAttributeDescription_1_t56478B19520E6E85B4966DAFF7FA16680EF0A300* L_9 = L_8;
|
|
NullCheck(L_9);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_m396CE8DBEB33097C72955E72BC61FF8116890A56_inline(L_9, 1, TypedUxmlAttributeDescription_1_set_defaultValue_m396CE8DBEB33097C72955E72BC61FF8116890A56_RuntimeMethod_var);
|
|
__this->___m_SelectionType_14 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectionType_14), (void*)L_9);
|
|
UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* L_10 = (UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4*)il2cpp_codegen_object_new(UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4_il2cpp_TypeInfo_var);
|
|
NullCheck(L_10);
|
|
UxmlEnumAttributeDescription_1__ctor_mB098781FD9AFFEAE0E69A10F4837BF2CEAD7FFCC(L_10, UxmlEnumAttributeDescription_1__ctor_mB098781FD9AFFEAE0E69A10F4837BF2CEAD7FFCC_RuntimeMethod_var);
|
|
UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* L_11 = L_10;
|
|
NullCheck(L_11);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_11, _stringLiteral68D8319E1BA348F308A9B257F3AB19FBB0ADE8C0, NULL);
|
|
UxmlEnumAttributeDescription_1_tBDA39AF7DA4B8FD397DF15A7888FF979DDDC25A4* L_12 = L_11;
|
|
NullCheck(L_12);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_m6C7A6564E2433A152B5E820242C98F939D400D75_inline(L_12, 0, TypedUxmlAttributeDescription_1_set_defaultValue_m6C7A6564E2433A152B5E820242C98F939D400D75_RuntimeMethod_var);
|
|
__this->___m_ShowAlternatingRowBackgrounds_15 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShowAlternatingRowBackgrounds_15), (void*)L_12);
|
|
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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_pinvoke(const TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F& unmarshaled, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___item_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'item' of type 'TreeViewItemWrapper': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___item_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_pinvoke_back(const TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_pinvoke& marshaled, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F& unmarshaled)
|
|
{
|
|
Exception_t* ___item_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'item' of type 'TreeViewItemWrapper': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___item_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_pinvoke_cleanup(TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_com(const TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F& unmarshaled, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___item_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'item' of type 'TreeViewItemWrapper': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___item_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_com_back(const TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_com& marshaled, TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F& unmarshaled)
|
|
{
|
|
Exception_t* ___item_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'item' of type 'TreeViewItemWrapper': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___item_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper
|
|
IL2CPP_EXTERN_C void TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshal_com_cleanup(TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.InternalTreeView/TreeViewItemWrapper::get_id()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6 (TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = __this->___item_1;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.ITreeViewItem::get_id() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TreeViewItemWrapper_tFA593EC4B06E0C963C0EAA9C18DDC99EEDC05D1F*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TreeViewItemWrapper_get_id_m11F698893F3CE1406DBFD7EDEA1F05A4BD4C0DC6(_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.Void UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllItemsU3Ed__64__ctor_m0253749740A0BD91742FC88913D44801C8A01A6B (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_U3CU3E1__state;
|
|
__this->___U3CU3E1__state_0 = L_0;
|
|
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_1;
|
|
L_1 = Thread_get_CurrentThread_m6D4719F4993DB9200490531FF02D4076FF9CA9BD(NULL);
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_1, NULL);
|
|
__this->___U3CU3El__initialThreadId_2 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.IDisposable.Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllItemsU3Ed__64_System_IDisposable_Dispose_m90A284D81E8232D07B50B66E0437D05A60D82D72 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetAllItemsU3Ed__64_MoveNext_mD31931FD349D76BD19EEEC6151791835D3F9FD69 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mAE40922A25FDBA7867C019085CE230FAAF51A70B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_mE94B7F59312A16974D63836B201A850AA5B3D7CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m114B389DBA17B72470237C3ED999DBC3AB6BA390_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m71CCBD64C52834EAFA609D5A8FD9BA5A1B5D6980_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state_0;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)1)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
__this->___U3CU3E1__state_0 = (-1);
|
|
RuntimeObject* L_3 = __this->___rootItems_3;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* L_5 = (Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451*)il2cpp_codegen_object_new(Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Stack_1__ctor_m114B389DBA17B72470237C3ED999DBC3AB6BA390(L_5, Stack_1__ctor_m114B389DBA17B72470237C3ED999DBC3AB6BA390_RuntimeMethod_var);
|
|
__this->___U3CiteratorStackU3E5__1_5 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CiteratorStackU3E5__1_5), (void*)L_5);
|
|
RuntimeObject* L_6 = __this->___rootItems_3;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>::GetEnumerator() */, IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var, L_6);
|
|
__this->___U3CcurrentIteratorU3E5__2_6 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CcurrentIteratorU3E5__2_6), (void*)L_7);
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeObject* L_8 = __this->___U3CcurrentIteratorU3E5__2_6;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
|
|
__this->___U3ChasNextU3E5__3_7 = L_9;
|
|
bool L_10 = __this->___U3ChasNextU3E5__3_7;
|
|
V_2 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* L_12 = __this->___U3CiteratorStackU3E5__1_5;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = Stack_1_get_Count_m71CCBD64C52834EAFA609D5A8FD9BA5A1B5D6980_inline(L_12, Stack_1_get_Count_m71CCBD64C52834EAFA609D5A8FD9BA5A1B5D6980_RuntimeMethod_var);
|
|
V_3 = (bool)((((int32_t)L_13) > ((int32_t)0))? 1 : 0);
|
|
bool L_14 = V_3;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* L_15 = __this->___U3CiteratorStackU3E5__1_5;
|
|
NullCheck(L_15);
|
|
RuntimeObject* L_16;
|
|
L_16 = Stack_1_Pop_mAE40922A25FDBA7867C019085CE230FAAF51A70B(L_15, Stack_1_Pop_mAE40922A25FDBA7867C019085CE230FAAF51A70B_RuntimeMethod_var);
|
|
__this->___U3CcurrentIteratorU3E5__2_6 = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CcurrentIteratorU3E5__2_6), (void*)L_16);
|
|
goto IL_010b;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
RuntimeObject* L_17 = __this->___U3CcurrentIteratorU3E5__2_6;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18;
|
|
L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem>::get_Current() */, IEnumerator_1_t3094D477B964E20DA7A2FBDCE746832ECCCC56CF_il2cpp_TypeInfo_var, L_17);
|
|
__this->___U3CcurrentItemU3E5__4_8 = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CcurrentItemU3E5__4_8), (void*)L_18);
|
|
RuntimeObject* L_19 = __this->___U3CcurrentItemU3E5__4_8;
|
|
__this->___U3CU3E2__current_1 = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)L_19);
|
|
__this->___U3CU3E1__state_0 = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
__this->___U3CU3E1__state_0 = (-1);
|
|
RuntimeObject* L_20 = __this->___U3CcurrentItemU3E5__4_8;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.ITreeViewItem::get_hasChildren() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_20);
|
|
V_4 = L_21;
|
|
bool L_22 = V_4;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tD4465E97FAAAFD450F766F80007EAD484D692451* L_23 = __this->___U3CiteratorStackU3E5__1_5;
|
|
RuntimeObject* L_24 = __this->___U3CcurrentIteratorU3E5__2_6;
|
|
NullCheck(L_23);
|
|
Stack_1_Push_mE94B7F59312A16974D63836B201A850AA5B3D7CA(L_23, L_24, Stack_1_Push_mE94B7F59312A16974D63836B201A850AA5B3D7CA_RuntimeMethod_var);
|
|
RuntimeObject* L_25 = __this->___U3CcurrentItemU3E5__4_8;
|
|
NullCheck(L_25);
|
|
RuntimeObject* L_26;
|
|
L_26 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.ITreeViewItem::get_children() */, ITreeViewItem_t0C5908872EA2842688BFFB2055D5096EC1EA9EFC_il2cpp_TypeInfo_var, L_25);
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_27;
|
|
L_27 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.ITreeViewItem>::GetEnumerator() */, IEnumerable_1_t1DCD7370BCB062DA7B74DB398BCCCB035669E369_il2cpp_TypeInfo_var, L_26);
|
|
__this->___U3CcurrentIteratorU3E5__2_6 = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CcurrentIteratorU3E5__2_6), (void*)L_27);
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
__this->___U3CcurrentItemU3E5__4_8 = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CcurrentItemU3E5__4_8), (void*)(RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
V_5 = (bool)1;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ITreeViewItem UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.Generic.IEnumerator<UnityEngine.UIElements.ITreeViewItem>.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetAllItemsU3Ed__64_System_Collections_Generic_IEnumeratorU3CUnityEngine_UIElements_ITreeViewItemU3E_get_Current_m4F2BA6F7FD1803D935102F6D4E21D702B97E9922 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.IEnumerator.Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetAllItemsU3Ed__64_System_Collections_IEnumerator_Reset_m20FDA24DCBCB3AA7ACCEFD8DD9175E509CAC6C02 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_0);
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CGetAllItemsU3Ed__64_System_Collections_IEnumerator_Reset_m20FDA24DCBCB3AA7ACCEFD8DD9175E509CAC6C02_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Object UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetAllItemsU3Ed__64_System_Collections_IEnumerator_get_Current_m8CC6AF09C3EAD7730617384E1C6556C81B6F6337 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerator`1<UnityEngine.UIElements.ITreeViewItem> UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.Generic.IEnumerable<UnityEngine.UIElements.ITreeViewItem>.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetAllItemsU3Ed__64_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_ITreeViewItemU3E_GetEnumerator_m69581F9A79E89E3DB98FA9B18A49028D4ECF6688 (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state_0;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2)))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->___U3CU3El__initialThreadId_2;
|
|
Thread_t0A773B9DE873D2DCAA7D229EAB36757B500E207F* L_2;
|
|
L_2 = Thread_get_CurrentThread_m6D4719F4993DB9200490531FF02D4076FF9CA9BD(NULL);
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Thread_get_ManagedThreadId_m74ACB74A574EE535C2B00B7D64F203A62E796B05(L_2, NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
__this->___U3CU3E1__state_0 = 0;
|
|
V_0 = __this;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* L_4 = (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5*)il2cpp_codegen_object_new(U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
U3CGetAllItemsU3Ed__64__ctor_m0253749740A0BD91742FC88913D44801C8A01A6B(L_4, 0, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* L_5 = V_0;
|
|
RuntimeObject* L_6 = __this->___U3CU3E3__rootItems_4;
|
|
NullCheck(L_5);
|
|
L_5->___rootItems_3 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___rootItems_3), (void*)L_6);
|
|
U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator UnityEngine.UIElements.InternalTreeView/<GetAllItems>d__64::System.Collections.IEnumerable.GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CGetAllItemsU3Ed__64_System_Collections_IEnumerable_GetEnumerator_m246004FAF631F1F281AA5003623FAA991B9A6C4B (U3CGetAllItemsU3Ed__64_t9EFAED139C12952E9775C9509CE4409F9B3014F5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = U3CGetAllItemsU3Ed__64_System_Collections_Generic_IEnumerableU3CUnityEngine_UIElements_ITreeViewItemU3E_GetEnumerator_m69581F9A79E89E3DB98FA9B18A49028D4ECF6688(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogCall::.ctor(System.Delegate,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogCall__ctor_mE87EDA5105BA352B7B582F3D91E4C420BD39FA74 (EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* __this, Delegate_t* ___0_callback, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogCall__ctor_mE87EDA5105BA352B7B582F3D91E4C420BD39FA74_AdjustorThunk (RuntimeObject* __this, Delegate_t* ___0_callback, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_evt, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7*>(__this + _offset);
|
|
EventDebuggerLogCall__ctor_mE87EDA5105BA352B7B582F3D91E4C420BD39FA74(_thisAdjusted, ___0_callback, ___1_evt, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogCall::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogCall_Dispose_m6E871797D254F1D1DA542A62869B4E3C87613ACD (EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogCall_Dispose_m6E871797D254F1D1DA542A62869B4E3C87613ACD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogCall_t59182CB55F45044F5A90A22E3F1C4CF7019306D7*>(__this + _offset);
|
|
EventDebuggerLogCall_Dispose_m6E871797D254F1D1DA542A62869B4E3C87613ACD(_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.EventDebuggerLogIMGUICall::.ctor(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogIMGUICall__ctor_m8181F947BF193F4D2ACD9AB48654C906663A69C4 (EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogIMGUICall__ctor_m8181F947BF193F4D2ACD9AB48654C906663A69C4_AdjustorThunk (RuntimeObject* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8*>(__this + _offset);
|
|
EventDebuggerLogIMGUICall__ctor_m8181F947BF193F4D2ACD9AB48654C906663A69C4(_thisAdjusted, ___0_evt, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogIMGUICall::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogIMGUICall_Dispose_mC840F6D4E4891BD9853F0E4478739F1AA7B09643 (EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogIMGUICall_Dispose_mC840F6D4E4891BD9853F0E4478739F1AA7B09643_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8*>(__this + _offset);
|
|
EventDebuggerLogIMGUICall_Dispose_mC840F6D4E4891BD9853F0E4478739F1AA7B09643(_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.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)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogExecuteDefaultAction__ctor_m9AF0AC749478DD49D1B611ED1917877F51CF5A69_AdjustorThunk (RuntimeObject* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C*>(__this + _offset);
|
|
EventDebuggerLogExecuteDefaultAction__ctor_m9AF0AC749478DD49D1B611ED1917877F51CF5A69(_thisAdjusted, ___0_evt, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDebuggerLogExecuteDefaultAction::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC (EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDebuggerLogExecuteDefaultAction_t4BD1E8D540F51FE3BA46751A84DA9581BAACF48C*>(__this + _offset);
|
|
EventDebuggerLogExecuteDefaultAction_Dispose_mBC74F8FF7BFC868514A63D45B0181AE8C5450CBC(_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.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)
|
|
{
|
|
{
|
|
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.ReusableListViewItem::get_rootElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ReusableListViewItem_get_rootElement_mB0DDF36CC247BF756D68D156C6FA80C7DCBA2DDB (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B2_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B1_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_Container_7;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(__this, NULL);
|
|
G_B2_0 = L_2;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
return G_B2_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::Init(UnityEngine.UIElements.VisualElement,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_Init_mBEEFA1B50223C7715CDF31DEAEDDB8C9808B603A (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_item, bool ___1_usesAnimatedDragger, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_item;
|
|
ReusableCollectionItem_Init_mD7EF87A4FAF46AF8D0400C43E1F3B601F7168780(__this, L_0, NULL);
|
|
bool L_1 = ___1_usesAnimatedDragger;
|
|
ReusableListViewItem_UpdateHierarchy_m729D631C0ED2B9CC6B318051F1CCDDF77483DF74(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::UpdateHierarchy(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_UpdateHierarchy_m729D631C0ED2B9CC6B318051F1CCDDF77483DF74 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, bool ___0_usesAnimatedDragger, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
{
|
|
bool L_0 = ___0_usesAnimatedDragger;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0123;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = __this->___m_Container_7;
|
|
V_3 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_3 = V_3;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_4, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = L_4;
|
|
il2cpp_codegen_runtime_class_init_inline(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
String_t* L_6 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemUssClassName_131;
|
|
NullCheck(L_5);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_5, L_6, NULL);
|
|
__this->___m_Container_7 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Container_7), (void*)L_5);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = __this->___m_Container_7;
|
|
String_t* L_8 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemUssClassName_131;
|
|
NullCheck(L_7);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_7, L_8, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_9, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = L_9;
|
|
String_t* L_11 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleUssClassName_133;
|
|
NullCheck(L_10);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_10, L_11, NULL);
|
|
__this->___m_DragHandle_8 = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DragHandle_8), (void*)L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = __this->___m_DragHandle_8;
|
|
String_t* L_13 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleUssClassName_133;
|
|
NullCheck(L_12);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_12, L_13, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_14, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = L_14;
|
|
String_t* L_16 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleBarUssClassName_134;
|
|
NullCheck(L_15);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_15, L_16, NULL);
|
|
V_1 = L_15;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = V_1;
|
|
String_t* L_18 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleBarUssClassName_134;
|
|
NullCheck(L_17);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_17, L_18, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = __this->___m_DragHandle_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = V_1;
|
|
NullCheck(L_19);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_19, L_20, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_21);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_21, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22 = L_21;
|
|
String_t* L_23 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleBarUssClassName_134;
|
|
NullCheck(L_22);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_22, L_23, NULL);
|
|
V_2 = L_22;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = V_2;
|
|
String_t* L_25 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemHandleBarUssClassName_134;
|
|
NullCheck(L_24);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_24, L_25, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26 = __this->___m_DragHandle_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = V_2;
|
|
NullCheck(L_26);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_26, L_27, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)il2cpp_codegen_object_new(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
NullCheck(L_28);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(L_28, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29 = L_28;
|
|
String_t* L_30 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemContainerUssClassName_132;
|
|
NullCheck(L_29);
|
|
VisualElement_set_name_m5ABC7B8D2586B1839DD436E1AAF25D81395759BC(L_29, L_30, NULL);
|
|
__this->___m_ItemContainer_9 = L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemContainer_9), (void*)L_29);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_31 = __this->___m_ItemContainer_9;
|
|
String_t* L_32 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemContainerUssClassName_132;
|
|
NullCheck(L_31);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_31, L_32, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_33 = __this->___m_ItemContainer_9;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(__this, NULL);
|
|
NullCheck(L_33);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_33, L_34, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_35 = __this->___m_Container_7;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_36 = __this->___m_DragHandle_8;
|
|
NullCheck(L_35);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_35, L_36, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = __this->___m_Container_7;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_38 = __this->___m_ItemContainer_9;
|
|
NullCheck(L_37);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_37, L_38, NULL);
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = __this->___m_Container_7;
|
|
V_4 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_39) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_40 = V_4;
|
|
if (!L_40)
|
|
{
|
|
goto IL_0135;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_0135:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_41 = __this->___m_Container_7;
|
|
NullCheck(L_41);
|
|
VisualElement_RemoveFromHierarchy_m5F43EA9B8CBA47EA2AEC2D75180713395AEECF64(L_41, NULL);
|
|
__this->___m_Container_7 = (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Container_7), (void*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL);
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::UpdateDragHandle(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_UpdateDragHandle_mAB69E554D8DC5E62D0BDEB431189551A9665936C (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, bool ___0_needsDragHandle, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B6_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B5_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B7_0 = NULL;
|
|
{
|
|
bool L_0 = ___0_needsDragHandle;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = __this->___m_DragHandle_8;
|
|
NullCheck(L_2);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = VisualElement_get_parent_m80978E6D0A928AB4885EE4CD0E2295C72AA73000(L_2, NULL);
|
|
V_1 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5;
|
|
L_5 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = __this->___m_DragHandle_8;
|
|
NullCheck(L_5);
|
|
VisualElement_Insert_m95ACF6FC7BCF788C955714E8DADF07FACE5C0031(L_5, 0, L_6, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
String_t* L_8 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemUssClassName_131;
|
|
NullCheck(L_7);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = __this->___m_DragHandle_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = L_9;
|
|
G_B5_0 = L_10;
|
|
if (L_10)
|
|
{
|
|
G_B6_0 = L_10;
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VisualElement_get_parent_m80978E6D0A928AB4885EE4CD0E2295C72AA73000(G_B6_0, NULL);
|
|
G_B7_0 = L_11;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
V_2 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)G_B7_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = __this->___m_DragHandle_8;
|
|
NullCheck(L_13);
|
|
VisualElement_RemoveFromHierarchy_m5F43EA9B8CBA47EA2AEC2D75180713395AEECF64(L_13, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
String_t* L_15 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___reorderableItemUssClassName_131;
|
|
NullCheck(L_14);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_14, L_15, NULL);
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::PreAttachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_PreAttachElement_m1A64D02423E033405437411DB8265792F3EDEE63 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ReusableCollectionItem_PreAttachElement_mEE0E5E2DE8B1A57C79A960DB1D9560BF801F1FF8(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___itemUssClassName_128;
|
|
NullCheck(L_0);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::DetachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_DetachElement_mD3B8E91AA69DE1E44F63DB3EF21A27B49FA5FF39 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ReusableCollectionItem_DetachElement_m4C909D58BF00D1F93B439E95D4611619571862BD(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_StaticFields*)il2cpp_codegen_static_fields_for(ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var))->___itemUssClassName_128;
|
|
NullCheck(L_0);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::SetDragGhost(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem_SetDragGhost_mF7D069D25DACE906923D5A694E9EB731A9F79596 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, bool ___0_dragGhost, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
RuntimeObject* G_B4_1 = NULL;
|
|
{
|
|
bool L_0 = ___0_dragGhost;
|
|
ReusableCollectionItem_SetDragGhost_m5C2DCBC82DDEB3C0E50C0C4D8063C3AEB4EA83A3(__this, L_0, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = __this->___m_DragHandle_8;
|
|
V_0 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = __this->___m_DragHandle_8;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_3, NULL);
|
|
bool L_5;
|
|
L_5 = ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F_inline(__this, NULL);
|
|
G_B2_0 = L_4;
|
|
if (L_5)
|
|
{
|
|
G_B3_0 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = 0;
|
|
G_B4_1 = G_B2_0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
G_B4_0 = 1;
|
|
G_B4_1 = G_B3_0;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 L_6;
|
|
L_6 = StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030(G_B4_0, StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030_RuntimeMethod_var);
|
|
NullCheck(G_B4_1);
|
|
InterfaceActionInvoker1< StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 >::Invoke(17 /* System.Void UnityEngine.UIElements.IStyle::set_display(UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, G_B4_1, L_6);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableListViewItem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableListViewItem__ctor_mF8D65CDC149565B652023634789602B0DC338FE1 (ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReusableCollectionItem__ctor_m3D1DECE74C59C1E8B63296EC013882ACDB269302(__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.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ReusableCollectionItem_get_rootElement_m5C78CEEBFCE911177B2383C77188A50596FFA520 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_bindableElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CbindableElementU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_bindableElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_bindableElement_m0115DE25E0FAF4839E8D7C58A8ACFA0ED08CBB0E (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CbindableElementU3Ek__BackingField_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CbindableElementU3Ek__BackingField_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues> UnityEngine.UIElements.ReusableCollectionItem::get_animator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC* ReusableCollectionItem_get_animator_m80C1974FBEF9BC497B41C8843E0DFD66D1A8F91E (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC* L_0 = __this->___U3CanimatorU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_animator(UnityEngine.UIElements.Experimental.ValueAnimation`1<UnityEngine.UIElements.Experimental.StyleValues>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_animator_m6E1C36B00185F40AF674AE98F2E4AB6424D35603 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueAnimation_1_t639ABF37111B0184CCB3DE2F577E466F04B28FAC* L_0 = ___0_value;
|
|
__this->___U3CanimatorU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CanimatorU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.ReusableCollectionItem::get_index()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReusableCollectionItem_get_index_m39FCB0A8975CC57CBF964AB494B171CCA507CCB0 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CindexU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_index(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_index_mBE6E436EF78A151186FE66E59E1F032B653BBF1E (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CindexU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.ReusableCollectionItem::get_id()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReusableCollectionItem_get_id_m765F123306544777F8B1E273AFB8A0A1E94C4857 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CidU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_id(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_id_m681AB8AB77EE8E8E0B0105C0955B7BCF1FBDE1B7 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CidU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ReusableCollectionItem::get_isDragGhost()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisDragGhostU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::set_isDragGhost(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_isDragGhost_m14D52FD2C4162C489B35ADDD9DCB13C83DF912EB (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisDragGhostU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::add_onGeometryChanged(System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_add_onGeometryChanged_m1179275FBB81D05CCD6DF76739BAEF2279263327 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_0 = NULL;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_1 = NULL;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_2 = NULL;
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_0 = __this->___onGeometryChanged_5;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_2 = V_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)Castclass((RuntimeObject*)L_4, Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09_il2cpp_TypeInfo_var));
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09** L_5 = (Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09**)(&__this->___onGeometryChanged_5);
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_6 = V_2;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_7 = V_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_9 = V_0;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)L_9) == ((RuntimeObject*)(Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::remove_onGeometryChanged(System.Action`1<UnityEngine.UIElements.ReusableCollectionItem>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_remove_onGeometryChanged_m532D3FD4F4EFB1BCCCF64F79DBAC87412A7E6A74 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_0 = NULL;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_1 = NULL;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* V_2 = NULL;
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_0 = __this->___onGeometryChanged_5;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_2 = V_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)Castclass((RuntimeObject*)L_4, Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09_il2cpp_TypeInfo_var));
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09** L_5 = (Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09**)(&__this->___onGeometryChanged_5);
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_6 = V_2;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_7 = V_1;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_9 = V_0;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)L_9) == ((RuntimeObject*)(Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem__ctor_m3D1DECE74C59C1E8B63296EC013882ACDB269302 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReusableCollectionItem_OnGeometryChanged_m5887D8D48E1708EC472796E143A0F11F171B5F30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = (-1);
|
|
V_0 = L_0;
|
|
ReusableCollectionItem_set_id_m681AB8AB77EE8E8E0B0105C0955B7BCF1FBDE1B7_inline(__this, L_0, NULL);
|
|
int32_t L_1 = V_0;
|
|
ReusableCollectionItem_set_index_mBE6E436EF78A151186FE66E59E1F032B653BBF1E_inline(__this, L_1, NULL);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_2 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_2, __this, (intptr_t)((void*)ReusableCollectionItem_OnGeometryChanged_m5887D8D48E1708EC472796E143A0F11F171B5F30_RuntimeMethod_var), NULL);
|
|
__this->___m_GeometryChangedEventCallback_6 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GeometryChangedEventCallback_6), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::Init(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_Init_mD7EF87A4FAF46AF8D0400C43E1F3B601F7168780 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_item;
|
|
ReusableCollectionItem_set_bindableElement_m0115DE25E0FAF4839E8D7C58A8ACFA0ED08CBB0E_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::PreAttachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_PreAttachElement_mEE0E5E2DE8B1A57C79A960DB1D9560BF801F1FF8 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, 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*)&CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
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))->___itemUssClassName_102;
|
|
NullCheck(L_0);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_0, L_1, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_3 = __this->___m_GeometryChangedEventCallback_6;
|
|
NullCheck(L_2);
|
|
CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F(L_2, L_3, 0, CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::DetachElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_DetachElement_m4C909D58BF00D1F93B439E95D4611619571862BD (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, 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*)&CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B2_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B1_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
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))->___itemUssClassName_102;
|
|
NullCheck(L_0);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_0, L_1, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_3 = __this->___m_GeometryChangedEventCallback_6;
|
|
NullCheck(L_2);
|
|
CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2(L_2, L_3, 0, CallbackEventHandler_UnregisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m7E6F5C986914E13F679AC4D1E8F0131F9C2A06E2_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = L_4;
|
|
G_B1_0 = L_5;
|
|
if (L_5)
|
|
{
|
|
G_B2_0 = L_5;
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
VisualElement_RemoveFromHierarchy_m5F43EA9B8CBA47EA2AEC2D75180713395AEECF64(G_B2_0, NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, __this, (bool)0);
|
|
VirtualActionInvoker1< bool >::Invoke(9 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetDragGhost(System.Boolean) */, __this, (bool)0);
|
|
int32_t L_6 = (-1);
|
|
V_0 = L_6;
|
|
ReusableCollectionItem_set_id_m681AB8AB77EE8E8E0B0105C0955B7BCF1FBDE1B7_inline(__this, L_6, NULL);
|
|
int32_t L_7 = V_0;
|
|
ReusableCollectionItem_set_index_mBE6E436EF78A151186FE66E59E1F032B653BBF1E_inline(__this, L_7, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_SetSelected_m8FE47E2FEB4B5A199ABC48CC079D2D7CF10B9852 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_selected, 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;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = ___0_selected;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
String_t* L_3 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemSelectedVariantUssClassName_106;
|
|
NullCheck(L_2);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(L_2, L_3, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = L_4;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_5, NULL);
|
|
NullCheck(L_5);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_5, ((int32_t)((int32_t)L_6|8)), NULL);
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
il2cpp_codegen_runtime_class_init_inline(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var);
|
|
String_t* L_8 = ((BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_StaticFields*)il2cpp_codegen_static_fields_for(BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_il2cpp_TypeInfo_var))->___itemSelectedVariantUssClassName_106;
|
|
NullCheck(L_7);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(L_7, L_8, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9;
|
|
L_9 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = L_9;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_10, NULL);
|
|
NullCheck(L_10);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_10, ((int32_t)((int32_t)L_11&((int32_t)-9))), NULL);
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::SetDragGhost(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_SetDragGhost_m5C2DCBC82DDEB3C0E50C0C4D8063C3AEB4EA83A3 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_dragGhost, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
RuntimeObject* G_B6_1 = NULL;
|
|
{
|
|
bool L_0 = ___0_dragGhost;
|
|
ReusableCollectionItem_set_isDragGhost_m14D52FD2C4162C489B35ADDD9DCB13C83DF912EB_inline(__this, L_0, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, __this);
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_1, NULL);
|
|
bool L_3;
|
|
L_3 = ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F_inline(__this, NULL);
|
|
G_B1_0 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 4;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
G_B3_0 = 0;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_4;
|
|
L_4 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(G_B3_0, NULL);
|
|
NullCheck(G_B3_1);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(29 /* System.Void UnityEngine.UIElements.IStyle::set_maxHeight(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, G_B3_1, L_4);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5;
|
|
L_5 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(__this, NULL);
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6;
|
|
L_6 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_5, NULL);
|
|
bool L_7;
|
|
L_7 = ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F_inline(__this, NULL);
|
|
G_B4_0 = L_6;
|
|
if (L_7)
|
|
{
|
|
G_B5_0 = L_6;
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 L_8;
|
|
L_8 = StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030(G_B6_0, StyleEnum_1_op_Implicit_mE2664CDFC678F602380EED12BA228071E6F49030_RuntimeMethod_var);
|
|
NullCheck(G_B6_1);
|
|
InterfaceActionInvoker1< StyleEnum_1_t3B02FFF55849C9C8E6A7C0AA9C7E5F65F10C9C69 >::Invoke(17 /* System.Void UnityEngine.UIElements.IStyle::set_display(UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.DisplayStyle>) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, G_B6_1, L_8);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ReusableCollectionItem::OnGeometryChanged(UnityEngine.UIElements.GeometryChangedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableCollectionItem_OnGeometryChanged_m5887D8D48E1708EC472796E143A0F11F171B5F30 (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* G_B2_0 = NULL;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* G_B1_0 = NULL;
|
|
{
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_0 = __this->___onGeometryChanged_5;
|
|
Action_1_t6043513E89820190529C82ABBDD8FD0BB2A9AC09* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
Action_1_Invoke_mFD5EC89284E7AAC8D83DE1003566C086F83D1B9D_inline(G_B2_0, __this, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
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.CollectionVirtualizationController::.ctor(UnityEngine.UIElements.ScrollView)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionVirtualizationController__ctor_m15661787A5CF03B2A2EC3250592571C64A0174D2 (CollectionVirtualizationController_t55D4B8A3B70A7C50AC8BEF90F18EF888017E7801* __this, ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___0_scrollView, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_0 = ___0_scrollView;
|
|
__this->___m_ScrollView_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ScrollView_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
|
|
// UnityEngine.UIElements.Experimental.TreeView UnityEngine.UIElements.TreeViewController::get_treeView()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0;
|
|
L_0 = CollectionViewController_get_view_mA2B294EA0DC4E6E490482CBA616FE3DA7A3FF385_inline(__this, NULL);
|
|
return ((TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2*)IsInstClass((RuntimeObject*)L_0, TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::RebuildTree()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_RebuildTree_m446272AB558F1C3F08B9ED4494111AEF6216002C (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m80E83C8F4CAA1AE4265DA6B826FFD60A5E0A26E5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m5053DE4A6501FDA7668CDA192619ADA3CCFCE5FD_RuntimeMethod_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
{
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_0 = __this->___m_TreeItems_4;
|
|
NullCheck(L_0);
|
|
Dictionary_2_Clear_m5053DE4A6501FDA7668CDA192619ADA3CCFCE5FD(L_0, Dictionary_2_Clear_m5053DE4A6501FDA7668CDA192619ADA3CCFCE5FD_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = __this->___m_RootIndices_5;
|
|
NullCheck(L_1);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_1, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
RuntimeObject* L_2;
|
|
L_2 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(16 /* System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetAllItemIds(System.Collections.Generic.IEnumerable`1<System.Int32>) */, __this, (RuntimeObject*)NULL);
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = 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_2);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_006a_1;
|
|
}
|
|
|
|
IL_0029_1:
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_6);
|
|
V_1 = L_7;
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9;
|
|
L_9 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(17 /* System.Int32 UnityEngine.UIElements.TreeViewController::GetParentId(System.Int32) */, __this, L_8);
|
|
V_2 = L_9;
|
|
int32_t L_10 = V_2;
|
|
V_3 = (bool)((((int32_t)L_10) == ((int32_t)(-1)))? 1 : 0);
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_12 = __this->___m_RootIndices_5;
|
|
int32_t L_13 = V_1;
|
|
NullCheck(L_12);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_12, L_13, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_004e_1:
|
|
{
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_14 = __this->___m_TreeItems_4;
|
|
int32_t L_15 = V_1;
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_2;
|
|
int32_t L_18 = V_1;
|
|
RuntimeObject* L_19;
|
|
L_19 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(18 /* System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetChildrenIds(System.Int32) */, __this, L_18);
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 L_20;
|
|
memset((&L_20), 0, sizeof(L_20));
|
|
TreeItem__ctor_m5AD0735970E7850C38C68ACA818CE77CBDB19AFE((&L_20), L_16, L_17, L_19, /*hidden argument*/NULL);
|
|
NullCheck(L_14);
|
|
Dictionary_2_Add_m80E83C8F4CAA1AE4265DA6B826FFD60A5E0A26E5(L_14, L_15, L_20, Dictionary_2_Add_m80E83C8F4CAA1AE4265DA6B826FFD60A5E0A26E5_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
RuntimeObject* L_21 = V_0;
|
|
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_0029_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
TreeViewController_RegenerateWrappers_m1610E795108958D94D73EA0DFFD6DA72C0B26FA9(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetRootItemIds()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TreeViewController_GetRootItemIds_m58715FC942B40FF54DA44F7D8E4A939906EFB771 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_RootIndices_5;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::HasChildren(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_HasChildren_m5783364D978C7E8ED651595910E30CFBEA124722 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_0 = __this->___m_TreeItems_4;
|
|
int32_t L_1 = ___0_id;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
bool L_4;
|
|
L_4 = TreeItem_get_hasChildren_m4AF285276011A7A8F27590638996577C5219A9DD((&V_0), NULL);
|
|
V_2 = L_4;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_5 = V_2;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::HasChildrenByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_HasChildrenByIndex_m8AFD470510762E87313CB445B948C70554287CF7 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
bool L_1;
|
|
L_1 = TreeViewController_IsIndexValid_m4181F2B4B46D485E8E2076A1EF4956A402D97980(__this, L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_2 = __this->___m_ItemWrappers_6;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_4;
|
|
L_4 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_2, L_3, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
bool L_5;
|
|
L_5 = TreeViewItemWrapper_get_hasChildren_mE5F98CC263A6E73EB4BD61417273716F66A38314((&V_0), NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetChildrenIdsByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TreeViewController_GetChildrenIdsByIndex_m073CAB2F2A77305EC9866C16B47882B9CDC2C106 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
bool L_1;
|
|
L_1 = TreeViewController_IsIndexValid_m4181F2B4B46D485E8E2076A1EF4956A402D97980(__this, L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_2 = __this->___m_ItemWrappers_6;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_4;
|
|
L_4 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_2, L_3, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
RuntimeObject* L_5;
|
|
L_5 = TreeViewItemWrapper_get_childrenIds_mA17AB8F8BCE3D157C367DED21F39E7DA7259B0EF((&V_0), NULL);
|
|
G_B3_0 = L_5;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_1 = G_B3_0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TreeViewController::GetChildIndexForId(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewController_GetChildIndexForId_mEBC36744B2C6456514F7611C9DB484493D05FDB4 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_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;
|
|
}
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
RuntimeObject* V_2 = NULL;
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject* V_6 = NULL;
|
|
RuntimeObject* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
{
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_0 = __this->___m_TreeItems_4;
|
|
int32_t L_1 = ___0_id;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
V_4 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_4;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
V_5 = (-1);
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_1 = 0;
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_4 = __this->___m_TreeItems_4;
|
|
int32_t L_5;
|
|
L_5 = TreeItem_get_parentId_mBF12DF0B9B91E8B60A65FE301A80EF16AC100790_inline((&V_0), NULL);
|
|
NullCheck(L_4);
|
|
bool L_6;
|
|
L_6 = Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9(L_4, L_5, (&V_3), Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = __this->___m_RootIndices_5;
|
|
V_6 = L_7;
|
|
RuntimeObject* L_8 = V_6;
|
|
G_B5_0 = L_8;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
RuntimeObject* L_9;
|
|
L_9 = TreeItem_get_childrenIds_m73B843337FC4D0341CC88D3A5299B287FE267952_inline((&V_3), NULL);
|
|
G_B5_0 = L_9;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
V_2 = G_B5_0;
|
|
RuntimeObject* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = 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_10);
|
|
V_7 = L_11;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007e:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
RuntimeObject* L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_7;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13);
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0073_1;
|
|
}
|
|
|
|
IL_0054_1:
|
|
{
|
|
RuntimeObject* L_14 = V_7;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_14);
|
|
V_8 = L_15;
|
|
int32_t L_16 = V_8;
|
|
int32_t L_17 = ___0_id;
|
|
V_9 = (bool)((((int32_t)L_16) == ((int32_t)L_17))? 1 : 0);
|
|
bool L_18 = V_9;
|
|
if (!L_18)
|
|
{
|
|
goto IL_006e_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_5 = L_19;
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_006e_1:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0073_1:
|
|
{
|
|
RuntimeObject* L_21 = V_7;
|
|
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_0054_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
V_5 = (-1);
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
int32_t L_23 = V_5;
|
|
return L_23;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TreeViewController::GetIndentationDepth(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TreeViewController_GetIndentationDepth_m6FDADF78CC34446E49D764D1870B17C79E98F9AF (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
{
|
|
V_0 = 0;
|
|
int32_t L_0 = ___0_id;
|
|
int32_t L_1;
|
|
L_1 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(17 /* System.Int32 UnityEngine.UIElements.TreeViewController::GetParentId(System.Int32) */, __this, L_0);
|
|
V_1 = L_1;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
int32_t L_3;
|
|
L_3 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(17 /* System.Int32 UnityEngine.UIElements.TreeViewController::GetParentId(System.Int32) */, __this, L_2);
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_5) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_2;
|
|
if (L_6)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_3 = L_7;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_8 = V_3;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsExpanded(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsExpanded_m480C1973551BB2CE97115E255D73C238614E1473 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_0;
|
|
L_0 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_0);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1;
|
|
L_1 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_0, NULL);
|
|
int32_t L_2 = ___0_id;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_1, L_2, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsExpandedByIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsExpandedByIndex_m6D7F1E88F8FE4C5D83E04A4F3D6AE011CAF695FC (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
bool L_1;
|
|
L_1 = TreeViewController_IsIndexValid_m4181F2B4B46D485E8E2076A1EF4956A402D97980(__this, L_0, NULL);
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_3 = __this->___m_ItemWrappers_6;
|
|
int32_t L_4 = ___0_index;
|
|
NullCheck(L_3);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_5;
|
|
L_5 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_3, L_4, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_2 = L_5;
|
|
int32_t L_6;
|
|
L_6 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_2), NULL);
|
|
bool L_7;
|
|
L_7 = TreeViewController_IsExpanded_m480C1973551BB2CE97115E255D73C238614E1473(__this, L_6, NULL);
|
|
V_1 = L_7;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
bool L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::ExpandItemByIndex(System.Int32,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_ExpandItemByIndex_m41996B38FE428A684D7DAD6EE5AA156D821DC568 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, bool ___1_expandAllChildren, bool ___2_refresh, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m98A9F88FF94538B5EECB0F87E1E3B3572E02ACA1_RuntimeMethod_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_InsertRange_m536E608D8CA599643DA6502B482B93B588957C21_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
RuntimeObject* V_5 = NULL;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_6 = NULL;
|
|
RuntimeObject* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
bool V_12 = false;
|
|
RuntimeObject* V_13 = NULL;
|
|
RuntimeObject* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_StaticFields*)il2cpp_codegen_static_fields_for(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var))->___K_ExpandItemByIndex_9;
|
|
V_2 = L_0;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
|
|
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_2), NULL);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01bd:
|
|
{// begin finally (depth: 1)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
bool L_3;
|
|
L_3 = TreeViewController_HasChildrenByIndex_m8AFD470510762E87313CB445B948C70554287CF7(__this, L_2, NULL);
|
|
V_3 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_3;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01cc;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
int32_t L_5 = ___0_index;
|
|
int32_t L_6;
|
|
L_6 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(6 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32) */, __this, L_5);
|
|
V_1 = L_6;
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_7;
|
|
L_7 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_7);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_8;
|
|
L_8 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_7, NULL);
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
bool L_10;
|
|
L_10 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_8, L_9, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
bool L_11 = ___1_expandAllChildren;
|
|
V_4 = (bool)((int32_t)(((((int32_t)L_10) == ((int32_t)0))? 1 : 0)|(int32_t)L_11));
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0137_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = ___0_index;
|
|
RuntimeObject* L_14;
|
|
L_14 = TreeViewController_GetChildrenIdsByIndex_m073CAB2F2A77305EC9866C16B47882B9CDC2C106(__this, L_13, NULL);
|
|
V_5 = L_14;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_15 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
NullCheck(L_15);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_15, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
V_6 = L_15;
|
|
RuntimeObject* L_16 = V_5;
|
|
NullCheck(L_16);
|
|
RuntimeObject* L_17;
|
|
L_17 = 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_16);
|
|
V_7 = L_17;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_009c_1:
|
|
{// begin finally (depth: 2)
|
|
{
|
|
RuntimeObject* L_18 = V_7;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00a8_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_19 = V_7;
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_19);
|
|
}
|
|
|
|
IL_00a8_1:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_0091_2;
|
|
}
|
|
|
|
IL_0066_2:
|
|
{
|
|
RuntimeObject* L_20 = V_7;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_20);
|
|
V_8 = L_21;
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_22 = __this->___m_TreeItemIdsWithItemWrappers_7;
|
|
int32_t L_23 = V_8;
|
|
NullCheck(L_22);
|
|
bool L_24;
|
|
L_24 = HashSet_1_Contains_m98A9F88FF94538B5EECB0F87E1E3B3572E02ACA1(L_22, L_23, HashSet_1_Contains_m98A9F88FF94538B5EECB0F87E1E3B3572E02ACA1_RuntimeMethod_var);
|
|
V_9 = (bool)((((int32_t)L_24) == ((int32_t)0))? 1 : 0);
|
|
bool L_25 = V_9;
|
|
if (!L_25)
|
|
{
|
|
goto IL_0090_2;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_26 = V_6;
|
|
int32_t L_27 = V_8;
|
|
NullCheck(L_26);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_26, L_27, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0090_2:
|
|
{
|
|
}
|
|
|
|
IL_0091_2:
|
|
{
|
|
RuntimeObject* L_28 = V_7;
|
|
NullCheck(L_28);
|
|
bool L_29;
|
|
L_29 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_28);
|
|
if (L_29)
|
|
{
|
|
goto IL_0066_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a9_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00a9_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_30 = V_6;
|
|
int32_t L_31 = V_1;
|
|
int32_t L_32;
|
|
L_32 = TreeViewController_GetIndentationDepth_m6FDADF78CC34446E49D764D1870B17C79E98F9AF(__this, L_31, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** L_33 = (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF**)(&__this->___m_WrapperInsertionList_8);
|
|
TreeViewController_CreateWrappers_m1F7DD97E5FA4DBAF8A813FC8FD1BB9BA497C518B(__this, L_30, ((int32_t)il2cpp_codegen_add(L_32, 1)), L_33, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_34 = __this->___m_ItemWrappers_6;
|
|
int32_t L_35 = ___0_index;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_36 = __this->___m_WrapperInsertionList_8;
|
|
NullCheck(L_34);
|
|
List_1_InsertRange_m536E608D8CA599643DA6502B482B93B588957C21(L_34, ((int32_t)il2cpp_codegen_add(L_35, 1)), L_36, List_1_InsertRange_m536E608D8CA599643DA6502B482B93B588957C21_RuntimeMethod_var);
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_37;
|
|
L_37 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_37);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_38;
|
|
L_38 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_37, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_39 = __this->___m_ItemWrappers_6;
|
|
int32_t L_40 = ___0_index;
|
|
NullCheck(L_39);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_41;
|
|
L_41 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_39, L_40, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_11 = L_41;
|
|
int32_t L_42;
|
|
L_42 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_11), NULL);
|
|
NullCheck(L_38);
|
|
bool L_43;
|
|
L_43 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_38, L_42, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_10 = (bool)((((int32_t)L_43) == ((int32_t)0))? 1 : 0);
|
|
bool L_44 = V_10;
|
|
if (!L_44)
|
|
{
|
|
goto IL_012a_1;
|
|
}
|
|
}
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_45;
|
|
L_45 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_45);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_46;
|
|
L_46 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_45, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_47 = __this->___m_ItemWrappers_6;
|
|
int32_t L_48 = ___0_index;
|
|
NullCheck(L_47);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_49;
|
|
L_49 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_47, L_48, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_11 = L_49;
|
|
int32_t L_50;
|
|
L_50 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_11), NULL);
|
|
NullCheck(L_46);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_46, L_50, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_012a_1:
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_51 = __this->___m_WrapperInsertionList_8;
|
|
NullCheck(L_51);
|
|
List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_inline(L_51, List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0137_1:
|
|
{
|
|
bool L_52 = ___1_expandAllChildren;
|
|
V_12 = L_52;
|
|
bool L_53 = V_12;
|
|
if (!L_53)
|
|
{
|
|
goto IL_01a8_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_54 = V_1;
|
|
RuntimeObject* L_55;
|
|
L_55 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(18 /* System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetChildrenIds(System.Int32) */, __this, L_54);
|
|
V_13 = L_55;
|
|
RuntimeObject* L_56 = V_13;
|
|
RuntimeObject* L_57;
|
|
L_57 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(16 /* System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetAllItemIds(System.Collections.Generic.IEnumerable`1<System.Int32>) */, __this, L_56);
|
|
NullCheck(L_57);
|
|
RuntimeObject* L_58;
|
|
L_58 = 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_57);
|
|
V_14 = L_58;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_019a_1:
|
|
{// begin finally (depth: 2)
|
|
{
|
|
RuntimeObject* L_59 = V_14;
|
|
if (!L_59)
|
|
{
|
|
goto IL_01a6_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_60 = V_14;
|
|
NullCheck(L_60);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_60);
|
|
}
|
|
|
|
IL_01a6_1:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_018f_2;
|
|
}
|
|
|
|
IL_015a_2:
|
|
{
|
|
RuntimeObject* L_61 = V_14;
|
|
NullCheck(L_61);
|
|
int32_t L_62;
|
|
L_62 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_61);
|
|
V_15 = L_62;
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_63;
|
|
L_63 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_63);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_64;
|
|
L_64 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_63, NULL);
|
|
int32_t L_65 = V_15;
|
|
NullCheck(L_64);
|
|
bool L_66;
|
|
L_66 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_64, L_65, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_16 = (bool)((((int32_t)L_66) == ((int32_t)0))? 1 : 0);
|
|
bool L_67 = V_16;
|
|
if (!L_67)
|
|
{
|
|
goto IL_018f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_68 = V_15;
|
|
int32_t L_69;
|
|
L_69 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetIndexForId(System.Int32) */, __this, L_68);
|
|
TreeViewController_ExpandItemByIndex_m41996B38FE428A684D7DAD6EE5AA156D821DC568(__this, L_69, (bool)1, (bool)0, NULL);
|
|
}
|
|
|
|
IL_018f_2:
|
|
{
|
|
RuntimeObject* L_70 = V_14;
|
|
NullCheck(L_70);
|
|
bool L_71;
|
|
L_71 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_70);
|
|
if (L_71)
|
|
{
|
|
goto IL_015a_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01a7_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01a7_1:
|
|
{
|
|
}
|
|
|
|
IL_01a8_1:
|
|
{
|
|
bool L_72 = ___2_refresh;
|
|
V_17 = L_72;
|
|
bool L_73 = V_17;
|
|
if (!L_73)
|
|
{
|
|
goto IL_01bb_1;
|
|
}
|
|
}
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_74;
|
|
L_74 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_74);
|
|
BaseVerticalCollectionView_RefreshItems_m53943EBC70FFE5C66EE6A7FEF5ECA33DE80AC0D6(L_74, NULL);
|
|
}
|
|
|
|
IL_01bb_1:
|
|
{
|
|
goto IL_01cc;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::ExpandItem(System.Int32,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_ExpandItem_m6D9AD428FAB5C591F4684B75B9E81A3B647DE75B (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, bool ___1_expandAllChildren, bool ___2_refresh, 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_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_id;
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker1< bool, int32_t >::Invoke(20 /* System.Boolean UnityEngine.UIElements.TreeViewController::HasChildren(System.Int32) */, __this, L_0);
|
|
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_1 = 0;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_3 = __this->___m_ItemWrappers_6;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_5;
|
|
L_5 = List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30(L_3, L_4, List_1_get_Item_m6A104E5DA6C40F8EFFF6B0003179601ABF301F30_RuntimeMethod_var);
|
|
V_3 = L_5;
|
|
int32_t L_6;
|
|
L_6 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_3), NULL);
|
|
int32_t L_7 = ___0_id;
|
|
V_2 = (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0);
|
|
bool L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
bool L_9 = ___1_expandAllChildren;
|
|
if (L_9)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_1;
|
|
bool L_11;
|
|
L_11 = TreeViewController_IsExpandedByIndex_m6D7F1E88F8FE4C5D83E04A4F3D6AE011CAF695FC(__this, L_10, NULL);
|
|
G_B7_0 = ((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
V_4 = (bool)G_B7_0;
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_13 = V_1;
|
|
bool L_14 = ___1_expandAllChildren;
|
|
bool L_15 = ___2_refresh;
|
|
TreeViewController_ExpandItemByIndex_m41996B38FE428A684D7DAD6EE5AA156D821DC568(__this, L_13, L_14, L_15, NULL);
|
|
goto IL_0099;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_18 = __this->___m_ItemWrappers_6;
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_inline(L_18, List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_RuntimeMethod_var);
|
|
V_5 = (bool)((((int32_t)L_17) < ((int32_t)L_19))? 1 : 0);
|
|
bool L_20 = V_5;
|
|
if (L_20)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_21;
|
|
L_21 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_21);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_22;
|
|
L_22 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_21, NULL);
|
|
int32_t L_23 = ___0_id;
|
|
NullCheck(L_22);
|
|
bool L_24;
|
|
L_24 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_22, L_23, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
V_6 = L_24;
|
|
bool L_25 = V_6;
|
|
if (!L_25)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_26;
|
|
L_26 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_26);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_27;
|
|
L_27 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_26, NULL);
|
|
int32_t L_28 = ___0_id;
|
|
NullCheck(L_27);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_27, L_28, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::RegenerateWrappers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_RegenerateWrappers_m1610E795108958D94D73EA0DFFD6DA72C0B26FA9 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m88C3BA6617F6667126635140414D44D76C42AE92_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_0 = __this->___m_ItemWrappers_6;
|
|
NullCheck(L_0);
|
|
List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_inline(L_0, List_1_Clear_mA448E0D0A46222BF1CFC81FAEEC91F951E02BFD2_RuntimeMethod_var);
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_1 = __this->___m_TreeItemIdsWithItemWrappers_7;
|
|
NullCheck(L_1);
|
|
HashSet_1_Clear_m88C3BA6617F6667126635140414D44D76C42AE92(L_1, HashSet_1_Clear_m88C3BA6617F6667126635140414D44D76C42AE92_RuntimeMethod_var);
|
|
RuntimeObject* L_2;
|
|
L_2 = TreeViewController_GetRootItemIds_m58715FC942B40FF54DA44F7D8E4A939906EFB771(__this, NULL);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** L_6 = (List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF**)(&__this->___m_ItemWrappers_6);
|
|
TreeViewController_CreateWrappers_m1F7DD97E5FA4DBAF8A813FC8FD1BB9BA497C518B(__this, L_5, 0, L_6, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_7 = __this->___m_ItemWrappers_6;
|
|
CollectionViewController_SetItemsSourceWithoutNotify_mEADC035350955889F3736227BC1B98BEE474876A(__this, L_7, NULL);
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::CreateWrappers(System.Collections.Generic.IEnumerable`1<System.Int32>,System.Int32,System.Collections.Generic.List`1<UnityEngine.UIElements.TreeViewItemWrapper>&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_CreateWrappers_m1F7DD97E5FA4DBAF8A813FC8FD1BB9BA497C518B (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, RuntimeObject* ___0_treeViewItemIds, int32_t ___1_depth, List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** ___2_wrappers, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3BDBC6797E58BA17ADF8679ED9156D5CD6D2FCDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
int32_t G_B5_0 = 0;
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* G_B13_0 = NULL;
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* G_B12_0 = NULL;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* G_B14_0 = NULL;
|
|
int32_t G_B19_0 = 0;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_StaticFields*)il2cpp_codegen_static_fields_for(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var))->___k_CreateWrappers_10;
|
|
V_1 = L_0;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
|
|
L_1 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_1), NULL);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00f9:
|
|
{// begin finally (depth: 1)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
RuntimeObject* L_2 = ___0_treeViewItemIds;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0021_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** L_3 = ___2_wrappers;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_4 = *((List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF**)L_3);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0021_1;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_5 = __this->___m_TreeItemIdsWithItemWrappers_7;
|
|
G_B5_0 = ((((RuntimeObject*)(HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0022_1;
|
|
}
|
|
|
|
IL_0021_1:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
V_2 = (bool)G_B5_0;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
|
|
IL_002b_1:
|
|
{
|
|
RuntimeObject* L_7 = ___0_treeViewItemIds;
|
|
NullCheck(L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = 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_7);
|
|
V_3 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00ec_1:
|
|
{// begin finally (depth: 2)
|
|
{
|
|
RuntimeObject* L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_00f6_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_10 = V_3;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
|
|
}
|
|
|
|
IL_00f6_1:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_00df_2;
|
|
}
|
|
|
|
IL_0038_2:
|
|
{
|
|
RuntimeObject* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452_il2cpp_TypeInfo_var, L_11);
|
|
V_4 = L_12;
|
|
Dictionary_2_tBA28DDE9EBD7869B2D9C725CB660A33231C09054* L_13 = __this->___m_TreeItems_4;
|
|
int32_t L_14 = V_4;
|
|
NullCheck(L_13);
|
|
bool L_15;
|
|
L_15 = Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9(L_13, L_14, (&V_5), Dictionary_2_TryGetValue_mFCF1207000DDB81B9A6F8D5E477A7683D922FBD9_RuntimeMethod_var);
|
|
V_7 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
bool L_16 = V_7;
|
|
if (!L_16)
|
|
{
|
|
goto IL_005e_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00df_2;
|
|
}
|
|
|
|
IL_005e_2:
|
|
{
|
|
TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90 L_17 = V_5;
|
|
int32_t L_18 = ___1_depth;
|
|
TreeViewItemWrapper__ctor_m7B5ECA451F7EC2957E2B6C60D5F5DAC4C83C5B9E((&V_6), L_17, L_18, NULL);
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** L_19 = ___2_wrappers;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_20 = *((List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF**)L_19);
|
|
TreeViewItemWrapper_t4475B9923345B2D51C29E1E5285A4F92FA65C839 L_21 = V_6;
|
|
NullCheck(L_20);
|
|
List_1_Add_m3BDBC6797E58BA17ADF8679ED9156D5CD6D2FCDF_inline(L_20, L_21, List_1_Add_m3BDBC6797E58BA17ADF8679ED9156D5CD6D2FCDF_RuntimeMethod_var);
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* L_22 = __this->___m_TreeItemIdsWithItemWrappers_7;
|
|
int32_t L_23 = V_4;
|
|
NullCheck(L_22);
|
|
bool L_24;
|
|
L_24 = HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB(L_22, L_23, HashSet_1_Add_m9B0DD9902395EE95D3DC522264BE1EBBBD3513EB_RuntimeMethod_var);
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_25;
|
|
L_25 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_26 = L_25;
|
|
G_B12_0 = L_26;
|
|
if (L_26)
|
|
{
|
|
G_B13_0 = L_26;
|
|
goto IL_008d_2;
|
|
}
|
|
}
|
|
{
|
|
G_B14_0 = ((List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)(NULL));
|
|
goto IL_0092_2;
|
|
}
|
|
|
|
IL_008d_2:
|
|
{
|
|
NullCheck(G_B13_0);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_27;
|
|
L_27 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(G_B13_0, NULL);
|
|
G_B14_0 = L_27;
|
|
}
|
|
|
|
IL_0092_2:
|
|
{
|
|
V_8 = (bool)((((RuntimeObject*)(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)G_B14_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_28 = V_8;
|
|
if (!L_28)
|
|
{
|
|
goto IL_009d_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00df_2;
|
|
}
|
|
|
|
IL_009d_2:
|
|
{
|
|
TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* L_29;
|
|
L_29 = TreeViewController_get_treeView_m1E0DC19ECB91D183597CE36028E533117D073831(__this, NULL);
|
|
NullCheck(L_29);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_30;
|
|
L_30 = TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline(L_29, NULL);
|
|
int32_t L_31;
|
|
L_31 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_6), NULL);
|
|
NullCheck(L_30);
|
|
bool L_32;
|
|
L_32 = List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B(L_30, L_31, List_1_Contains_m4FD96E89F15844C90032C7386BAB528817F1FF5B_RuntimeMethod_var);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00bf_2;
|
|
}
|
|
}
|
|
{
|
|
bool L_33;
|
|
L_33 = TreeViewItemWrapper_get_hasChildren_mE5F98CC263A6E73EB4BD61417273716F66A38314((&V_6), NULL);
|
|
G_B19_0 = ((int32_t)(L_33));
|
|
goto IL_00c0_2;
|
|
}
|
|
|
|
IL_00bf_2:
|
|
{
|
|
G_B19_0 = 0;
|
|
}
|
|
|
|
IL_00c0_2:
|
|
{
|
|
V_9 = (bool)G_B19_0;
|
|
bool L_34 = V_9;
|
|
if (!L_34)
|
|
{
|
|
goto IL_00de_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35;
|
|
L_35 = TreeViewItemWrapper_get_id_mF21D380DAB6F960C7EAC10947278085CFA0F24CA((&V_6), NULL);
|
|
RuntimeObject* L_36;
|
|
L_36 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(18 /* System.Collections.Generic.IEnumerable`1<System.Int32> UnityEngine.UIElements.TreeViewController::GetChildrenIds(System.Int32) */, __this, L_35);
|
|
int32_t L_37 = ___1_depth;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF** L_38 = ___2_wrappers;
|
|
TreeViewController_CreateWrappers_m1F7DD97E5FA4DBAF8A813FC8FD1BB9BA497C518B(__this, L_36, ((int32_t)il2cpp_codegen_add(L_37, 1)), L_38, NULL);
|
|
}
|
|
|
|
IL_00de_2:
|
|
{
|
|
}
|
|
|
|
IL_00df_2:
|
|
{
|
|
RuntimeObject* L_39 = V_3;
|
|
NullCheck(L_39);
|
|
bool L_40;
|
|
L_40 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_39);
|
|
if (L_40)
|
|
{
|
|
goto IL_0038_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00f7_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00f7_1:
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TreeViewController::IsIndexValid(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TreeViewController_IsIndexValid_m4181F2B4B46D485E8E2076A1EF4956A402D97980 (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
List_1_tDD673E02B713760331F9D857C7B1D1C4A07194EF* L_2 = __this->___m_ItemWrappers_6;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_inline(L_2, List_1_get_Count_m1EF133191AB14C1DA30D1569E78D22439687E3EA_RuntimeMethod_var);
|
|
G_B3_0 = ((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::RaiseItemParentChanged(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController_RaiseItemParentChanged_m88E12AF4A6AE57AF0BA4563C33E82085A609356A (TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A* __this, int32_t ___0_id, int32_t ___1_newParentId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_id;
|
|
int32_t L_1 = ___1_newParentId;
|
|
CollectionViewController_RaiseItemIndexChanged_mE12A41E7F1E29A78B60EDE6E02A9D3728D944E77(__this, L_0, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TreeViewController::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TreeViewController__cctor_m6CFCA94B5ED7EEA0917AF35890EEF1C0237B6B4D (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96E1A4EC563403BF571F34B1058DFBDA1A660176);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF02EA19AA3262DA0B2230BAF7AE43B794BFFC3FC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC L_0;
|
|
L_0 = ProfilerCategory_get_Scripts_m84B0F774438E512DFAF8FD21E0FBE76F00419AFE(NULL);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ProfilerMarker__ctor_m5958260A54C3A7F358A71AACDF47BA28178A5AB7_inline((&L_1), L_0, _stringLiteralF02EA19AA3262DA0B2230BAF7AE43B794BFFC3FC, /*hidden argument*/NULL);
|
|
((TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_StaticFields*)il2cpp_codegen_static_fields_for(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var))->___K_ExpandItemByIndex_9 = L_1;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_2), _stringLiteral96E1A4EC563403BF571F34B1058DFBDA1A660176, /*hidden argument*/NULL);
|
|
((TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_StaticFields*)il2cpp_codegen_static_fields_for(TreeViewController_t2A6E23D78D68A63B7DBFE6AE3B40DBD847F5034A_il2cpp_TypeInfo_var))->___k_CreateWrappers_10 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceChanged_2;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07** L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07**)(&__this->___itemsSourceChanged_2);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceChanged_2;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07** L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07**)(&__this->___itemsSourceChanged_2);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_0 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_1 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_2 = NULL;
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_0 = __this->___itemIndexChanged_3;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_2 = V_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)Castclass((RuntimeObject*)L_4, Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var));
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8** L_5 = (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8**)(&__this->___itemIndexChanged_3);
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_6 = V_2;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_7 = V_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_9 = V_0;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)L_9) == ((RuntimeObject*)(Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_0 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_1 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* V_2 = NULL;
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_0 = __this->___itemIndexChanged_3;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_2 = V_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)Castclass((RuntimeObject*)L_4, Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8_il2cpp_TypeInfo_var));
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8** L_5 = (Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8**)(&__this->___itemIndexChanged_3);
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_6 = V_2;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_7 = V_1;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_9 = V_0;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)L_9) == ((RuntimeObject*)(Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IList UnityEngine.UIElements.CollectionViewController::get_itemsSource()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_ItemsSource_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_ItemsSource_1;
|
|
RuntimeObject* L_1 = ___0_value;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_3 = ___0_value;
|
|
__this->___m_ItemsSource_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemsSource_1), (void*)L_3);
|
|
CollectionViewController_RaiseItemsSourceChanged_mFA839DFF187864594DA98808C07A4358060CD734(__this, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::SetItemsSourceWithoutNotify(System.Collections.IList)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_SetItemsSourceWithoutNotify_mEADC035350955889F3736227BC1B98BEE474876A (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, RuntimeObject* ___0_source, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_source;
|
|
__this->___m_ItemsSource_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ItemsSource_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.BaseVerticalCollectionView UnityEngine.UIElements.CollectionViewController::get_view()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* CollectionViewController_get_view_mA2B294EA0DC4E6E490482CBA616FE3DA7A3FF385 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_IsNotNull_TisBaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_m82FCBFE93613E21A21DDE783C6A8DCFE7B0DB7B7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral55F1C75AA70A7E5742E7E2237B02C64D5D311233);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = ___0_view;
|
|
__this->___m_View_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_View_0), (void*)L_0);
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_1 = __this->___m_View_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
Assert_IsNotNull_TisBaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_m82FCBFE93613E21A21DDE783C6A8DCFE7B0DB7B7(L_1, _stringLiteral55F1C75AA70A7E5742E7E2237B02C64D5D311233, Assert_IsNotNull_TisBaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE_m82FCBFE93613E21A21DDE783C6A8DCFE7B0DB7B7_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.CollectionViewController::GetItemsCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionViewController_GetItemsCount_m0B430585C77BFA31A60D39408965D32A6BF11784 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_ItemsSource_1;
|
|
RuntimeObject* L_1 = L_0;
|
|
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);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, G_B2_0);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.CollectionViewController::GetIndexForId(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionViewController_GetIndexForId_m1EAD74FE57E2961D13E007CC23EDC82D72909D8F (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, int32_t ___0_id, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_id;
|
|
V_0 = L_0;
|
|
goto IL_0005;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.CollectionViewController::GetIdForIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionViewController_GetIdForIndex_m684E4FA72D11715447058BF6BB4F173B3FAA0BD2 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* G_B2_0 = NULL;
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
NullCheck(L_0);
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_getItemId_m51EF1320768EF82E1DEB2F7346E6F3259B098C4D_inline(L_0, NULL);
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
G_B3_0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
NullCheck(G_B2_0);
|
|
int32_t L_5;
|
|
L_5 = Func_2_Invoke_m1F8EE2DF137BE5132901C0297848BC7A373A676B_inline(G_B2_0, L_4, NULL);
|
|
G_B3_0 = L_5;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Object UnityEngine.UIElements.CollectionViewController::GetItemForIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionViewController_GetItemForIndex_m5A1F4EAAE4BC17A73A3FB6EFA9B748E2B380C52B (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, int32_t ___0_index, 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*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
RuntimeObject* L_2 = __this->___m_ItemsSource_1;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_2);
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
V_1 = NULL;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
RuntimeObject* L_5 = __this->___m_ItemsSource_1;
|
|
int32_t L_6 = ___0_index;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_5, L_6);
|
|
V_1 = L_7;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
RuntimeObject* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::InvokeMakeItem(UnityEngine.UIElements.ReusableCollectionItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_InvokeMakeItem_mA0CBFBE4CC863E4A6B57AC7CA8E46706851DAB18 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(12 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CollectionViewController::MakeItem() */, __this);
|
|
NullCheck(L_0);
|
|
VirtualActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(5 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::Init(UnityEngine.UIElements.VisualElement) */, L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::InvokeBindItem(UnityEngine.UIElements.ReusableCollectionItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_InvokeBindItem_m42734E755BE3DBA31917EAB2518A732DFDD9AED8 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Contains_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m62FB3DBA3F73FEBF64FEAD95645C625ADFB2B178_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
NullCheck(L_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_0, NULL);
|
|
int32_t L_2 = ___1_index;
|
|
VirtualActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t >::Invoke(13 /* System.Void UnityEngine.UIElements.CollectionViewController::BindItem(UnityEngine.UIElements.VisualElement,System.Int32) */, __this, L_1, L_2);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_3 = ___0_reusableItem;
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_4 = __this->___m_View_0;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = BaseVerticalCollectionView_get_selectedIndices_m225B0611A10353F497E2144373F8335C6809314C_inline(L_4, NULL);
|
|
int32_t L_6 = ___1_index;
|
|
bool L_7;
|
|
L_7 = Enumerable_Contains_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m62FB3DBA3F73FEBF64FEAD95645C625ADFB2B178(L_5, L_6, Enumerable_Contains_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m62FB3DBA3F73FEBF64FEAD95645C625ADFB2B178_RuntimeMethod_var);
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker1< bool >::Invoke(8 /* System.Void UnityEngine.UIElements.ReusableCollectionItem::SetSelected(System.Boolean) */, L_3, L_7);
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_8 = ___0_reusableItem;
|
|
NullCheck(L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9;
|
|
L_9 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(4 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.ReusableCollectionItem::get_rootElement() */, L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = L_9;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_10, NULL);
|
|
NullCheck(L_10);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_10, ((int32_t)((int32_t)L_11&((int32_t)-3))), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::InvokeUnbindItem(UnityEngine.UIElements.ReusableCollectionItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_InvokeUnbindItem_mAD28790858D427C3FE6DDB3F43285B0A39835893 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
NullCheck(L_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_0, NULL);
|
|
int32_t L_2 = ___1_index;
|
|
VirtualActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t >::Invoke(14 /* System.Void UnityEngine.UIElements.CollectionViewController::UnbindItem(UnityEngine.UIElements.VisualElement,System.Int32) */, __this, L_1, L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::InvokeDestroyItem(UnityEngine.UIElements.ReusableCollectionItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_InvokeDestroyItem_mECAE4FDB98CE4D7292A65A90097D1547BA45A06D (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
NullCheck(L_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_0, NULL);
|
|
VirtualActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(15 /* System.Void UnityEngine.UIElements.CollectionViewController::DestroyItem(UnityEngine.UIElements.VisualElement) */, __this, L_1);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CollectionViewController::MakeItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* CollectionViewController_MakeItem_m2FE0B4239826C82CF5C8BFA22FA9D1BD79507093 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
NullCheck(L_0);
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline(L_0, NULL);
|
|
V_0 = (bool)((((RuntimeObject*)(Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_3 = __this->___m_View_0;
|
|
NullCheck(L_3);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline(L_3, NULL);
|
|
V_1 = (bool)((!(((RuntimeObject*)(Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_6 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9A333134A0DD04C4501260DDF33B2CBE68C45322)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionViewController_MakeItem_m2FE0B4239826C82CF5C8BFA22FA9D1BD79507093_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* L_7 = (Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70*)il2cpp_codegen_object_new(Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
Label__ctor_mEC3F9EF41CBD508BAA966A8C6C75EABBED3CB365(L_7, NULL);
|
|
V_2 = L_7;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_8 = __this->___m_View_0;
|
|
NullCheck(L_8);
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_9;
|
|
L_9 = BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline(L_8, NULL);
|
|
NullCheck(L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Func_1_Invoke_m073521535E43A005444DC0A7BA0082D630D54BCC_inline(L_9, NULL);
|
|
V_2 = L_10;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_2;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::BindItem(UnityEngine.UIElements.VisualElement,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_BindItem_mB6AF270AB4CF22A7A782270A27DEE72E3ADE81CC (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* V_1 = NULL;
|
|
RuntimeObject* V_2 = NULL;
|
|
bool V_3 = false;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* G_B5_0 = NULL;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* G_B4_0 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* G_B6_1 = NULL;
|
|
String_t* G_B8_0 = NULL;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* G_B8_1 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* G_B7_1 = NULL;
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
NullCheck(L_0);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline(L_0, NULL);
|
|
V_0 = (bool)((((RuntimeObject*)(Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_3 = __this->___m_View_0;
|
|
NullCheck(L_3);
|
|
Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2* L_4;
|
|
L_4 = BaseVerticalCollectionView_get_makeItem_m3735E53F2B5A842A859A0F33160F2071A4978644_inline(L_3, NULL);
|
|
V_3 = (bool)((!(((RuntimeObject*)(Func_1_tEA19435E526C20D577E34BADB14CA06F066636C2*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_3;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_6 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFDA6291E0E4690DCC3108860A93498AAA843209C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionViewController_BindItem_mB6AF270AB4CF22A7A782270A27DEE72E3ADE81CC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = ___0_element;
|
|
V_1 = ((Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70*)CastclassClass((RuntimeObject*)L_7, Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_8 = __this->___m_ItemsSource_1;
|
|
int32_t L_9 = ___1_index;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_10;
|
|
L_10 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_8, L_9);
|
|
V_2 = L_10;
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* L_11 = V_1;
|
|
RuntimeObject* L_12 = V_2;
|
|
G_B4_0 = L_11;
|
|
if (L_12)
|
|
{
|
|
G_B5_0 = L_11;
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = ((String_t*)(NULL));
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
RuntimeObject* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
|
|
G_B6_0 = L_14;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
String_t* L_15 = G_B6_0;
|
|
G_B7_0 = L_15;
|
|
G_B7_1 = G_B6_1;
|
|
if (L_15)
|
|
{
|
|
G_B8_0 = L_15;
|
|
G_B8_1 = G_B6_1;
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
G_B8_0 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
G_B8_1 = G_B7_1;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
NullCheck(G_B8_1);
|
|
VirtualActionInvoker1< String_t* >::Invoke(104 /* System.Void UnityEngine.UIElements.TextElement::set_text(System.String) */, G_B8_1, G_B8_0);
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_16 = __this->___m_View_0;
|
|
NullCheck(L_16);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_17;
|
|
L_17 = BaseVerticalCollectionView_get_bindItem_m2CB2B6790A66ED1F19FF03D573766700A1C55FCD_inline(L_16, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = ___0_element;
|
|
int32_t L_19 = ___1_index;
|
|
NullCheck(L_17);
|
|
Action_2_Invoke_mF5036A6D1FF31DA2E4CB571F6A0F904796417719_inline(L_17, L_18, L_19, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::UnbindItem(UnityEngine.UIElements.VisualElement,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_UnbindItem_m5CA941B114AF2661645D70B355B2E97725B1C619 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* G_B2_0 = NULL;
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* G_B1_0 = NULL;
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
NullCheck(L_0);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_unbindItem_mF1318DEBEC44E601C7847D16DF5EF084C5AEAAB6_inline(L_0, NULL);
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_element;
|
|
int32_t L_4 = ___1_index;
|
|
NullCheck(G_B2_0);
|
|
Action_2_Invoke_mF5036A6D1FF31DA2E4CB571F6A0F904796417719_inline(G_B2_0, L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::DestroyItem(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_DestroyItem_mB9BBF554C5D45D025086D6A35C6ECD54E7754F17 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* G_B2_0 = NULL;
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* G_B1_0 = NULL;
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
NullCheck(L_0);
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* L_1;
|
|
L_1 = BaseVerticalCollectionView_get_destroyItem_mE32383B57CC96FC04212E03B01B76671C360865B_inline(L_0, NULL);
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_element;
|
|
NullCheck(G_B2_0);
|
|
Action_1_Invoke_m888F6CE0B6C59F9F67C1098D197F59D1B7CA2211_inline(G_B2_0, L_3, NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::RaiseItemsSourceChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_RaiseItemsSourceChanged_mFA839DFF187864594DA98808C07A4358060CD734 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceChanged_2;
|
|
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:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::RaiseItemIndexChanged(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController_RaiseItemIndexChanged_mE12A41E7F1E29A78B60EDE6E02A9D3728D944E77 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, int32_t ___0_srcIndex, int32_t ___1_dstIndex, const RuntimeMethod* method)
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* G_B2_0 = NULL;
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* G_B1_0 = NULL;
|
|
{
|
|
Action_2_tD7438462601D3939500ED67463331FE00CFFBDB8* L_0 = __this->___itemIndexChanged_3;
|
|
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:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.CollectionViewController::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionViewController__ctor_m0C6B9FB403570C94F587D445DDF79E6D196B2F86 (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __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.ListViewController::add_itemsSourceSizeChanged(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_add_itemsSourceSizeChanged_mC6198C66E6D81D37BF5C21F8F15AF7AAFE6667B7 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceSizeChanged_4;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07** L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07**)(&__this->___itemsSourceSizeChanged_4);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::remove_itemsSourceSizeChanged(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_remove_itemsSourceSizeChanged_mDEE2F724DACC5E3451CEB079B794B3617DBF030B (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_2 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceSizeChanged_4;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)CastclassSealed((RuntimeObject*)L_4, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var));
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07** L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07**)(&__this->___itemsSourceSizeChanged_4);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = V_2;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = V_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = V_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_9) == ((RuntimeObject*)(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::add_itemsAdded(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_add_itemsAdded_m11BB1807EDE1CFFD2879D91BAC9ED800C8A3E383 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_1 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_2 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsAdded_5;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_2 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)Castclass((RuntimeObject*)L_4, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var));
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115** L_5 = (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115**)(&__this->___itemsAdded_5);
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_6 = V_2;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_7 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_9 = V_0;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_9) == ((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::remove_itemsAdded(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_remove_itemsAdded_mD95117F79124757F3D8E8E20318C68C13E8DB27F (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_1 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_2 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsAdded_5;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_2 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)Castclass((RuntimeObject*)L_4, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var));
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115** L_5 = (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115**)(&__this->___itemsAdded_5);
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_6 = V_2;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_7 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_9 = V_0;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_9) == ((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::add_itemsRemoved(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_add_itemsRemoved_mE65D0E561FD6220B96DBEAF1CA11ACC067BD89A5 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_1 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_2 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsRemoved_6;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_2 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)Castclass((RuntimeObject*)L_4, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var));
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115** L_5 = (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115**)(&__this->___itemsRemoved_6);
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_6 = V_2;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_7 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_9 = V_0;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_9) == ((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::remove_itemsRemoved(System.Action`1<System.Collections.Generic.IEnumerable`1<System.Int32>>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_remove_itemsRemoved_mAFAFA2D232C865259A74F4E33B8395E6DA29A6E3 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_1 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* V_2 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsRemoved_6;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_2 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)Castclass((RuntimeObject*)L_4, Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115_il2cpp_TypeInfo_var));
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115** L_5 = (Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115**)(&__this->___itemsRemoved_6);
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_6 = V_2;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_7 = V_1;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_9 = V_0;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_9) == ((RuntimeObject*)(Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ListView UnityEngine.UIElements.ListViewController::get_listView()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0;
|
|
L_0 = CollectionViewController_get_view_mA2B294EA0DC4E6E490482CBA616FE3DA7A3FF385_inline(__this, NULL);
|
|
return ((ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD*)IsInstClass((RuntimeObject*)L_0, ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD_il2cpp_TypeInfo_var));
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::InvokeMakeItem(UnityEngine.UIElements.ReusableCollectionItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_InvokeMakeItem_m4A8E7B2210725EF43E89C5357F74921EB1F05719 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StyleEnum_1_op_Implicit_m3CDF632B66BE956AED4D451BF8A5C2F7F1B7B48D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* V_0 = NULL;
|
|
bool V_1 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B3_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B2_0 = NULL;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B2_1 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B4_1 = NULL;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B4_2 = NULL;
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
V_0 = ((ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5*)IsInstClass((RuntimeObject*)L_0, ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5_il2cpp_TypeInfo_var));
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_1 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
{
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_3 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(12 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.CollectionViewController::MakeItem() */, __this);
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_5;
|
|
L_5 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = BaseVerticalCollectionView_get_reorderable_m5F5C463431BC2646D1FC256868F476091B8EACB6(L_5, NULL);
|
|
G_B2_0 = L_4;
|
|
G_B2_1 = L_3;
|
|
if (!L_6)
|
|
{
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = L_3;
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_7;
|
|
L_7 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = ListView_get_reorderMode_m89B680A1292DA7F3B6554E3C861C7DDA5CCF36EA_inline(L_7, NULL);
|
|
G_B4_0 = ((((int32_t)L_8) == ((int32_t)1))? 1 : 0);
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
G_B4_0 = 0;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
NullCheck(G_B4_2);
|
|
ReusableListViewItem_Init_mBEEFA1B50223C7715CDF31DEAEDDB8C9808B603A(G_B4_2, G_B4_1, (bool)G_B4_0, NULL);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_9, NULL);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_10, NULL);
|
|
StyleEnum_1_tDDEAB09F1AAFEA72821D32D702E5349040FF46D9 L_12;
|
|
L_12 = StyleEnum_1_op_Implicit_m3CDF632B66BE956AED4D451BF8A5C2F7F1B7B48D(0, StyleEnum_1_op_Implicit_m3CDF632B66BE956AED4D451BF8A5C2F7F1B7B48D_RuntimeMethod_var);
|
|
NullCheck(L_11);
|
|
InterfaceActionInvoker1< StyleEnum_1_tDDEAB09F1AAFEA72821D32D702E5349040FF46D9 >::Invoke(37 /* System.Void UnityEngine.UIElements.IStyle::set_position(UnityEngine.UIElements.StyleEnum`1<UnityEngine.UIElements.Position>) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_11, L_12);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_13, NULL);
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_14, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_16;
|
|
L_16 = StyleLength_op_Implicit_m895C788B08202125BDDAEE31F2F9D0EE6519D990(4, NULL);
|
|
NullCheck(L_15);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(18 /* System.Void UnityEngine.UIElements.IStyle::set_flexBasis(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_15, L_16);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_17, NULL);
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_19;
|
|
L_19 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_18, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_20;
|
|
L_20 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019((0.0f), NULL);
|
|
NullCheck(L_19);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(28 /* System.Void UnityEngine.UIElements.IStyle::set_marginTop(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_19, L_20);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22;
|
|
L_22 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_21, NULL);
|
|
NullCheck(L_22);
|
|
RuntimeObject* L_23;
|
|
L_23 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_22, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_24;
|
|
L_24 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019((0.0f), NULL);
|
|
NullCheck(L_23);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(25 /* System.Void UnityEngine.UIElements.IStyle::set_marginBottom(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_23, L_24);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26;
|
|
L_26 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_25, NULL);
|
|
NullCheck(L_26);
|
|
RuntimeObject* L_27;
|
|
L_27 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_26, NULL);
|
|
StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 L_28;
|
|
L_28 = StyleLength_op_Implicit_mA1ED6E9AD696C34231A35B83084B1298A700B019((0.0f), NULL);
|
|
NullCheck(L_27);
|
|
InterfaceActionInvoker1< StyleLength_tF02B24735FC88BE29BEB36F7A87709CA28AF72D8 >::Invoke(36 /* System.Void UnityEngine.UIElements.IStyle::set_paddingTop(UnityEngine.UIElements.StyleLength) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_27, L_28);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_29 = V_0;
|
|
NullCheck(L_29);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_30;
|
|
L_30 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_29, NULL);
|
|
NullCheck(L_30);
|
|
RuntimeObject* L_31;
|
|
L_31 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_30, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_32;
|
|
L_32 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((0.0f), NULL);
|
|
NullCheck(L_31);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(20 /* System.Void UnityEngine.UIElements.IStyle::set_flexGrow(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_31, L_32);
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_33 = V_0;
|
|
NullCheck(L_33);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34;
|
|
L_34 = ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline(L_33, NULL);
|
|
NullCheck(L_34);
|
|
RuntimeObject* L_35;
|
|
L_35 = VisualElement_get_style_mDCFF8D835BE0AFE412905E108F48B32A83734224(L_34, NULL);
|
|
StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 L_36;
|
|
L_36 = StyleFloat_op_Implicit_m534A028510332FD68BBBAF6C96028FAE936A2DDB((0.0f), NULL);
|
|
NullCheck(L_35);
|
|
InterfaceActionInvoker1< StyleFloat_t4A100BCCDC275C2302517C5858C9BE9EC43D4841 >::Invoke(21 /* System.Void UnityEngine.UIElements.IStyle::set_flexShrink(UnityEngine.UIElements.StyleFloat) */, IStyle_t4FD66C97CA5F46BFE328FED0C65277A37E0A89F7_il2cpp_TypeInfo_var, L_35, L_36);
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::InvokeBindItem(UnityEngine.UIElements.ReusableCollectionItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_InvokeBindItem_mA9968DDDB5C3A38CFC44B8AA40A21F19F2447CCB (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* ___0_reusableItem, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B4_0 = 0;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B6_0 = NULL;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B5_0 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* G_B7_1 = NULL;
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_0 = ___0_reusableItem;
|
|
V_0 = ((ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5*)IsInstClass((RuntimeObject*)L_0, ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5_il2cpp_TypeInfo_var));
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_1 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_3;
|
|
L_3 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = BaseVerticalCollectionView_get_reorderable_m5F5C463431BC2646D1FC256868F476091B8EACB6(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_5;
|
|
L_5 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = ListView_get_reorderMode_m89B680A1292DA7F3B6554E3C861C7DDA5CCF36EA_inline(L_5, NULL);
|
|
G_B4_0 = ((((int32_t)L_6) == ((int32_t)1))? 1 : 0);
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
V_2 = (bool)G_B4_0;
|
|
ReusableListViewItem_tAF9E92C2374E878D5269E1831B27BCF31B922AF5* L_7 = V_0;
|
|
bool L_8 = V_2;
|
|
G_B5_0 = L_7;
|
|
if (!L_8)
|
|
{
|
|
G_B6_0 = L_7;
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = ___1_index;
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker1< bool, int32_t >::Invoke(16 /* System.Boolean UnityEngine.UIElements.ListViewController::NeedsDragHandle(System.Int32) */, __this, L_9);
|
|
G_B7_0 = ((int32_t)(L_10));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
G_B7_0 = 0;
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
NullCheck(G_B7_1);
|
|
ReusableListViewItem_UpdateDragHandle_mAB69E554D8DC5E62D0BDEB431189551A9665936C(G_B7_1, (bool)G_B7_0, NULL);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* L_11 = ___0_reusableItem;
|
|
int32_t L_12 = ___1_index;
|
|
CollectionViewController_InvokeBindItem_m42734E755BE3DBA31917EAB2518A732DFDD9AED8(__this, L_11, L_12, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ListViewController::NeedsDragHandle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListViewController_NeedsDragHandle_mD515FB1704E611012611B95E8E33A8B640CD1994 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_0;
|
|
L_0 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker0< bool >::Invoke(101 /* System.Boolean UnityEngine.UIElements.BaseVerticalCollectionView::get_sourceIncludesArraySize() */, L_0);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
G_B3_0 = ((!(((uint32_t)L_2) <= ((uint32_t)0)))? 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.ListViewController::AddItems(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_AddItems_m963B31A92DBBDC6BE5907369ADF03BBCA162CAFD (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_itemCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_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;
|
|
Type_t* V_5 = NULL;
|
|
Type_t* V_6 = NULL;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
Type_t* V_9 = NULL;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
Type_t* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
bool V_14 = false;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t G_B14_0 = 0;
|
|
{
|
|
ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230(__this, NULL);
|
|
RuntimeObject* L_0;
|
|
L_0 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2;
|
|
L_2 = CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56(CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0151:
|
|
{// begin finally (depth: 1)
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72(L_3, CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_4);
|
|
V_2 = L_5;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0067_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7;
|
|
L_7 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
int32_t L_8 = ___0_itemCount;
|
|
RuntimeArray* L_9;
|
|
L_9 = ListViewController_AddToArray_m3631BF842C1449B40BCED0E3A23343D44F208899(((RuntimeArray*)CastclassClass((RuntimeObject*)L_7, RuntimeArray_il2cpp_TypeInfo_var)), L_8, NULL);
|
|
CollectionViewController_set_itemsSource_mE48BCD1FF9005623ECBE88064150515D7BE25918(__this, L_9, NULL);
|
|
V_3 = 0;
|
|
goto IL_0057_1;
|
|
}
|
|
|
|
IL_0047_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
int32_t L_12 = V_3;
|
|
NullCheck(L_10);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_10, ((int32_t)il2cpp_codegen_add(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_0057_1:
|
|
{
|
|
int32_t L_14 = V_3;
|
|
int32_t L_15 = ___0_itemCount;
|
|
V_4 = (bool)((((int32_t)L_14) < ((int32_t)L_15))? 1 : 0);
|
|
bool L_16 = V_4;
|
|
if (L_16)
|
|
{
|
|
goto IL_0047_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0146_1;
|
|
}
|
|
|
|
IL_0067_1:
|
|
{
|
|
RuntimeObject* L_17;
|
|
L_17 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_17);
|
|
Type_t* L_18;
|
|
L_18 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_17, NULL);
|
|
V_5 = L_18;
|
|
V_6 = (Type_t*)NULL;
|
|
Type_t* L_19 = V_5;
|
|
NullCheck(L_19);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_20;
|
|
L_20 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(112 /* System.Type[] System.Type::GetInterfaces() */, L_19);
|
|
V_7 = L_20;
|
|
V_8 = 0;
|
|
goto IL_00ab_1;
|
|
}
|
|
|
|
IL_0088_1:
|
|
{
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_21 = V_7;
|
|
int32_t L_22 = V_8;
|
|
NullCheck(L_21);
|
|
int32_t L_23 = L_22;
|
|
Type_t* L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_9 = L_24;
|
|
Type_t* L_25 = V_9;
|
|
bool L_26;
|
|
L_26 = ListViewController_U3CAddItemsU3Eg__IsGenericListU7C14_0_m187D5E136BA062E956012993DA1F7856AEB887C1(L_25, NULL);
|
|
V_10 = L_26;
|
|
bool L_27 = V_10;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00a4_1;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_28 = V_9;
|
|
V_6 = L_28;
|
|
goto IL_00b3_1;
|
|
}
|
|
|
|
IL_00a4_1:
|
|
{
|
|
int32_t L_29 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_00ab_1:
|
|
{
|
|
int32_t L_30 = V_8;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_31 = V_7;
|
|
NullCheck(L_31);
|
|
if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
|
|
{
|
|
goto IL_0088_1;
|
|
}
|
|
}
|
|
|
|
IL_00b3_1:
|
|
{
|
|
Type_t* L_32 = V_6;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_33 = V_6;
|
|
NullCheck(L_33);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_34;
|
|
L_34 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_33);
|
|
NullCheck(L_34);
|
|
int32_t L_35 = 0;
|
|
Type_t* L_36 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_36, NULL);
|
|
G_B14_0 = ((int32_t)(L_37));
|
|
goto IL_00c8_1;
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
G_B14_0 = 0;
|
|
}
|
|
|
|
IL_00c8_1:
|
|
{
|
|
V_11 = (bool)G_B14_0;
|
|
bool L_38 = V_11;
|
|
if (!L_38)
|
|
{
|
|
goto IL_0113_1;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_39 = V_6;
|
|
NullCheck(L_39);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_40;
|
|
L_40 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_39);
|
|
NullCheck(L_40);
|
|
int32_t L_41 = 0;
|
|
Type_t* L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
|
|
V_12 = L_42;
|
|
V_13 = 0;
|
|
goto IL_0105_1;
|
|
}
|
|
|
|
IL_00df_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_43 = V_1;
|
|
int32_t L_44 = V_0;
|
|
int32_t L_45 = V_13;
|
|
NullCheck(L_43);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_43, ((int32_t)il2cpp_codegen_add(L_44, L_45)), List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
RuntimeObject* L_46;
|
|
L_46 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
Type_t* L_47 = V_12;
|
|
RuntimeObject* L_48;
|
|
L_48 = Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF(L_47, NULL);
|
|
NullCheck(L_46);
|
|
int32_t L_49;
|
|
L_49 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_46, L_48);
|
|
int32_t L_50 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_50, 1));
|
|
}
|
|
|
|
IL_0105_1:
|
|
{
|
|
int32_t L_51 = V_13;
|
|
int32_t L_52 = ___0_itemCount;
|
|
V_14 = (bool)((((int32_t)L_51) < ((int32_t)L_52))? 1 : 0);
|
|
bool L_53 = V_14;
|
|
if (L_53)
|
|
{
|
|
goto IL_00df_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0145_1;
|
|
}
|
|
|
|
IL_0113_1:
|
|
{
|
|
V_15 = 0;
|
|
goto IL_0139_1;
|
|
}
|
|
|
|
IL_0119_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_54 = V_1;
|
|
int32_t L_55 = V_0;
|
|
int32_t L_56 = V_15;
|
|
NullCheck(L_54);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_54, ((int32_t)il2cpp_codegen_add(L_55, L_56)), List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
RuntimeObject* L_57;
|
|
L_57 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_57);
|
|
int32_t L_58;
|
|
L_58 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_57, NULL);
|
|
int32_t L_59 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_59, 1));
|
|
}
|
|
|
|
IL_0139_1:
|
|
{
|
|
int32_t L_60 = V_15;
|
|
int32_t L_61 = ___0_itemCount;
|
|
V_16 = (bool)((((int32_t)L_60) < ((int32_t)L_61))? 1 : 0);
|
|
bool L_62 = V_16;
|
|
if (L_62)
|
|
{
|
|
goto IL_0119_1;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0145_1:
|
|
{
|
|
}
|
|
|
|
IL_0146_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_63 = V_1;
|
|
ListViewController_RaiseItemsAdded_m6A58E1A88178D8A30C787C25399ED438C7174F45(__this, L_63, NULL);
|
|
goto IL_015b;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
ListViewController_RaiseOnSizeChanged_m827078B44DFA7FE22223E06A72A14E249951C5EB(__this, NULL);
|
|
RuntimeObject* L_64;
|
|
L_64 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_64);
|
|
bool L_65;
|
|
L_65 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_64);
|
|
V_17 = L_65;
|
|
bool L_66 = V_17;
|
|
if (!L_66)
|
|
{
|
|
goto IL_017f;
|
|
}
|
|
}
|
|
{
|
|
ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* L_67;
|
|
L_67 = ListViewController_get_listView_m48B5D72F76DFBDD26F75ACDD54C7BEFF8053DC92(__this, NULL);
|
|
NullCheck(L_67);
|
|
BaseVerticalCollectionView_Rebuild_m2BE0ECE2DC7D003F2B87FFEA3252DFC473B8F9BE(L_67, NULL);
|
|
}
|
|
|
|
IL_017f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::Move(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_Move_mDA651948B09B5B218F1C31F1779D68DC1C8D2001 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_index, int32_t ___1_newIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_4;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
int32_t L_3 = ___1_newIndex;
|
|
V_5 = (bool)((((int32_t)L_2) == ((int32_t)L_3))? 1 : 0);
|
|
bool L_4 = V_5;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_5 = ___0_index;
|
|
int32_t L_6 = ___1_newIndex;
|
|
int32_t L_7;
|
|
L_7 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_5, L_6, NULL);
|
|
V_0 = L_7;
|
|
int32_t L_8 = ___0_index;
|
|
int32_t L_9 = ___1_newIndex;
|
|
int32_t L_10;
|
|
L_10 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_8, L_9, NULL);
|
|
V_1 = L_10;
|
|
int32_t L_11 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)0)))
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = V_1;
|
|
RuntimeObject* L_13;
|
|
L_13 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_13);
|
|
G_B7_0 = ((((int32_t)((((int32_t)L_12) < ((int32_t)L_14))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
V_6 = (bool)G_B7_0;
|
|
bool L_15 = V_6;
|
|
if (!L_15)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
int32_t L_16 = ___1_newIndex;
|
|
V_2 = L_16;
|
|
int32_t L_17 = ___1_newIndex;
|
|
int32_t L_18 = ___0_index;
|
|
if ((((int32_t)L_17) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
G_B12_0 = (-1);
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
G_B12_0 = 1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
V_3 = G_B12_0;
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
int32_t L_19 = ___0_index;
|
|
int32_t L_20 = ___1_newIndex;
|
|
ListViewController_Swap_m3CEF91621A0779E58EB420A90C850A015A1525E5(__this, L_19, L_20, NULL);
|
|
int32_t L_21 = ___1_newIndex;
|
|
int32_t L_22 = V_3;
|
|
___1_newIndex = ((int32_t)il2cpp_codegen_add(L_21, L_22));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_23 = ___0_index;
|
|
int32_t L_24 = ___1_newIndex;
|
|
int32_t L_25;
|
|
L_25 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_23, L_24, NULL);
|
|
int32_t L_26 = ___0_index;
|
|
int32_t L_27 = ___1_newIndex;
|
|
int32_t L_28;
|
|
L_28 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(L_26, L_27, NULL);
|
|
V_7 = (bool)((((int32_t)L_25) < ((int32_t)L_28))? 1 : 0);
|
|
bool L_29 = V_7;
|
|
if (L_29)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = ___0_index;
|
|
int32_t L_31 = V_2;
|
|
CollectionViewController_RaiseItemIndexChanged_mE12A41E7F1E29A78B60EDE6E02A9D3728D944E77(__this, L_30, L_31, NULL);
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RemoveItem(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RemoveItem_m1E58632049040E16A462D62B965B76E4B3DB2CDE (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_0 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0;
|
|
L_0 = CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56(CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001b:
|
|
{// begin finally (depth: 1)
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72(L_1, CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2 = V_0;
|
|
int32_t L_3 = ___0_index;
|
|
NullCheck(L_2);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_2, L_3, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = V_0;
|
|
VirtualActionInvoker1< List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* >::Invoke(20 /* System.Void UnityEngine.UIElements.ListViewController::RemoveItems(System.Collections.Generic.List`1<System.Int32>) */, __this, L_4);
|
|
goto IL_0025;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RemoveItems(System.Collections.Generic.List`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RemoveItems_mBCB1932FFC9E5D993C06230B12C8E58396ACCA5E (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___0_indices, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m6DA897B8E2A3434A84E3529FE9850B2773D88B65_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230(__this, NULL);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = ___0_indices;
|
|
NullCheck(L_0);
|
|
List_1_Sort_m6DA897B8E2A3434A84E3529FE9850B2773D88B65(L_0, List_1_Sort_m6DA897B8E2A3434A84E3529FE9850B2773D88B65_RuntimeMethod_var);
|
|
RuntimeObject* L_1;
|
|
L_1 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_1);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_5 = ___0_indices;
|
|
RuntimeArray* L_6;
|
|
L_6 = ListViewController_RemoveFromArray_mD1DD74E39EC554A772DA23FAAB80DAA69FA60EE9(((RuntimeArray*)CastclassClass((RuntimeObject*)L_4, RuntimeArray_il2cpp_TypeInfo_var)), L_5, NULL);
|
|
CollectionViewController_set_itemsSource_mE48BCD1FF9005623ECBE88064150515D7BE25918(__this, L_6, NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_7 = ___0_indices;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_7, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_8, 1));
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
RuntimeObject* L_9;
|
|
L_9 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_10 = ___0_indices;
|
|
int32_t L_11 = V_1;
|
|
NullCheck(L_10);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_10, L_11, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(10 /* System.Void System.Collections.IList::RemoveAt(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_9, L_12);
|
|
int32_t L_13 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_14 = V_1;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_14) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_15 = V_2;
|
|
if (L_15)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_16 = ___0_indices;
|
|
ListViewController_RaiseItemsRemoved_m57DF8DDE6FE734680E2F63ED3B481F9A8EAE102A(__this, L_16, NULL);
|
|
ListViewController_RaiseOnSizeChanged_m827078B44DFA7FE22223E06A72A14E249951C5EB(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RemoveItems(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RemoveItems_mDB1B0E36CAF4B31E3FA344F901BD8FDD782F18D0 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_itemCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_1 = NULL;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
{
|
|
int32_t L_0 = ___0_itemCount;
|
|
V_2 = (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_2;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.UIElements.CollectionViewController::GetItemsCount() */, __this);
|
|
V_0 = L_2;
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3;
|
|
L_3 = CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56(CollectionPool_2_Get_mA84A3566CE7800F2068402B02AC03CB7587FEF56_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004c:
|
|
{// begin finally (depth: 1)
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_t5B361942F59C43867F72F5B0D244C2D537EC0694_il2cpp_TypeInfo_var);
|
|
CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72(L_4, CollectionPool_2_Release_m781AB9F21307FD9C59C1D6CFBAD5EACB2A9BAE72_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___0_itemCount;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_5, L_6));
|
|
int32_t L_7 = V_3;
|
|
V_4 = L_7;
|
|
goto IL_0036_1;
|
|
}
|
|
|
|
IL_0025_1:
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_8 = V_1;
|
|
int32_t L_9 = V_4;
|
|
NullCheck(L_8);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_8, L_9, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
int32_t L_10 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
int32_t L_11 = V_4;
|
|
int32_t L_12 = V_0;
|
|
V_5 = (bool)((((int32_t)L_11) < ((int32_t)L_12))? 1 : 0);
|
|
bool L_13 = V_5;
|
|
if (L_13)
|
|
{
|
|
goto IL_0025_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_14 = V_1;
|
|
VirtualActionInvoker1< List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* >::Invoke(20 /* System.Void UnityEngine.UIElements.ListViewController::RemoveItems(System.Collections.Generic.List`1<System.Int32>) */, __this, L_14);
|
|
goto IL_0056;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseOnSizeChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseOnSizeChanged_m827078B44DFA7FE22223E06A72A14E249951C5EB (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___itemsSourceSizeChanged_4;
|
|
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:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseItemsAdded(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseItemsAdded_m6A58E1A88178D8A30C787C25399ED438C7174F45 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method)
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B2_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B1_0 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsAdded_5;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_indices;
|
|
NullCheck(G_B2_0);
|
|
Action_1_Invoke_m3599C55D4DA870CC0F313E761327FADAF574D881_inline(G_B2_0, L_2, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::RaiseItemsRemoved(System.Collections.Generic.IEnumerable`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_RaiseItemsRemoved_m57DF8DDE6FE734680E2F63ED3B481F9A8EAE102A (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, RuntimeObject* ___0_indices, const RuntimeMethod* method)
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B2_0 = NULL;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* G_B1_0 = NULL;
|
|
{
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_0 = __this->___itemsRemoved_6;
|
|
Action_1_t68F947CFF3E836EB3A2C880E204C2D89F5AEB115* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_indices;
|
|
NullCheck(G_B2_0);
|
|
Action_1_Invoke_m3599C55D4DA870CC0F313E761327FADAF574D881_inline(G_B2_0, L_2, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Array UnityEngine.UIElements.ListViewController::AddToArray(System.Array,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* ListViewController_AddToArray_m3631BF842C1449B40BCED0E3A23343D44F208899 (RuntimeArray* ___0_source, int32_t ___1_itemCount, const RuntimeMethod* method)
|
|
{
|
|
Type_t* V_0 = NULL;
|
|
RuntimeArray* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeArray* V_3 = NULL;
|
|
{
|
|
RuntimeArray* L_0 = ___0_source;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1FB906945123593B19B612B455B918878DCC1588)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListViewController_AddToArray_m3631BF842C1449B40BCED0E3A23343D44F208899_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeArray* L_7 = ___0_source;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_7, NULL);
|
|
int32_t L_9 = ___1_itemCount;
|
|
RuntimeArray* L_10;
|
|
L_10 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_6, ((int32_t)il2cpp_codegen_add(L_8, L_9)), NULL);
|
|
V_1 = L_10;
|
|
RuntimeArray* L_11 = ___0_source;
|
|
RuntimeArray* L_12 = V_1;
|
|
RuntimeArray* L_13 = ___0_source;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_13, NULL);
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900(L_11, L_12, L_14, NULL);
|
|
RuntimeArray* L_15 = V_1;
|
|
V_3 = L_15;
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
RuntimeArray* L_16 = V_3;
|
|
return L_16;
|
|
}
|
|
}
|
|
// System.Array UnityEngine.UIElements.ListViewController::RemoveFromArray(System.Array,System.Collections.Generic.List`1<System.Int32>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* ListViewController_RemoveFromArray_mD1DD74E39EC554A772DA23FAAB80DAA69FA60EE9 (RuntimeArray* ___0_source, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___1_indicesToRemove, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Type_t* V_2 = NULL;
|
|
RuntimeArray* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
RuntimeArray* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
RuntimeArray* L_0 = ___0_source;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = ___1_indicesToRemove;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_3, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_2, L_4));
|
|
int32_t L_5 = V_1;
|
|
V_6 = (bool)((((int32_t)L_5) < ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_6;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_7);
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D0EB3CBA89AE2908A58BA8E0FAF3D64EE450369)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListViewController_RemoveFromArray_mD1DD74E39EC554A772DA23FAAB80DAA69FA60EE9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
RuntimeArray* L_8 = ___0_source;
|
|
NullCheck(L_8);
|
|
Type_t* L_9;
|
|
L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL);
|
|
NullCheck(L_9);
|
|
Type_t* L_10;
|
|
L_10 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_9);
|
|
V_2 = L_10;
|
|
int32_t L_11 = V_1;
|
|
V_7 = (bool)((((int32_t)L_11) == ((int32_t)0))? 1 : 0);
|
|
bool L_12 = V_7;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_13 = V_2;
|
|
RuntimeArray* L_14;
|
|
L_14 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_13, 0, NULL);
|
|
V_8 = L_14;
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
Type_t* L_15 = V_2;
|
|
int32_t L_16 = V_1;
|
|
RuntimeArray* L_17;
|
|
L_17 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_15, L_16, NULL);
|
|
V_3 = L_17;
|
|
V_4 = 0;
|
|
V_5 = 0;
|
|
V_9 = 0;
|
|
goto IL_00a1;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_18 = V_5;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = ___1_indicesToRemove;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_19, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if ((((int32_t)L_18) >= ((int32_t)L_20)))
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_21 = ___1_indicesToRemove;
|
|
int32_t L_22 = V_5;
|
|
NullCheck(L_21);
|
|
int32_t L_23;
|
|
L_23 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_21, L_22, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
int32_t L_24 = V_9;
|
|
G_B8_0 = ((((int32_t)L_23) == ((int32_t)L_24))? 1 : 0);
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
V_10 = (bool)G_B8_0;
|
|
bool L_25 = V_10;
|
|
if (!L_25)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_26 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_26, 1));
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
RuntimeArray* L_27 = V_3;
|
|
RuntimeArray* L_28 = ___0_source;
|
|
int32_t L_29 = V_9;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_30;
|
|
L_30 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_28, L_29, NULL);
|
|
int32_t L_31 = V_4;
|
|
NullCheck(L_27);
|
|
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_27, L_30, L_31, NULL);
|
|
int32_t L_32 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
int32_t L_33 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
int32_t L_34 = V_9;
|
|
RuntimeArray* L_35 = ___0_source;
|
|
NullCheck(L_35);
|
|
int32_t L_36;
|
|
L_36 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_35, NULL);
|
|
V_11 = (bool)((((int32_t)L_34) < ((int32_t)L_36))? 1 : 0);
|
|
bool L_37 = V_11;
|
|
if (L_37)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeArray* L_38 = V_3;
|
|
V_8 = L_38;
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
RuntimeArray* L_39 = V_8;
|
|
return L_39;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::Swap(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_Swap_m3CEF91621A0779E58EB420A90C850A015A1525E5 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, int32_t ___0_lhs, int32_t ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
int32_t L_1 = ___0_lhs;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3;
|
|
L_3 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
int32_t L_4 = ___0_lhs;
|
|
RuntimeObject* L_5;
|
|
L_5 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
int32_t L_6 = ___1_rhs;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_5, L_6);
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1 /* System.Void System.Collections.IList::set_Item(System.Int32,System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_3, L_4, L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
int32_t L_9 = ___1_rhs;
|
|
RuntimeObject* L_10 = V_0;
|
|
NullCheck(L_8);
|
|
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1 /* System.Void System.Collections.IList::set_Item(System.Int32,System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_8, L_9, L_10);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::EnsureItemSourceCanBeResized()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.Collections.IList::get_IsFixedSize() */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = CollectionViewController_get_itemsSource_mB9786FA5D529ADE5AC0D83F1DC9A2C8B90CD57FF_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_3, NULL);
|
|
G_B3_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_6);
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44385FDC0E1CFDC42C0F0E68C2FBEE25FDB4FFC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListViewController_EnsureItemSourceCanBeResized_m3A7C9959E4573C5282B57B5AA357B6514120F230_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ListViewController::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListViewController__ctor_m8C91175AF54442AE5F3C10BAC9761960DFF17108 (ListViewController_tBA5CCE50487A9C56F6ADB910A2C3DAFD38904F1E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
CollectionViewController__ctor_m0C6B9FB403570C94F587D445DDF79E6D196B2F86(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ListViewController::<AddItems>g__IsGenericList|14_0(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListViewController_U3CAddItemsU3Eg__IsGenericListU7C14_0_m187D5E136BA062E956012993DA1F7856AEB887C1 (Type_t* ___0_t, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Type_t* L_0 = ___0_t;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_0);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_2 = ___0_t;
|
|
NullCheck(L_2);
|
|
Type_t* L_3;
|
|
L_3 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (IList_1_t8C7C301DAF6E4E4DFA7504EF93E6E2C93AB33AE7_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
G_B3_0 = ((((RuntimeObject*)(Type_t*)L_3) == ((RuntimeObject*)(Type_t*)L_5))? 1 : 0);
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (bool)G_B3_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean UnityEngine.UIElements.UIR.TextureBlitter::get_disposed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CdisposedU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::set_disposed(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_set_disposed_m3FA52D5FE5C9EEAC9DAA3E89BD506901DB9352EE (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CdisposedU3Ek__BackingField_8 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_Dispose_m29FEFB901C826EABA7FDC30FD4A03EC1E2C0D72C (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VirtualActionInvoker1< bool >::Invoke(5 /* System.Void UnityEngine.UIElements.UIR.TextureBlitter::Dispose(System.Boolean) */, __this, (bool)1);
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_Dispose_mC8338BCA927FD3558E2BD7631A38D4E038F9F82B (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, bool ___0_disposing, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_2 = ___0_disposing;
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_4 = __this->___m_BlitMaterial_3;
|
|
il2cpp_codegen_runtime_class_init_inline(UIRUtility_tBBCA94052EAE57F0A59876553C582FFCF52E706C_il2cpp_TypeInfo_var);
|
|
UIRUtility_Destroy_m9E925E79E7B4A4853B47C1EFACEF2ED0A7844A23(L_4, NULL);
|
|
__this->___m_BlitMaterial_3 = (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_BlitMaterial_3), (void*)(Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*)NULL);
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
TextureBlitter_set_disposed_m3FA52D5FE5C9EEAC9DAA3E89BD506901DB9352EE_inline(__this, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter__cctor_m4F45649B2B5397E6A6527AEC81A2BFA8C5563021 (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*)&TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F3A8CC0D1341CC2058A61F50C7E55491AC61AF4);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_0), _stringLiteral6F3A8CC0D1341CC2058A61F50C7E55491AC61AF4, /*hidden argument*/NULL);
|
|
((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___s_CommitSampler_1 = L_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___k_TextureIds_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___k_TextureIds_0), (void*)L_1);
|
|
V_0 = 0;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = ((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___k_TextureIds_0;
|
|
int32_t L_3 = V_0;
|
|
String_t* L_4;
|
|
L_4 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral4B8146FB95E4F51B29DA41EB5F6D60F8FD0ECF21, L_4, NULL);
|
|
int32_t L_6;
|
|
L_6 = Shader_PropertyToID_mE98523D50F5656CAE89B30695C458253EB8956CA(L_5, NULL);
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_6);
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
V_1 = (bool)((((int32_t)L_8) < ((int32_t)8))? 1 : 0);
|
|
bool L_9 = V_1;
|
|
if (L_9)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter__ctor_mD79919BDF48AF5D515F1C764FCD22BAC796BD035 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mAB2B123AE51CDC79605EF4A41537BADA1774F2CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t0BE12F16A937298114B20824E93D706BCA5214D5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* L_0 = (BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA*)(BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA*)SZArrayNew(BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
__this->___m_SingleBlit_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SingleBlit_2), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_1 = ___0_capacity;
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_2 = (List_1_t0BE12F16A937298114B20824E93D706BCA5214D5*)il2cpp_codegen_object_new(List_1_t0BE12F16A937298114B20824E93D706BCA5214D5_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_mAB2B123AE51CDC79605EF4A41537BADA1774F2CA(L_2, L_1, List_1__ctor_mAB2B123AE51CDC79605EF4A41537BADA1774F2CA_RuntimeMethod_var);
|
|
__this->___m_PendingBlits_7 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PendingBlits_7), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::QueueBlit(UnityEngine.Texture,UnityEngine.RectInt,UnityEngine.Vector2Int,System.Boolean,UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_QueueBlit_mFF3675087045B052103F691186186D3F42F46A01 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___0_src, RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___1_srcRect, Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___2_dstPos, bool ___3_addBorder, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___4_tint, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC287B445E45444960741C56A73B1C60B39B20449_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B4_0 = NULL;
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* G_B4_1 = NULL;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B3_0 = NULL;
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* G_B3_1 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B5_1 = NULL;
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* G_B5_2 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
DisposeHelper_NotifyDisposedUsed_m7A9C988A4B96B0920E470EEA604BA42C5ABB437F(__this, NULL);
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_2 = __this->___m_PendingBlits_7;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357));
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_3 = ___0_src;
|
|
(&V_1)->___src_0 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_1)->___src_0), (void*)L_3);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 L_4 = ___1_srcRect;
|
|
(&V_1)->___srcRect_1 = L_4;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_5 = ___2_dstPos;
|
|
(&V_1)->___dstPos_2 = L_5;
|
|
bool L_6 = ___3_addBorder;
|
|
G_B3_0 = (&V_1);
|
|
G_B3_1 = L_2;
|
|
if (L_6)
|
|
{
|
|
G_B4_0 = (&V_1);
|
|
G_B4_1 = L_2;
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = 0;
|
|
G_B5_1 = G_B3_0;
|
|
G_B5_2 = G_B3_1;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
G_B5_0 = 1;
|
|
G_B5_1 = G_B4_0;
|
|
G_B5_2 = G_B4_1;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
G_B5_1->___border_3 = G_B5_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___4_tint;
|
|
(&V_1)->___tint_4 = L_7;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_8 = V_1;
|
|
NullCheck(G_B5_2);
|
|
List_1_Add_mC287B445E45444960741C56A73B1C60B39B20449_inline(G_B5_2, L_8, List_1_Add_mC287B445E45444960741C56A73B1C60B39B20449_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::BlitOneNow(UnityEngine.RenderTexture,UnityEngine.Texture,UnityEngine.RectInt,UnityEngine.Vector2Int,System.Boolean,UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_BlitOneNow_m36B06C9C2FA624B74430BC2A89D054B3945A2185 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_dst, Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* ___1_src, RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 ___2_srcRect, Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___3_dstPos, bool ___4_addBorder, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___5_tint, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B4_0 = NULL;
|
|
int32_t G_B4_1 = 0;
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* G_B4_2 = NULL;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B3_0 = NULL;
|
|
int32_t G_B3_1 = 0;
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* G_B3_2 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357* G_B5_1 = NULL;
|
|
int32_t G_B5_2 = 0;
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* G_B5_3 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
DisposeHelper_NotifyDisposedUsed_m7A9C988A4B96B0920E470EEA604BA42C5ABB437F(__this, NULL);
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* L_2 = __this->___m_SingleBlit_2;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357));
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_3 = ___1_src;
|
|
(&V_1)->___src_0 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_1)->___src_0), (void*)L_3);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 L_4 = ___2_srcRect;
|
|
(&V_1)->___srcRect_1 = L_4;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_5 = ___3_dstPos;
|
|
(&V_1)->___dstPos_2 = L_5;
|
|
bool L_6 = ___4_addBorder;
|
|
G_B3_0 = (&V_1);
|
|
G_B3_1 = 0;
|
|
G_B3_2 = L_2;
|
|
if (L_6)
|
|
{
|
|
G_B4_0 = (&V_1);
|
|
G_B4_1 = 0;
|
|
G_B4_2 = L_2;
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = 0;
|
|
G_B5_1 = G_B3_0;
|
|
G_B5_2 = G_B3_1;
|
|
G_B5_3 = G_B3_2;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
G_B5_0 = 1;
|
|
G_B5_1 = G_B4_0;
|
|
G_B5_2 = G_B4_1;
|
|
G_B5_3 = G_B4_2;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
G_B5_1->___border_3 = G_B5_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___5_tint;
|
|
(&V_1)->___tint_4 = L_7;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_8 = V_1;
|
|
NullCheck(G_B5_3);
|
|
(G_B5_3)->SetAt(static_cast<il2cpp_array_size_t>(G_B5_2), (BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357)L_8);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_9 = ___0_dst;
|
|
TextureBlitter_BeginBlit_mC1A1F6F82313120D441016B34D143CF97E997A56(__this, L_9, NULL);
|
|
BlitInfoU5BU5D_t090EAE36AF18528B2F72B1D3BBA4831E32F287BA* L_10 = __this->___m_SingleBlit_2;
|
|
TextureBlitter_DoBlit_m375A25BFCB3180100BF799325A2AD49C85DEAF0B(__this, (RuntimeObject*)L_10, 0, NULL);
|
|
TextureBlitter_EndBlit_m247EB2A9604A08925D457D13844BF0702F8DD4E5(__this, NULL);
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::Commit(UnityEngine.RenderTexture)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_Commit_mAB0D92623C9AEA7B1439EB1613D9A1DA62A2465F (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_dst, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m3E84B69EE9B9769288CFB4645CFF7F401F82C989_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
DisposeHelper_NotifyDisposedUsed_m7A9C988A4B96B0920E470EEA604BA42C5ABB437F(__this, NULL);
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_2 = __this->___m_PendingBlits_7;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_inline(L_2, List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_RuntimeMethod_var);
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_Begin_mD07DB736ADA7D8BAF9D969CC7F3C55848A218C6E_inline((&((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___s_CommitSampler_1), NULL);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_5 = ___0_dst;
|
|
TextureBlitter_BeginBlit_mC1A1F6F82313120D441016B34D143CF97E997A56(__this, L_5, NULL);
|
|
V_2 = 0;
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_6 = __this->___m_PendingBlits_7;
|
|
int32_t L_7 = V_2;
|
|
TextureBlitter_DoBlit_m375A25BFCB3180100BF799325A2AD49C85DEAF0B(__this, L_6, L_7, NULL);
|
|
int32_t L_8 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_8, 8));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
int32_t L_9 = V_2;
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_10 = __this->___m_PendingBlits_7;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_inline(L_10, List_1_get_Count_m63A03183A7352FFDDDF3D7DF3777A91B3326281C_RuntimeMethod_var);
|
|
V_3 = (bool)((((int32_t)L_9) < ((int32_t)L_11))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (L_12)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
TextureBlitter_EndBlit_m247EB2A9604A08925D457D13844BF0702F8DD4E5(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_End_m025AE3EF0F96F6DADC53489A53FC6EE65073DE60_inline((&((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___s_CommitSampler_1), NULL);
|
|
List_1_t0BE12F16A937298114B20824E93D706BCA5214D5* L_13 = __this->___m_PendingBlits_7;
|
|
NullCheck(L_13);
|
|
List_1_Clear_m3E84B69EE9B9769288CFB4645CFF7F401F82C989_inline(L_13, List_1_Clear_m3E84B69EE9B9769288CFB4645CFF7F401F82C989_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::BeginBlit(UnityEngine.RenderTexture)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_BeginBlit_mC1A1F6F82313120D441016B34D143CF97E997A56 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* ___0_dst, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_0 = __this->___m_BlitMaterial_3;
|
|
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_003e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_il2cpp_TypeInfo_var);
|
|
String_t* L_3 = ((Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_StaticFields*)il2cpp_codegen_static_fields_for(Shaders_t84A2F64B101E87AC42866AA74DC014837843389D_il2cpp_TypeInfo_var))->___k_AtlasBlit_0;
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* L_4;
|
|
L_4 = Shader_Find_m183AA54F78320212DDEC811592F98456898A41C5(L_3, NULL);
|
|
V_1 = L_4;
|
|
Shader_tADC867D36B7876EE22427FAA2CE485105F4EE692* L_5 = V_1;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_6 = (Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3*)il2cpp_codegen_object_new(Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
Material__ctor_m7FDF47105D66D19591BE505A0C42B0F90D88C9BF(L_6, L_5, NULL);
|
|
__this->___m_BlitMaterial_3 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_BlitMaterial_3), (void*)L_6);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_7 = __this->___m_BlitMaterial_3;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = Object_get_hideFlags_mA08F5E41671B8C6B5073C6B9E2799BCE6E0DF7F3(L_8, NULL);
|
|
NullCheck(L_8);
|
|
Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4(L_8, ((int32_t)((int32_t)L_9|4)), NULL);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_10 = __this->___m_Properties_4;
|
|
V_2 = (bool)((((RuntimeObject*)(MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D*)L_10) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_12 = (MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D*)il2cpp_codegen_object_new(MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
MaterialPropertyBlock__ctor_m14C3432585F7BB65028BCD64A0FD6607A1B490FB(L_12, NULL);
|
|
__this->___m_Properties_4 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Properties_4), (void*)L_12);
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 L_13;
|
|
L_13 = Utility_GetActiveViewport_mDB9165183361EBE3D7D6D673EA147472C7FC9F14(NULL);
|
|
__this->___m_Viewport_5 = L_13;
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_14;
|
|
L_14 = RenderTexture_get_active_mA4434B3E79DEF2C01CAE0A53061598B16443C9E7(NULL);
|
|
__this->___m_PrevRT_6 = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PrevRT_6), (void*)L_14);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_15 = ___0_dst;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_15);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_17 = ___0_dst;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_17);
|
|
GL_LoadPixelMatrix_mF1C5A4508C5F110512C116A5DDE7AB0483FE961A((0.0f), ((float)L_16), (0.0f), ((float)L_18), NULL);
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_19 = ___0_dst;
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
Graphics_SetRenderTarget_m995C0F14B97C5BF46CCF2E7EF410C1CC05C46409(L_19, NULL);
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* L_20 = __this->___m_BlitMaterial_3;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = Material_SetPass_mBB03542DFF4FAEADFCED332009F9D61B6DED75FE(L_20, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::DoBlit(System.Collections.Generic.IList`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_DoBlit_m375A25BFCB3180100BF799325A2AD49C85DEAF0B (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, RuntimeObject* ___0_blitInfos, int32_t ___1_startIndex, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tAE76549282407BAEF1D73046665FE2FA3E0FFC16_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t4A9A4A4522238CC06724A58FE97BCC6029EA9F08_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
float V_10 = 0.0f;
|
|
float V_11 = 0.0f;
|
|
float V_12 = 0.0f;
|
|
float V_13 = 0.0f;
|
|
float V_14 = 0.0f;
|
|
float V_15 = 0.0f;
|
|
float V_16 = 0.0f;
|
|
float V_17 = 0.0f;
|
|
float V_18 = 0.0f;
|
|
float V_19 = 0.0f;
|
|
bool V_20 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_blitInfos;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::get_Count() */, ICollection_1_tAE76549282407BAEF1D73046665FE2FA3E0FFC16_il2cpp_TypeInfo_var, L_0);
|
|
int32_t L_2 = ___1_startIndex;
|
|
int32_t L_3;
|
|
L_3 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 8, NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = ___1_startIndex;
|
|
int32_t L_5 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_4, L_5));
|
|
int32_t L_6 = ___1_startIndex;
|
|
V_2 = L_6;
|
|
V_3 = 0;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_7 = ___0_blitInfos;
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_9;
|
|
L_9 = InterfaceFuncInvoker1< BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::get_Item(System.Int32) */, IList_1_t4A9A4A4522238CC06724A58FE97BCC6029EA9F08_il2cpp_TypeInfo_var, L_7, L_8);
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_10 = L_9.___src_0;
|
|
V_4 = L_10;
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_11 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_5 = L_12;
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_14 = __this->___m_Properties_4;
|
|
il2cpp_codegen_runtime_class_init_inline(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = ((TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_StaticFields*)il2cpp_codegen_static_fields_for(TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7_il2cpp_TypeInfo_var))->___k_TextureIds_0;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
int32_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_19 = V_4;
|
|
NullCheck(L_14);
|
|
MaterialPropertyBlock_SetTexture_m39F531D3F35D6C5B661A7B4F07DD7B8ACC22627F(L_14, L_18, L_19, NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_20 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
int32_t L_21 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
int32_t L_22 = V_2;
|
|
int32_t L_23 = V_1;
|
|
V_6 = (bool)((((int32_t)L_22) < ((int32_t)L_23))? 1 : 0);
|
|
bool L_24 = V_6;
|
|
if (L_24)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
MaterialPropertyBlock_t2308669579033A857EFE6E4831909F638B27411D* L_25 = __this->___m_Properties_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Utility_t8BCC393462C6270211734BE47CF5350F05EC97AD_il2cpp_TypeInfo_var);
|
|
Utility_SetPropertyBlock_m04316F1E2FCAF1F9DDBEBDFE542EEBC3120C4EA4(L_25, NULL);
|
|
GL_Begin_m17A70A7A3C161D8A127C11BDC5FC393392AB70C7(7, NULL);
|
|
int32_t L_26 = ___1_startIndex;
|
|
V_7 = L_26;
|
|
V_8 = 0;
|
|
goto IL_0241;
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
RuntimeObject* L_27 = ___0_blitInfos;
|
|
int32_t L_28 = V_7;
|
|
NullCheck(L_27);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_29;
|
|
L_29 = InterfaceFuncInvoker1< BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<UnityEngine.UIElements.UIR.TextureBlitter/BlitInfo>::get_Item(System.Int32) */, IList_1_t4A9A4A4522238CC06724A58FE97BCC6029EA9F08_il2cpp_TypeInfo_var, L_27, L_28);
|
|
V_9 = L_29;
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_30 = V_9;
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_31 = L_30.___src_0;
|
|
NullCheck(L_31);
|
|
int32_t L_32;
|
|
L_32 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_31);
|
|
V_10 = ((float)((1.0f)/((float)L_32)));
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_33 = V_9;
|
|
Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700* L_34 = L_33.___src_0;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = VirtualFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_34);
|
|
V_11 = ((float)((1.0f)/((float)L_35)));
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* L_36 = (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A*)(&(&V_9)->___dstPos_2);
|
|
int32_t L_37;
|
|
L_37 = Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline(L_36, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_38 = V_9;
|
|
int32_t L_39 = L_38.___border_3;
|
|
V_12 = ((float)((int32_t)il2cpp_codegen_subtract(L_37, L_39)));
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* L_40 = (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A*)(&(&V_9)->___dstPos_2);
|
|
int32_t L_41;
|
|
L_41 = Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline(L_40, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_42 = V_9;
|
|
int32_t L_43 = L_42.___border_3;
|
|
V_13 = ((float)((int32_t)il2cpp_codegen_subtract(L_41, L_43)));
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* L_44 = (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A*)(&(&V_9)->___dstPos_2);
|
|
int32_t L_45;
|
|
L_45 = Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline(L_44, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_46 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_47;
|
|
L_47 = RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7(L_46, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_48 = V_9;
|
|
int32_t L_49 = L_48.___border_3;
|
|
V_14 = ((float)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_45, L_47)), L_49)));
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* L_50 = (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A*)(&(&V_9)->___dstPos_2);
|
|
int32_t L_51;
|
|
L_51 = Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline(L_50, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_52 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_53;
|
|
L_53 = RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C(L_52, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_54 = V_9;
|
|
int32_t L_55 = L_54.___border_3;
|
|
V_15 = ((float)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_51, L_53)), L_55)));
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_56 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_57;
|
|
L_57 = RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA(L_56, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_58 = V_9;
|
|
int32_t L_59 = L_58.___border_3;
|
|
float L_60 = V_10;
|
|
V_16 = ((float)il2cpp_codegen_multiply(((float)((int32_t)il2cpp_codegen_subtract(L_57, L_59))), L_60));
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_61 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_62;
|
|
L_62 = RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878(L_61, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_63 = V_9;
|
|
int32_t L_64 = L_63.___border_3;
|
|
float L_65 = V_11;
|
|
V_17 = ((float)il2cpp_codegen_multiply(((float)((int32_t)il2cpp_codegen_subtract(L_62, L_64))), L_65));
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_66 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_67;
|
|
L_67 = RectInt_get_xMax_mBA05CE52847E3D3CB8295055706B3E0D4350E9F0(L_66, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_68 = V_9;
|
|
int32_t L_69 = L_68.___border_3;
|
|
float L_70 = V_10;
|
|
V_18 = ((float)il2cpp_codegen_multiply(((float)((int32_t)il2cpp_codegen_add(L_67, L_69))), L_70));
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_71 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&(&V_9)->___srcRect_1);
|
|
int32_t L_72;
|
|
L_72 = RectInt_get_yMax_mAE5D758A1241F7722F8FB9B46861583F76C8FE44(L_71, NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_73 = V_9;
|
|
int32_t L_74 = L_73.___border_3;
|
|
float L_75 = V_11;
|
|
V_19 = ((float)il2cpp_codegen_multiply(((float)((int32_t)il2cpp_codegen_add(L_72, L_74))), L_75));
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_76 = V_9;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_77 = L_76.___tint_4;
|
|
GL_Color_mE2D27D8FCA9B5E07ECC15574BCBCBA16E6E0CB3E(L_77, NULL);
|
|
float L_78 = V_16;
|
|
float L_79 = V_17;
|
|
int32_t L_80 = V_8;
|
|
GL_TexCoord3_mD95B6C3D77105453E0A01B1A29DFDDDF14BB7111(L_78, L_79, ((float)L_80), NULL);
|
|
float L_81 = V_12;
|
|
float L_82 = V_13;
|
|
GL_Vertex3_mEA9925548F447556F7899E69604B787EE57F6978(L_81, L_82, (0.0f), NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_83 = V_9;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_84 = L_83.___tint_4;
|
|
GL_Color_mE2D27D8FCA9B5E07ECC15574BCBCBA16E6E0CB3E(L_84, NULL);
|
|
float L_85 = V_16;
|
|
float L_86 = V_19;
|
|
int32_t L_87 = V_8;
|
|
GL_TexCoord3_mD95B6C3D77105453E0A01B1A29DFDDDF14BB7111(L_85, L_86, ((float)L_87), NULL);
|
|
float L_88 = V_12;
|
|
float L_89 = V_15;
|
|
GL_Vertex3_mEA9925548F447556F7899E69604B787EE57F6978(L_88, L_89, (0.0f), NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_90 = V_9;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_91 = L_90.___tint_4;
|
|
GL_Color_mE2D27D8FCA9B5E07ECC15574BCBCBA16E6E0CB3E(L_91, NULL);
|
|
float L_92 = V_18;
|
|
float L_93 = V_19;
|
|
int32_t L_94 = V_8;
|
|
GL_TexCoord3_mD95B6C3D77105453E0A01B1A29DFDDDF14BB7111(L_92, L_93, ((float)L_94), NULL);
|
|
float L_95 = V_14;
|
|
float L_96 = V_15;
|
|
GL_Vertex3_mEA9925548F447556F7899E69604B787EE57F6978(L_95, L_96, (0.0f), NULL);
|
|
BlitInfo_t6D4C0580BBEF65F5EAD39FB6DBC85F360CF6A357 L_97 = V_9;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_98 = L_97.___tint_4;
|
|
GL_Color_mE2D27D8FCA9B5E07ECC15574BCBCBA16E6E0CB3E(L_98, NULL);
|
|
float L_99 = V_18;
|
|
float L_100 = V_17;
|
|
int32_t L_101 = V_8;
|
|
GL_TexCoord3_mD95B6C3D77105453E0A01B1A29DFDDDF14BB7111(L_99, L_100, ((float)L_101), NULL);
|
|
float L_102 = V_14;
|
|
float L_103 = V_13;
|
|
GL_Vertex3_mEA9925548F447556F7899E69604B787EE57F6978(L_102, L_103, (0.0f), NULL);
|
|
int32_t L_104 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_104, 1));
|
|
int32_t L_105 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_105, 1));
|
|
}
|
|
|
|
IL_0241:
|
|
{
|
|
int32_t L_106 = V_7;
|
|
int32_t L_107 = V_1;
|
|
V_20 = (bool)((((int32_t)L_106) < ((int32_t)L_107))? 1 : 0);
|
|
bool L_108 = V_20;
|
|
if (L_108)
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
GL_End_m6CE9D562B738075125F901B1D5254520EC30AB36(NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.UIR.TextureBlitter::EndBlit()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureBlitter_EndBlit_m247EB2A9604A08925D457D13844BF0702F8DD4E5 (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RenderTexture_tBA90C4C3AD9EECCFDDCC632D97C29FAB80D60D27* L_0 = __this->___m_PrevRT_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Graphics_t99CD970FFEA58171C70F54DF0C06D315BD452F2C_il2cpp_TypeInfo_var);
|
|
Graphics_SetRenderTarget_m995C0F14B97C5BF46CCF2E7EF410C1CC05C46409(L_0, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_1 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&__this->___m_Viewport_5);
|
|
int32_t L_2;
|
|
L_2 = RectInt_get_x_mA1E7EF6DEAD2E900D7D56B7A3957C05081EBA9CA(L_1, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_3 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&__this->___m_Viewport_5);
|
|
int32_t L_4;
|
|
L_4 = RectInt_get_y_m440422264E6FCAA91E01F81486A78037AC29D878(L_3, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_5 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&__this->___m_Viewport_5);
|
|
int32_t L_6;
|
|
L_6 = RectInt_get_width_m6B7B2FB764EAE83B7F63E7F77FA33973606761A7(L_5, NULL);
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* L_7 = (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8*)(&__this->___m_Viewport_5);
|
|
int32_t L_8;
|
|
L_8 = RectInt_get_height_mE25FB938714942D7A3BA0B3C21BC5CB913D5709C(L_7, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23((&L_9), ((float)L_2), ((float)L_4), ((float)L_6), ((float)L_8), /*hidden argument*/NULL);
|
|
GL_Viewport_mA93DBAE1018A273684A07C8B8B444EFFBF2B38B7(L_9, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
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 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 BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0 = __this->___U3CelementPanelU3Ek__BackingField_61;
|
|
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 Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_0 = __this->___U3ChierarchyU3Ek__BackingField_54;
|
|
return L_0;
|
|
}
|
|
}
|
|
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 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 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 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 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 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 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 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 StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_Ordinal_m77A8C28E78759556E06A6925E949737A45599E26_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var);
|
|
OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A* L_0 = ((StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var))->___s_ordinal_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void StyleComplexSelector_set_rule_mE207BC9F10AF99952A9D149A0982E98B999F98D1_inline (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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* StyleVariableResolver_get_variableContext_m3775C7C5A8A41C7B3BDB487587A6A333C15606E4_inline (StyleVariableResolver_tB24ACDD043A87F2F2339E1523539739D427B5185* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527* L_0 = __this->___U3CvariableContextU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_lhs, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_lhs;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1;
|
|
L_1 = Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline(L_0, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_rhs;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_3;
|
|
L_3 = Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline(L_1, L_3, NULL);
|
|
V_0 = L_4;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = (*(Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)__this);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1;
|
|
L_1 = Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2;
|
|
L_2 = Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92_inline((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BaseVerticalCollectionView_set_unbindItem_m70B66966E4F15F175715762AF824862980920F71_inline (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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* BaseVerticalCollectionView_get_scrollView_mB4F44C6276CC57A0D8AD030F3C396650532E83CC_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* L_0 = __this->___m_ScrollView_86;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* InternalTreeView_get_unbindItem_m8DF797282645E00D19DD2D3E1BE7AA3A7287514B_inline (InternalTreeView_tDC9D9EC0448DD23E32E9941E988EF12871B7EB9D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA0FC46684CF39B6223C18493CC7FBF06E005C1A9* L_0 = __this->___U3CunbindItemU3Ek__BackingField_76;
|
|
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_83;
|
|
return L_0;
|
|
}
|
|
}
|
|
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 VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ReusableCollectionItem_get_bindableElement_m3A2BBD4C95A69A2AAC6292651AEA58B6D41CDF95_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CbindableElementU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ReusableCollectionItem_get_isDragGhost_m3D932E557A3B750E12C3D6406B0DB52C6D63513F_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisDragGhostU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_id_m681AB8AB77EE8E8E0B0105C0955B7BCF1FBDE1B7_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CidU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_index_mBE6E436EF78A151186FE66E59E1F032B653BBF1E_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CindexU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_bindableElement_m0115DE25E0FAF4839E8D7C58A8ACFA0ED08CBB0E_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_value;
|
|
__this->___U3CbindableElementU3Ek__BackingField_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CbindableElementU3Ek__BackingField_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReusableCollectionItem_set_isDragGhost_m14D52FD2C4162C489B35ADDD9DCB13C83DF912EB_inline (ReusableCollectionItem_t58A07E0E19A545B24DBE7711A46490EF5E239086* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisDragGhostU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* CollectionViewController_get_view_mA2B294EA0DC4E6E490482CBA616FE3DA7A3FF385_inline (CollectionViewController_t89D7C4989B72B4127DF82DC97FED5D7FE01D9768* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* L_0 = __this->___m_View_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TreeItem_get_parentId_mBF12DF0B9B91E8B60A65FE301A80EF16AC100790_inline (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CparentIdU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* TreeItem_get_childrenIds_m73B843337FC4D0341CC88D3A5299B287FE267952_inline (TreeItem_t6B0F84E487FB869A51E1DA4987183127271F4F90* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CchildrenIdsU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* TreeView_get_expandedItemIds_mC9C8F70F923921C6745CFAFCA3E9F4A863AA3F42_inline (TreeView_t0EEA0F9C8FBAFE08225065A1E4EC133D718825C2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_ExpandedItemIds_117;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method)
|
|
{
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
intptr_t L_0 = __this->___m_Ptr_0;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline((&L_1), L_0, /*hidden argument*/NULL);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
intptr_t L_0 = __this->___m_Ptr_0;
|
|
intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
|
|
bool L_2;
|
|
L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_4 = __this->___m_Ptr_0;
|
|
ProfilerUnsafeUtility_EndSample_mFDB4EFB160A9CB817D2F8ED21B88693616B27409(L_4, NULL);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_m5958260A54C3A7F358A71AACDF47BA28178A5AB7_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC ___0_category, String_t* ___1_name, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___1_name;
|
|
ProfilerCategory_tA55212CD512C618AF6D2147791F20319896592AC L_1 = ___0_category;
|
|
uint16_t L_2;
|
|
L_2 = ProfilerCategory_op_Implicit_m441AE38B56781EE2D3F0865F65C81A77BEC6D76B(L_1, NULL);
|
|
intptr_t L_3;
|
|
L_3 = ProfilerUnsafeUtility_CreateMarker_mC5E1AAB8CC1F0342065DF85BA3334445ED754E64(L_0, L_2, 0, 0, NULL);
|
|
__this->___m_Ptr_0 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_name;
|
|
intptr_t L_1;
|
|
L_1 = ProfilerUnsafeUtility_CreateMarker_mC5E1AAB8CC1F0342065DF85BA3334445ED754E64(L_0, (uint16_t)1, 0, 0, NULL);
|
|
__this->___m_Ptr_0 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* BaseVerticalCollectionView_get_getItemId_m51EF1320768EF82E1DEB2F7346E6F3259B098C4D_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_2_t2FDA873D8482C79555CFB05233D610E8F1C7C354* L_0 = __this->___m_GetItemId_72;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* BaseVerticalCollectionView_get_selectedIndices_m225B0611A10353F497E2144373F8335C6809314C_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_0 = __this->___m_SelectedIndices_92;
|
|
return L_0;
|
|
}
|
|
}
|
|
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 Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* BaseVerticalCollectionView_get_unbindItem_mF1318DEBEC44E601C7847D16DF5EF084C5AEAAB6_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_2_tA1EAD43A5C76FF3E77D1705EC83B9AB7B1BE7D88* L_0 = __this->___U3CunbindItemU3Ek__BackingField_75;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* BaseVerticalCollectionView_get_destroyItem_mE32383B57CC96FC04212E03B01B76671C360865B_inline (BaseVerticalCollectionView_t2BCDC86B9E301E46CFB2500A834D640F0B96ADAE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t66B514BE877E216616DEDD40416127189FE16FA3* L_0 = __this->___U3CdestroyItemU3Ek__BackingField_76;
|
|
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 int32_t ListView_get_reorderMode_m89B680A1292DA7F3B6554E3C861C7DDA5CCF36EA_inline (ListView_t46F7BEBFA3240E5A3BE3AC4EF5173C442B5C71FD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_ReorderMode_126;
|
|
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 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 bool TextureBlitter_get_disposed_m00CEB7B2330A6DBE3BE95049ED60406DD90B8EAF_inline (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CdisposedU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextureBlitter_set_disposed_m3FA52D5FE5C9EEAC9DAA3E89BD506901DB9352EE_inline (TextureBlitter_t8340FC58AD5F14B6A8DD133968F4C8427C79FCB7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CdisposedU3Ek__BackingField_8 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker_Begin_mD07DB736ADA7D8BAF9D969CC7F3C55848A218C6E_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
intptr_t L_0 = __this->___m_Ptr_0;
|
|
ProfilerUnsafeUtility_BeginSample_mB5106F4E7ECEF54906545665ED23928D14F5FCA7(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker_End_m025AE3EF0F96F6DADC53489A53FC6EE65073DE60_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
intptr_t L_0 = __this->___m_Ptr_0;
|
|
ProfilerUnsafeUtility_EndSample_mFDB4EFB160A9CB817D2F8ED21B88693616B27409(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_x_mA2CACB1B6E6B5AD0CCC32B2CD2EDCE3ECEB50576_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_X_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2Int_get_y_m48454163ECF0B463FB5A16A0C4FC4B14DB0768B3_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___m_Y_1;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mD2ED26ACAF3BAF386FFEA83893BA51DB9FD8BA30_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t010616E3077234188F9BB4FAF369F8571BC5F2E1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_T_t010616E3077234188F9BB4FAF369F8571BC5F2E1);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1),3)), SizeOf_T_t010616E3077234188F9BB4FAF369F8571BC5F2E1);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_T_t010616E3077234188F9BB4FAF369F8571BC5F2E1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mD4F3498FBD3BDD3F03CBCFB38041CBAC9C28CAFC_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E = il2cpp_codegen_sizeof(il2cpp_rgctx_data(method->klass->rgctx_data, 9));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
const Il2CppFullySharedGenericAny L_9 = L_8;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = __this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* 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));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? ___0_item : &___0_item), SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
NullCheck(L_6);
|
|
il2cpp_codegen_memcpy((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), L_8, SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 9), (void**)(L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), (void*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? ___0_item : &___0_item), SizeOf_T_t664E2061A913AF1FEE499655BC64F0FDE10D2A5E);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 14)), il2cpp_rgctx_method(method->klass->rgctx_data, 14), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 9)) ? L_9: *(void**)L_9));
|
|
return;
|
|
}
|
|
}
|
|
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 = __this->___U3CpressedButtonsU3Ek__BackingField_24;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
bool L_1;
|
|
L_1 = il2cpp_codegen_is_reference_or_contains_references(il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
if (!L_1)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____size_2;
|
|
V_0 = L_2;
|
|
__this->____size_2 = 0;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_4 = __this->____items_1;
|
|
int32_t L_5 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_4, 0, L_5, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
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 = __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 = __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 = __this->___U3CkeyCodeU3Ek__BackingField_20;
|
|
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 = __this->___U3CpointerIdU3Ek__BackingField_18;
|
|
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 = __this->___U3CpointerTypeU3Ek__BackingField_19;
|
|
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 int32_t Stack_1_get_Count_mCAD00A69587F884F88C36DE7423C3C329166144E_gshared_inline (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m5A038831CEB84A7E374FE59D43444412629F833F_gshared_inline (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, 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 MouseEventBase_1_get_modifiers_mC7C50707BF8551EC3595251AB7ED97523D8BABDD_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CmodifiersU3Ek__BackingField_18;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Func_1_Invoke_m35CBC166F464B8A1169583672025E6D64211856C_gshared_inline (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, il2cppRetVal, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m6343941059117DF354182855F996EB3D08B4C06C_gshared_inline (Action_2_t1D42C7D8DCD2DEB7C556FB3783F0EDAFF694E5E8* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_arg1, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, 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 ChangeEvent_1_get_newValue_m83811A7602CB9AC9F15F7638C6BF3CE866A941ED_gshared_inline (/*UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t8149BA5CE3AE3A1C70F4313968F8FA7B5BF8089E = il2cpp_codegen_sizeof(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_T_t8149BA5CE3AE3A1C70F4313968F8FA7B5BF8089E);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data(method->klass->rgctx_data, 0),1)), SizeOf_T_t8149BA5CE3AE3A1C70F4313968F8FA7B5BF8089E);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_T_t8149BA5CE3AE3A1C70F4313968F8FA7B5BF8089E);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TypedUxmlAttributeDescription_1_set_defaultValue_mF81698FCA852B0E1E286F2139311E5961EB329B8_gshared_inline (/*UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>*/TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_value, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t032394145CB91A92CB2BB117018F90F9E074CD43 = il2cpp_codegen_sizeof(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_T_t032394145CB91A92CB2BB117018F90F9E074CD43);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data(method->klass->rgctx_data, 1)) ? ___0_value : &___0_value), SizeOf_T_t032394145CB91A92CB2BB117018F90F9E074CD43);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data(method->klass->rgctx_data, 0),0), L_0, SizeOf_T_t032394145CB91A92CB2BB117018F90F9E074CD43);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Func_2_Invoke_m31CAC166FDC80DC5AE52A5AEFFEE2D9B27A1CA3F_gshared_inline (Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_arg, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_arg, il2cppRetVal, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
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 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 Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Color_op_Implicit_m9B3228DAFA8DC57A75DE00CBBF13ED4F1E7B01FF_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, const RuntimeMethod* method)
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_c;
|
|
float L_1 = L_0.___r_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___0_c;
|
|
float L_3 = L_2.___g_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___0_c;
|
|
float L_5 = L_4.___b_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = ___0_c;
|
|
float L_7 = L_6.___a_3;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline((&L_8), L_1, L_3, L_5, L_7, /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector4_op_Equality_mCEA0E5F229F4AE8C55152F7A8F84345F24F52DC6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___0_lhs, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
bool V_5 = false;
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x_1;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x_1;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y_2;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y_2;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_8 = ___0_lhs;
|
|
float L_9 = L_8.___z_3;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_10 = ___1_rhs;
|
|
float L_11 = L_10.___z_3;
|
|
V_2 = ((float)il2cpp_codegen_subtract(L_9, L_11));
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_12 = ___0_lhs;
|
|
float L_13 = L_12.___w_4;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_14 = ___1_rhs;
|
|
float L_15 = L_14.___w_4;
|
|
V_3 = ((float)il2cpp_codegen_subtract(L_13, L_15));
|
|
float L_16 = V_0;
|
|
float L_17 = V_0;
|
|
float L_18 = V_1;
|
|
float L_19 = V_1;
|
|
float L_20 = V_2;
|
|
float L_21 = V_2;
|
|
float L_22 = V_3;
|
|
float L_23 = V_3;
|
|
V_4 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_16, L_17)), ((float)il2cpp_codegen_multiply(L_18, L_19)))), ((float)il2cpp_codegen_multiply(L_20, L_21)))), ((float)il2cpp_codegen_multiply(L_22, L_23))));
|
|
float L_24 = V_4;
|
|
V_5 = (bool)((((float)L_24) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
bool L_25 = V_5;
|
|
return L_25;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector4_GetHashCode_m53F6FCA56A0051C9D1AB41AA3EAA2C86CDAA8B92_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
float* L_0 = (float*)(&__this->___x_1);
|
|
int32_t L_1;
|
|
L_1 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_0, NULL);
|
|
float* L_2 = (float*)(&__this->___y_2);
|
|
int32_t L_3;
|
|
L_3 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_2, NULL);
|
|
float* L_4 = (float*)(&__this->___z_3);
|
|
int32_t L_5;
|
|
L_5 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_4, NULL);
|
|
float* L_6 = (float*)(&__this->___w_4);
|
|
int32_t L_7;
|
|
L_7 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_6, NULL);
|
|
V_0 = ((int32_t)(((int32_t)(((int32_t)(L_1^((int32_t)(L_3<<2))))^((int32_t)(L_5>>2))))^((int32_t)(L_7>>1))));
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void AutoScope__ctor_m7F63A273E382CB6328736B6E7F321DDFA40EA9E3_inline (AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139* __this, intptr_t ___0_markerPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
intptr_t L_0 = ___0_markerPtr;
|
|
__this->___m_Ptr_0 = L_0;
|
|
intptr_t L_1 = __this->___m_Ptr_0;
|
|
intptr_t L_2 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
|
|
bool L_3;
|
|
L_3 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_5 = ___0_markerPtr;
|
|
ProfilerUnsafeUtility_BeginSample_mB5106F4E7ECEF54906545665ED23928D14F5FCA7(L_5, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4__ctor_m96B2CD8B862B271F513AF0BDC2EABD58E4DBC813_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, float ___0_x, float ___1_y, float ___2_z, float ___3_w, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x_1 = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y_2 = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z_3 = L_2;
|
|
float L_3 = ___3_w;
|
|
__this->___w_4 = L_3;
|
|
return;
|
|
}
|
|
}
|